blob: 355a31f9c03c07abbe8e41a4145941e40876c0fa [file] [log] [blame]
Roland Dreier225c7b12007-05-08 18:00:38 -07001/*
2 * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
33#include <rdma/ib_cache.h>
34#include <rdma/ib_pack.h>
35
36#include <linux/mlx4/qp.h>
37
38#include "mlx4_ib.h"
39#include "user.h"
40
41enum {
42 MLX4_IB_ACK_REQ_FREQ = 8,
43};
44
45enum {
46 MLX4_IB_DEFAULT_SCHED_QUEUE = 0x83,
47 MLX4_IB_DEFAULT_QP0_SCHED_QUEUE = 0x3f
48};
49
50enum {
51 /*
52 * Largest possible UD header: send with GRH and immediate data.
53 */
54 MLX4_IB_UD_HEADER_SIZE = 72
55};
56
57struct mlx4_ib_sqp {
58 struct mlx4_ib_qp qp;
59 int pkey_index;
60 u32 qkey;
61 u32 send_psn;
62 struct ib_ud_header ud_header;
63 u8 header_buf[MLX4_IB_UD_HEADER_SIZE];
64};
65
66static const __be32 mlx4_ib_opcode[] = {
67 [IB_WR_SEND] = __constant_cpu_to_be32(MLX4_OPCODE_SEND),
68 [IB_WR_SEND_WITH_IMM] = __constant_cpu_to_be32(MLX4_OPCODE_SEND_IMM),
69 [IB_WR_RDMA_WRITE] = __constant_cpu_to_be32(MLX4_OPCODE_RDMA_WRITE),
70 [IB_WR_RDMA_WRITE_WITH_IMM] = __constant_cpu_to_be32(MLX4_OPCODE_RDMA_WRITE_IMM),
71 [IB_WR_RDMA_READ] = __constant_cpu_to_be32(MLX4_OPCODE_RDMA_READ),
72 [IB_WR_ATOMIC_CMP_AND_SWP] = __constant_cpu_to_be32(MLX4_OPCODE_ATOMIC_CS),
73 [IB_WR_ATOMIC_FETCH_AND_ADD] = __constant_cpu_to_be32(MLX4_OPCODE_ATOMIC_FA),
74};
75
76static struct mlx4_ib_sqp *to_msqp(struct mlx4_ib_qp *mqp)
77{
78 return container_of(mqp, struct mlx4_ib_sqp, qp);
79}
80
81static int is_sqp(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
82{
83 return qp->mqp.qpn >= dev->dev->caps.sqp_start &&
84 qp->mqp.qpn <= dev->dev->caps.sqp_start + 3;
85}
86
87static int is_qp0(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
88{
89 return qp->mqp.qpn >= dev->dev->caps.sqp_start &&
90 qp->mqp.qpn <= dev->dev->caps.sqp_start + 1;
91}
92
93static void *get_wqe(struct mlx4_ib_qp *qp, int offset)
94{
95 if (qp->buf.nbufs == 1)
96 return qp->buf.u.direct.buf + offset;
97 else
98 return qp->buf.u.page_list[offset >> PAGE_SHIFT].buf +
99 (offset & (PAGE_SIZE - 1));
100}
101
102static void *get_recv_wqe(struct mlx4_ib_qp *qp, int n)
103{
104 return get_wqe(qp, qp->rq.offset + (n << qp->rq.wqe_shift));
105}
106
107static void *get_send_wqe(struct mlx4_ib_qp *qp, int n)
108{
109 return get_wqe(qp, qp->sq.offset + (n << qp->sq.wqe_shift));
110}
111
Roland Dreier0e6e7412007-06-18 08:13:48 -0700112/*
113 * Stamp a SQ WQE so that it is invalid if prefetched by marking the
114 * first four bytes of every 64 byte chunk with 0xffffffff, except for
115 * the very first chunk of the WQE.
116 */
117static void stamp_send_wqe(struct mlx4_ib_qp *qp, int n)
118{
119 u32 *wqe = get_send_wqe(qp, n);
120 int i;
121
122 for (i = 16; i < 1 << (qp->sq.wqe_shift - 2); i += 16)
123 wqe[i] = 0xffffffff;
124}
125
Roland Dreier225c7b12007-05-08 18:00:38 -0700126static void mlx4_ib_qp_event(struct mlx4_qp *qp, enum mlx4_event type)
127{
128 struct ib_event event;
129 struct ib_qp *ibqp = &to_mibqp(qp)->ibqp;
130
131 if (type == MLX4_EVENT_TYPE_PATH_MIG)
132 to_mibqp(qp)->port = to_mibqp(qp)->alt_port;
133
134 if (ibqp->event_handler) {
135 event.device = ibqp->device;
136 event.element.qp = ibqp;
137 switch (type) {
138 case MLX4_EVENT_TYPE_PATH_MIG:
139 event.event = IB_EVENT_PATH_MIG;
140 break;
141 case MLX4_EVENT_TYPE_COMM_EST:
142 event.event = IB_EVENT_COMM_EST;
143 break;
144 case MLX4_EVENT_TYPE_SQ_DRAINED:
145 event.event = IB_EVENT_SQ_DRAINED;
146 break;
147 case MLX4_EVENT_TYPE_SRQ_QP_LAST_WQE:
148 event.event = IB_EVENT_QP_LAST_WQE_REACHED;
149 break;
150 case MLX4_EVENT_TYPE_WQ_CATAS_ERROR:
151 event.event = IB_EVENT_QP_FATAL;
152 break;
153 case MLX4_EVENT_TYPE_PATH_MIG_FAILED:
154 event.event = IB_EVENT_PATH_MIG_ERR;
155 break;
156 case MLX4_EVENT_TYPE_WQ_INVAL_REQ_ERROR:
157 event.event = IB_EVENT_QP_REQ_ERR;
158 break;
159 case MLX4_EVENT_TYPE_WQ_ACCESS_ERROR:
160 event.event = IB_EVENT_QP_ACCESS_ERR;
161 break;
162 default:
163 printk(KERN_WARNING "mlx4_ib: Unexpected event type %d "
164 "on QP %06x\n", type, qp->qpn);
165 return;
166 }
167
168 ibqp->event_handler(&event, ibqp->qp_context);
169 }
170}
171
172static int send_wqe_overhead(enum ib_qp_type type)
173{
174 /*
175 * UD WQEs must have a datagram segment.
176 * RC and UC WQEs might have a remote address segment.
177 * MLX WQEs need two extra inline data segments (for the UD
178 * header and space for the ICRC).
179 */
180 switch (type) {
181 case IB_QPT_UD:
182 return sizeof (struct mlx4_wqe_ctrl_seg) +
183 sizeof (struct mlx4_wqe_datagram_seg);
184 case IB_QPT_UC:
185 return sizeof (struct mlx4_wqe_ctrl_seg) +
186 sizeof (struct mlx4_wqe_raddr_seg);
187 case IB_QPT_RC:
188 return sizeof (struct mlx4_wqe_ctrl_seg) +
189 sizeof (struct mlx4_wqe_atomic_seg) +
190 sizeof (struct mlx4_wqe_raddr_seg);
191 case IB_QPT_SMI:
192 case IB_QPT_GSI:
193 return sizeof (struct mlx4_wqe_ctrl_seg) +
194 ALIGN(MLX4_IB_UD_HEADER_SIZE +
195 sizeof (struct mlx4_wqe_inline_seg),
196 sizeof (struct mlx4_wqe_data_seg)) +
197 ALIGN(4 +
198 sizeof (struct mlx4_wqe_inline_seg),
199 sizeof (struct mlx4_wqe_data_seg));
200 default:
201 return sizeof (struct mlx4_wqe_ctrl_seg);
202 }
203}
204
Eli Cohen24463042007-05-17 10:32:41 +0300205static int set_rq_size(struct mlx4_ib_dev *dev, struct ib_qp_cap *cap,
Roland Dreiera4cd7ed2007-06-07 23:24:39 -0700206 int is_user, int has_srq, struct mlx4_ib_qp *qp)
Roland Dreier225c7b12007-05-08 18:00:38 -0700207{
Eli Cohen24463042007-05-17 10:32:41 +0300208 /* Sanity check RQ size before proceeding */
209 if (cap->max_recv_wr > dev->dev->caps.max_wqes ||
210 cap->max_recv_sge > dev->dev->caps.max_rq_sg)
211 return -EINVAL;
212
Roland Dreiera4cd7ed2007-06-07 23:24:39 -0700213 if (has_srq) {
214 /* QPs attached to an SRQ should have no RQ */
215 if (cap->max_recv_wr)
216 return -EINVAL;
Eli Cohen24463042007-05-17 10:32:41 +0300217
Roland Dreier0e6e7412007-06-18 08:13:48 -0700218 qp->rq.wqe_cnt = qp->rq.max_gs = 0;
Roland Dreiera4cd7ed2007-06-07 23:24:39 -0700219 } else {
220 /* HW requires >= 1 RQ entry with >= 1 gather entry */
221 if (is_user && (!cap->max_recv_wr || !cap->max_recv_sge))
222 return -EINVAL;
223
Roland Dreier0e6e7412007-06-18 08:13:48 -0700224 qp->rq.wqe_cnt = roundup_pow_of_two(max(1U, cap->max_recv_wr));
Roland Dreier42c059ea2007-06-12 10:52:02 -0700225 qp->rq.max_gs = roundup_pow_of_two(max(1U, cap->max_recv_sge));
Roland Dreiera4cd7ed2007-06-07 23:24:39 -0700226 qp->rq.wqe_shift = ilog2(qp->rq.max_gs * sizeof (struct mlx4_wqe_data_seg));
227 }
Eli Cohen24463042007-05-17 10:32:41 +0300228
Roland Dreier0e6e7412007-06-18 08:13:48 -0700229 cap->max_recv_wr = qp->rq.max_post = qp->rq.wqe_cnt;
Eli Cohen24463042007-05-17 10:32:41 +0300230 cap->max_recv_sge = qp->rq.max_gs;
231
232 return 0;
233}
234
235static int set_kernel_sq_size(struct mlx4_ib_dev *dev, struct ib_qp_cap *cap,
236 enum ib_qp_type type, struct mlx4_ib_qp *qp)
237{
238 /* Sanity check SQ size before proceeding */
Roland Dreier225c7b12007-05-08 18:00:38 -0700239 if (cap->max_send_wr > dev->dev->caps.max_wqes ||
Roland Dreier225c7b12007-05-08 18:00:38 -0700240 cap->max_send_sge > dev->dev->caps.max_sq_sg ||
Roland Dreier225c7b12007-05-08 18:00:38 -0700241 cap->max_inline_data + send_wqe_overhead(type) +
242 sizeof (struct mlx4_wqe_inline_seg) > dev->dev->caps.max_sq_desc_sz)
243 return -EINVAL;
244
245 /*
246 * For MLX transport we need 2 extra S/G entries:
247 * one for the header and one for the checksum at the end
248 */
249 if ((type == IB_QPT_SMI || type == IB_QPT_GSI) &&
250 cap->max_send_sge + 2 > dev->dev->caps.max_sq_sg)
251 return -EINVAL;
252
Roland Dreier225c7b12007-05-08 18:00:38 -0700253 qp->sq.wqe_shift = ilog2(roundup_pow_of_two(max(cap->max_send_sge *
254 sizeof (struct mlx4_wqe_data_seg),
255 cap->max_inline_data +
256 sizeof (struct mlx4_wqe_inline_seg)) +
257 send_wqe_overhead(type)));
258 qp->sq.max_gs = ((1 << qp->sq.wqe_shift) - send_wqe_overhead(type)) /
259 sizeof (struct mlx4_wqe_data_seg);
260
Roland Dreier0e6e7412007-06-18 08:13:48 -0700261 /*
262 * We need to leave 2 KB + 1 WQE of headroom in the SQ to
263 * allow HW to prefetch.
264 */
265 qp->sq_spare_wqes = (2048 >> qp->sq.wqe_shift) + 1;
266 qp->sq.wqe_cnt = roundup_pow_of_two(cap->max_send_wr + qp->sq_spare_wqes);
267
268 qp->buf_size = (qp->rq.wqe_cnt << qp->rq.wqe_shift) +
269 (qp->sq.wqe_cnt << qp->sq.wqe_shift);
Roland Dreier225c7b12007-05-08 18:00:38 -0700270 if (qp->rq.wqe_shift > qp->sq.wqe_shift) {
271 qp->rq.offset = 0;
Roland Dreier0e6e7412007-06-18 08:13:48 -0700272 qp->sq.offset = qp->rq.wqe_cnt << qp->rq.wqe_shift;
Roland Dreier225c7b12007-05-08 18:00:38 -0700273 } else {
Roland Dreier0e6e7412007-06-18 08:13:48 -0700274 qp->rq.offset = qp->sq.wqe_cnt << qp->sq.wqe_shift;
Roland Dreier225c7b12007-05-08 18:00:38 -0700275 qp->sq.offset = 0;
276 }
277
Roland Dreier0e6e7412007-06-18 08:13:48 -0700278 cap->max_send_wr = qp->sq.max_post = qp->sq.wqe_cnt - qp->sq_spare_wqes;
279 cap->max_send_sge = qp->sq.max_gs;
Roland Dreier54e95f82007-06-18 08:13:53 -0700280 /* We don't support inline sends for kernel QPs (yet) */
281 cap->max_inline_data = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -0700282
283 return 0;
284}
285
Eli Cohen24463042007-05-17 10:32:41 +0300286static int set_user_sq_size(struct mlx4_ib_qp *qp,
287 struct mlx4_ib_create_qp *ucmd)
288{
Roland Dreier0e6e7412007-06-18 08:13:48 -0700289 qp->sq.wqe_cnt = 1 << ucmd->log_sq_bb_count;
Eli Cohen24463042007-05-17 10:32:41 +0300290 qp->sq.wqe_shift = ucmd->log_sq_stride;
291
Roland Dreier0e6e7412007-06-18 08:13:48 -0700292 qp->buf_size = (qp->rq.wqe_cnt << qp->rq.wqe_shift) +
293 (qp->sq.wqe_cnt << qp->sq.wqe_shift);
Eli Cohen24463042007-05-17 10:32:41 +0300294
295 return 0;
296}
297
Roland Dreier225c7b12007-05-08 18:00:38 -0700298static int create_qp_common(struct mlx4_ib_dev *dev, struct ib_pd *pd,
299 struct ib_qp_init_attr *init_attr,
300 struct ib_udata *udata, int sqpn, struct mlx4_ib_qp *qp)
301{
Roland Dreier225c7b12007-05-08 18:00:38 -0700302 int err;
Roland Dreier225c7b12007-05-08 18:00:38 -0700303
304 mutex_init(&qp->mutex);
305 spin_lock_init(&qp->sq.lock);
306 spin_lock_init(&qp->rq.lock);
307
308 qp->state = IB_QPS_RESET;
309 qp->atomic_rd_en = 0;
310 qp->resp_depth = 0;
311
312 qp->rq.head = 0;
313 qp->rq.tail = 0;
314 qp->sq.head = 0;
315 qp->sq.tail = 0;
316
Roland Dreiera4cd7ed2007-06-07 23:24:39 -0700317 err = set_rq_size(dev, &init_attr->cap, !!pd->uobject, !!init_attr->srq, qp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700318 if (err)
319 goto err;
320
321 if (pd->uobject) {
322 struct mlx4_ib_create_qp ucmd;
323
324 if (ib_copy_from_udata(&ucmd, udata, sizeof ucmd)) {
325 err = -EFAULT;
326 goto err;
327 }
328
Roland Dreier0e6e7412007-06-18 08:13:48 -0700329 qp->sq_no_prefetch = ucmd.sq_no_prefetch;
330
Eli Cohen24463042007-05-17 10:32:41 +0300331 err = set_user_sq_size(qp, &ucmd);
332 if (err)
333 goto err;
334
Roland Dreier225c7b12007-05-08 18:00:38 -0700335 qp->umem = ib_umem_get(pd->uobject->context, ucmd.buf_addr,
336 qp->buf_size, 0);
337 if (IS_ERR(qp->umem)) {
338 err = PTR_ERR(qp->umem);
339 goto err;
340 }
341
342 err = mlx4_mtt_init(dev->dev, ib_umem_page_count(qp->umem),
343 ilog2(qp->umem->page_size), &qp->mtt);
344 if (err)
345 goto err_buf;
346
347 err = mlx4_ib_umem_write_mtt(dev, &qp->mtt, qp->umem);
348 if (err)
349 goto err_mtt;
350
Roland Dreier02d89b82007-05-23 15:16:08 -0700351 if (!init_attr->srq) {
352 err = mlx4_ib_db_map_user(to_mucontext(pd->uobject->context),
353 ucmd.db_addr, &qp->db);
354 if (err)
355 goto err_mtt;
356 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700357 } else {
Roland Dreier0e6e7412007-06-18 08:13:48 -0700358 qp->sq_no_prefetch = 0;
359
Eli Cohen24463042007-05-17 10:32:41 +0300360 err = set_kernel_sq_size(dev, &init_attr->cap, init_attr->qp_type, qp);
361 if (err)
362 goto err;
363
Roland Dreier02d89b82007-05-23 15:16:08 -0700364 if (!init_attr->srq) {
365 err = mlx4_ib_db_alloc(dev, &qp->db, 0);
366 if (err)
367 goto err;
Roland Dreier225c7b12007-05-08 18:00:38 -0700368
Roland Dreier02d89b82007-05-23 15:16:08 -0700369 *qp->db.db = 0;
370 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700371
372 if (mlx4_buf_alloc(dev->dev, qp->buf_size, PAGE_SIZE * 2, &qp->buf)) {
373 err = -ENOMEM;
374 goto err_db;
375 }
376
377 err = mlx4_mtt_init(dev->dev, qp->buf.npages, qp->buf.page_shift,
378 &qp->mtt);
379 if (err)
380 goto err_buf;
381
382 err = mlx4_buf_write_mtt(dev->dev, &qp->mtt, &qp->buf);
383 if (err)
384 goto err_mtt;
385
Roland Dreier0e6e7412007-06-18 08:13:48 -0700386 qp->sq.wrid = kmalloc(qp->sq.wqe_cnt * sizeof (u64), GFP_KERNEL);
387 qp->rq.wrid = kmalloc(qp->rq.wqe_cnt * sizeof (u64), GFP_KERNEL);
Roland Dreier225c7b12007-05-08 18:00:38 -0700388
389 if (!qp->sq.wrid || !qp->rq.wrid) {
390 err = -ENOMEM;
391 goto err_wrid;
392 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700393 }
394
395 err = mlx4_qp_alloc(dev->dev, sqpn, &qp->mqp);
396 if (err)
397 goto err_wrid;
398
399 /*
400 * Hardware wants QPN written in big-endian order (after
401 * shifting) for send doorbell. Precompute this value to save
402 * a little bit when posting sends.
403 */
404 qp->doorbell_qpn = swab32(qp->mqp.qpn << 8);
405
406 if (init_attr->sq_sig_type == IB_SIGNAL_ALL_WR)
407 qp->sq_signal_bits = cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
408 else
409 qp->sq_signal_bits = 0;
410
411 qp->mqp.event = mlx4_ib_qp_event;
412
413 return 0;
414
415err_wrid:
Roland Dreier02d89b82007-05-23 15:16:08 -0700416 if (pd->uobject && !init_attr->srq)
Roland Dreier225c7b12007-05-08 18:00:38 -0700417 mlx4_ib_db_unmap_user(to_mucontext(pd->uobject->context), &qp->db);
418 else {
419 kfree(qp->sq.wrid);
420 kfree(qp->rq.wrid);
421 }
422
423err_mtt:
424 mlx4_mtt_cleanup(dev->dev, &qp->mtt);
425
426err_buf:
427 if (pd->uobject)
428 ib_umem_release(qp->umem);
429 else
430 mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
431
432err_db:
Roland Dreier02d89b82007-05-23 15:16:08 -0700433 if (!pd->uobject && !init_attr->srq)
Roland Dreier225c7b12007-05-08 18:00:38 -0700434 mlx4_ib_db_free(dev, &qp->db);
435
436err:
437 return err;
438}
439
440static enum mlx4_qp_state to_mlx4_state(enum ib_qp_state state)
441{
442 switch (state) {
443 case IB_QPS_RESET: return MLX4_QP_STATE_RST;
444 case IB_QPS_INIT: return MLX4_QP_STATE_INIT;
445 case IB_QPS_RTR: return MLX4_QP_STATE_RTR;
446 case IB_QPS_RTS: return MLX4_QP_STATE_RTS;
447 case IB_QPS_SQD: return MLX4_QP_STATE_SQD;
448 case IB_QPS_SQE: return MLX4_QP_STATE_SQER;
449 case IB_QPS_ERR: return MLX4_QP_STATE_ERR;
450 default: return -1;
451 }
452}
453
454static void mlx4_ib_lock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
455{
456 if (send_cq == recv_cq)
457 spin_lock_irq(&send_cq->lock);
458 else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
459 spin_lock_irq(&send_cq->lock);
460 spin_lock_nested(&recv_cq->lock, SINGLE_DEPTH_NESTING);
461 } else {
462 spin_lock_irq(&recv_cq->lock);
463 spin_lock_nested(&send_cq->lock, SINGLE_DEPTH_NESTING);
464 }
465}
466
467static void mlx4_ib_unlock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
468{
469 if (send_cq == recv_cq)
470 spin_unlock_irq(&send_cq->lock);
471 else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
472 spin_unlock(&recv_cq->lock);
473 spin_unlock_irq(&send_cq->lock);
474 } else {
475 spin_unlock(&send_cq->lock);
476 spin_unlock_irq(&recv_cq->lock);
477 }
478}
479
480static void destroy_qp_common(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp,
481 int is_user)
482{
483 struct mlx4_ib_cq *send_cq, *recv_cq;
484
485 if (qp->state != IB_QPS_RESET)
486 if (mlx4_qp_modify(dev->dev, NULL, to_mlx4_state(qp->state),
487 MLX4_QP_STATE_RST, NULL, 0, 0, &qp->mqp))
488 printk(KERN_WARNING "mlx4_ib: modify QP %06x to RESET failed.\n",
489 qp->mqp.qpn);
490
491 send_cq = to_mcq(qp->ibqp.send_cq);
492 recv_cq = to_mcq(qp->ibqp.recv_cq);
493
494 mlx4_ib_lock_cqs(send_cq, recv_cq);
495
496 if (!is_user) {
497 __mlx4_ib_cq_clean(recv_cq, qp->mqp.qpn,
498 qp->ibqp.srq ? to_msrq(qp->ibqp.srq): NULL);
499 if (send_cq != recv_cq)
500 __mlx4_ib_cq_clean(send_cq, qp->mqp.qpn, NULL);
501 }
502
503 mlx4_qp_remove(dev->dev, &qp->mqp);
504
505 mlx4_ib_unlock_cqs(send_cq, recv_cq);
506
507 mlx4_qp_free(dev->dev, &qp->mqp);
508 mlx4_mtt_cleanup(dev->dev, &qp->mtt);
509
510 if (is_user) {
Roland Dreier02d89b82007-05-23 15:16:08 -0700511 if (!qp->ibqp.srq)
512 mlx4_ib_db_unmap_user(to_mucontext(qp->ibqp.uobject->context),
513 &qp->db);
Roland Dreier225c7b12007-05-08 18:00:38 -0700514 ib_umem_release(qp->umem);
515 } else {
516 kfree(qp->sq.wrid);
517 kfree(qp->rq.wrid);
518 mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
Roland Dreier02d89b82007-05-23 15:16:08 -0700519 if (!qp->ibqp.srq)
520 mlx4_ib_db_free(dev, &qp->db);
Roland Dreier225c7b12007-05-08 18:00:38 -0700521 }
522}
523
524struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
525 struct ib_qp_init_attr *init_attr,
526 struct ib_udata *udata)
527{
528 struct mlx4_ib_dev *dev = to_mdev(pd->device);
529 struct mlx4_ib_sqp *sqp;
530 struct mlx4_ib_qp *qp;
531 int err;
532
533 switch (init_attr->qp_type) {
534 case IB_QPT_RC:
535 case IB_QPT_UC:
536 case IB_QPT_UD:
537 {
538 qp = kmalloc(sizeof *qp, GFP_KERNEL);
539 if (!qp)
540 return ERR_PTR(-ENOMEM);
541
542 err = create_qp_common(dev, pd, init_attr, udata, 0, qp);
543 if (err) {
544 kfree(qp);
545 return ERR_PTR(err);
546 }
547
548 qp->ibqp.qp_num = qp->mqp.qpn;
549
550 break;
551 }
552 case IB_QPT_SMI:
553 case IB_QPT_GSI:
554 {
555 /* Userspace is not allowed to create special QPs: */
556 if (pd->uobject)
557 return ERR_PTR(-EINVAL);
558
559 sqp = kmalloc(sizeof *sqp, GFP_KERNEL);
560 if (!sqp)
561 return ERR_PTR(-ENOMEM);
562
563 qp = &sqp->qp;
564
565 err = create_qp_common(dev, pd, init_attr, udata,
566 dev->dev->caps.sqp_start +
567 (init_attr->qp_type == IB_QPT_SMI ? 0 : 2) +
568 init_attr->port_num - 1,
569 qp);
570 if (err) {
571 kfree(sqp);
572 return ERR_PTR(err);
573 }
574
575 qp->port = init_attr->port_num;
576 qp->ibqp.qp_num = init_attr->qp_type == IB_QPT_SMI ? 0 : 1;
577
578 break;
579 }
580 default:
581 /* Don't support raw QPs */
582 return ERR_PTR(-EINVAL);
583 }
584
585 return &qp->ibqp;
586}
587
588int mlx4_ib_destroy_qp(struct ib_qp *qp)
589{
590 struct mlx4_ib_dev *dev = to_mdev(qp->device);
591 struct mlx4_ib_qp *mqp = to_mqp(qp);
592
593 if (is_qp0(dev, mqp))
594 mlx4_CLOSE_PORT(dev->dev, mqp->port);
595
596 destroy_qp_common(dev, mqp, !!qp->pd->uobject);
597
598 if (is_sqp(dev, mqp))
599 kfree(to_msqp(mqp));
600 else
601 kfree(mqp);
602
603 return 0;
604}
605
Roland Dreier225c7b12007-05-08 18:00:38 -0700606static int to_mlx4_st(enum ib_qp_type type)
607{
608 switch (type) {
609 case IB_QPT_RC: return MLX4_QP_ST_RC;
610 case IB_QPT_UC: return MLX4_QP_ST_UC;
611 case IB_QPT_UD: return MLX4_QP_ST_UD;
612 case IB_QPT_SMI:
613 case IB_QPT_GSI: return MLX4_QP_ST_MLX;
614 default: return -1;
615 }
616}
617
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +0300618static __be32 to_mlx4_access_flags(struct mlx4_ib_qp *qp, const struct ib_qp_attr *attr,
Roland Dreier225c7b12007-05-08 18:00:38 -0700619 int attr_mask)
620{
621 u8 dest_rd_atomic;
622 u32 access_flags;
623 u32 hw_access_flags = 0;
624
625 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
626 dest_rd_atomic = attr->max_dest_rd_atomic;
627 else
628 dest_rd_atomic = qp->resp_depth;
629
630 if (attr_mask & IB_QP_ACCESS_FLAGS)
631 access_flags = attr->qp_access_flags;
632 else
633 access_flags = qp->atomic_rd_en;
634
635 if (!dest_rd_atomic)
636 access_flags &= IB_ACCESS_REMOTE_WRITE;
637
638 if (access_flags & IB_ACCESS_REMOTE_READ)
639 hw_access_flags |= MLX4_QP_BIT_RRE;
640 if (access_flags & IB_ACCESS_REMOTE_ATOMIC)
641 hw_access_flags |= MLX4_QP_BIT_RAE;
642 if (access_flags & IB_ACCESS_REMOTE_WRITE)
643 hw_access_flags |= MLX4_QP_BIT_RWE;
644
645 return cpu_to_be32(hw_access_flags);
646}
647
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +0300648static void store_sqp_attrs(struct mlx4_ib_sqp *sqp, const struct ib_qp_attr *attr,
Roland Dreier225c7b12007-05-08 18:00:38 -0700649 int attr_mask)
650{
651 if (attr_mask & IB_QP_PKEY_INDEX)
652 sqp->pkey_index = attr->pkey_index;
653 if (attr_mask & IB_QP_QKEY)
654 sqp->qkey = attr->qkey;
655 if (attr_mask & IB_QP_SQ_PSN)
656 sqp->send_psn = attr->sq_psn;
657}
658
659static void mlx4_set_sched(struct mlx4_qp_path *path, u8 port)
660{
661 path->sched_queue = (path->sched_queue & 0xbf) | ((port - 1) << 6);
662}
663
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +0300664static int mlx4_set_path(struct mlx4_ib_dev *dev, const struct ib_ah_attr *ah,
Roland Dreier225c7b12007-05-08 18:00:38 -0700665 struct mlx4_qp_path *path, u8 port)
666{
667 path->grh_mylmc = ah->src_path_bits & 0x7f;
668 path->rlid = cpu_to_be16(ah->dlid);
669 if (ah->static_rate) {
670 path->static_rate = ah->static_rate + MLX4_STAT_RATE_OFFSET;
671 while (path->static_rate > IB_RATE_2_5_GBPS + MLX4_STAT_RATE_OFFSET &&
672 !(1 << path->static_rate & dev->dev->caps.stat_rate_support))
673 --path->static_rate;
674 } else
675 path->static_rate = 0;
676 path->counter_index = 0xff;
677
678 if (ah->ah_flags & IB_AH_GRH) {
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700679 if (ah->grh.sgid_index >= dev->dev->caps.gid_table_len[port]) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700680 printk(KERN_ERR "sgid_index (%u) too large. max is %d\n",
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700681 ah->grh.sgid_index, dev->dev->caps.gid_table_len[port] - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -0700682 return -1;
683 }
684
685 path->grh_mylmc |= 1 << 7;
686 path->mgid_index = ah->grh.sgid_index;
687 path->hop_limit = ah->grh.hop_limit;
688 path->tclass_flowlabel =
689 cpu_to_be32((ah->grh.traffic_class << 20) |
690 (ah->grh.flow_label));
691 memcpy(path->rgid, ah->grh.dgid.raw, 16);
692 }
693
694 path->sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE |
695 ((port - 1) << 6) | ((ah->sl & 0xf) << 2);
696
697 return 0;
698}
699
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +0300700static int __mlx4_ib_modify_qp(struct ib_qp *ibqp,
701 const struct ib_qp_attr *attr, int attr_mask,
702 enum ib_qp_state cur_state, enum ib_qp_state new_state)
Roland Dreier225c7b12007-05-08 18:00:38 -0700703{
704 struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
705 struct mlx4_ib_qp *qp = to_mqp(ibqp);
706 struct mlx4_qp_context *context;
707 enum mlx4_qp_optpar optpar = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -0700708 int sqd_event;
709 int err = -EINVAL;
710
711 context = kzalloc(sizeof *context, GFP_KERNEL);
712 if (!context)
713 return -ENOMEM;
714
Roland Dreier225c7b12007-05-08 18:00:38 -0700715 context->flags = cpu_to_be32((to_mlx4_state(new_state) << 28) |
716 (to_mlx4_st(ibqp->qp_type) << 16));
717 context->flags |= cpu_to_be32(1 << 8); /* DE? */
718
719 if (!(attr_mask & IB_QP_PATH_MIG_STATE))
720 context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
721 else {
722 optpar |= MLX4_QP_OPTPAR_PM_STATE;
723 switch (attr->path_mig_state) {
724 case IB_MIG_MIGRATED:
725 context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
726 break;
727 case IB_MIG_REARM:
728 context->flags |= cpu_to_be32(MLX4_QP_PM_REARM << 11);
729 break;
730 case IB_MIG_ARMED:
731 context->flags |= cpu_to_be32(MLX4_QP_PM_ARMED << 11);
732 break;
733 }
734 }
735
736 if (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI ||
737 ibqp->qp_type == IB_QPT_UD)
738 context->mtu_msgmax = (IB_MTU_4096 << 5) | 11;
739 else if (attr_mask & IB_QP_PATH_MTU) {
740 if (attr->path_mtu < IB_MTU_256 || attr->path_mtu > IB_MTU_4096) {
741 printk(KERN_ERR "path MTU (%u) is invalid\n",
742 attr->path_mtu);
743 return -EINVAL;
744 }
745 context->mtu_msgmax = (attr->path_mtu << 5) | 31;
746 }
747
Roland Dreier0e6e7412007-06-18 08:13:48 -0700748 if (qp->rq.wqe_cnt)
749 context->rq_size_stride = ilog2(qp->rq.wqe_cnt) << 3;
Roland Dreier225c7b12007-05-08 18:00:38 -0700750 context->rq_size_stride |= qp->rq.wqe_shift - 4;
751
Roland Dreier0e6e7412007-06-18 08:13:48 -0700752 if (qp->sq.wqe_cnt)
753 context->sq_size_stride = ilog2(qp->sq.wqe_cnt) << 3;
Roland Dreier225c7b12007-05-08 18:00:38 -0700754 context->sq_size_stride |= qp->sq.wqe_shift - 4;
755
Roland Dreier0e6e7412007-06-18 08:13:48 -0700756 if (cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
757 context->sq_size_stride |= !!qp->sq_no_prefetch << 7;
758
Roland Dreier225c7b12007-05-08 18:00:38 -0700759 if (qp->ibqp.uobject)
760 context->usr_page = cpu_to_be32(to_mucontext(ibqp->uobject->context)->uar.index);
761 else
762 context->usr_page = cpu_to_be32(dev->priv_uar.index);
763
764 if (attr_mask & IB_QP_DEST_QPN)
765 context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
766
767 if (attr_mask & IB_QP_PORT) {
768 if (cur_state == IB_QPS_SQD && new_state == IB_QPS_SQD &&
769 !(attr_mask & IB_QP_AV)) {
770 mlx4_set_sched(&context->pri_path, attr->port_num);
771 optpar |= MLX4_QP_OPTPAR_SCHED_QUEUE;
772 }
773 }
774
775 if (attr_mask & IB_QP_PKEY_INDEX) {
776 context->pri_path.pkey_index = attr->pkey_index;
777 optpar |= MLX4_QP_OPTPAR_PKEY_INDEX;
778 }
779
Roland Dreier225c7b12007-05-08 18:00:38 -0700780 if (attr_mask & IB_QP_AV) {
781 if (mlx4_set_path(dev, &attr->ah_attr, &context->pri_path,
782 attr_mask & IB_QP_PORT ? attr->port_num : qp->port)) {
783 err = -EINVAL;
784 goto out;
785 }
786
787 optpar |= (MLX4_QP_OPTPAR_PRIMARY_ADDR_PATH |
788 MLX4_QP_OPTPAR_SCHED_QUEUE);
789 }
790
791 if (attr_mask & IB_QP_TIMEOUT) {
792 context->pri_path.ackto = attr->timeout << 3;
793 optpar |= MLX4_QP_OPTPAR_ACK_TIMEOUT;
794 }
795
796 if (attr_mask & IB_QP_ALT_PATH) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700797 if (attr->alt_port_num == 0 ||
798 attr->alt_port_num > dev->dev->caps.num_ports)
799 return -EINVAL;
800
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700801 if (attr->alt_pkey_index >=
802 dev->dev->caps.pkey_table_len[attr->alt_port_num])
803 return -EINVAL;
804
Roland Dreier225c7b12007-05-08 18:00:38 -0700805 if (mlx4_set_path(dev, &attr->alt_ah_attr, &context->alt_path,
806 attr->alt_port_num))
807 return -EINVAL;
808
809 context->alt_path.pkey_index = attr->alt_pkey_index;
810 context->alt_path.ackto = attr->alt_timeout << 3;
811 optpar |= MLX4_QP_OPTPAR_ALT_ADDR_PATH;
812 }
813
814 context->pd = cpu_to_be32(to_mpd(ibqp->pd)->pdn);
815 context->params1 = cpu_to_be32(MLX4_IB_ACK_REQ_FREQ << 28);
Jack Morgenstein57f01b52007-06-06 19:35:04 +0300816
817 if (attr_mask & IB_QP_RNR_RETRY) {
818 context->params1 |= cpu_to_be32(attr->rnr_retry << 13);
819 optpar |= MLX4_QP_OPTPAR_RNR_RETRY;
820 }
821
Roland Dreier225c7b12007-05-08 18:00:38 -0700822 if (attr_mask & IB_QP_RETRY_CNT) {
823 context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
824 optpar |= MLX4_QP_OPTPAR_RETRY_COUNT;
825 }
826
827 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
828 if (attr->max_rd_atomic)
829 context->params1 |=
830 cpu_to_be32(fls(attr->max_rd_atomic - 1) << 21);
831 optpar |= MLX4_QP_OPTPAR_SRA_MAX;
832 }
833
834 if (attr_mask & IB_QP_SQ_PSN)
835 context->next_send_psn = cpu_to_be32(attr->sq_psn);
836
837 context->cqn_send = cpu_to_be32(to_mcq(ibqp->send_cq)->mcq.cqn);
838
839 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
840 if (attr->max_dest_rd_atomic)
841 context->params2 |=
842 cpu_to_be32(fls(attr->max_dest_rd_atomic - 1) << 21);
843 optpar |= MLX4_QP_OPTPAR_RRA_MAX;
844 }
845
846 if (attr_mask & (IB_QP_ACCESS_FLAGS | IB_QP_MAX_DEST_RD_ATOMIC)) {
847 context->params2 |= to_mlx4_access_flags(qp, attr, attr_mask);
848 optpar |= MLX4_QP_OPTPAR_RWE | MLX4_QP_OPTPAR_RRE | MLX4_QP_OPTPAR_RAE;
849 }
850
851 if (ibqp->srq)
852 context->params2 |= cpu_to_be32(MLX4_QP_BIT_RIC);
853
854 if (attr_mask & IB_QP_MIN_RNR_TIMER) {
855 context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
856 optpar |= MLX4_QP_OPTPAR_RNR_TIMEOUT;
857 }
858 if (attr_mask & IB_QP_RQ_PSN)
859 context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
860
861 context->cqn_recv = cpu_to_be32(to_mcq(ibqp->recv_cq)->mcq.cqn);
862
863 if (attr_mask & IB_QP_QKEY) {
864 context->qkey = cpu_to_be32(attr->qkey);
865 optpar |= MLX4_QP_OPTPAR_Q_KEY;
866 }
867
868 if (ibqp->srq)
869 context->srqn = cpu_to_be32(1 << 24 | to_msrq(ibqp->srq)->msrq.srqn);
870
Roland Dreier02d89b82007-05-23 15:16:08 -0700871 if (!ibqp->srq && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
Roland Dreier225c7b12007-05-08 18:00:38 -0700872 context->db_rec_addr = cpu_to_be64(qp->db.dma);
873
874 if (cur_state == IB_QPS_INIT &&
875 new_state == IB_QPS_RTR &&
876 (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI ||
877 ibqp->qp_type == IB_QPT_UD)) {
878 context->pri_path.sched_queue = (qp->port - 1) << 6;
879 if (is_qp0(dev, qp))
880 context->pri_path.sched_queue |= MLX4_IB_DEFAULT_QP0_SCHED_QUEUE;
881 else
882 context->pri_path.sched_queue |= MLX4_IB_DEFAULT_SCHED_QUEUE;
883 }
884
885 if (cur_state == IB_QPS_RTS && new_state == IB_QPS_SQD &&
886 attr_mask & IB_QP_EN_SQD_ASYNC_NOTIFY && attr->en_sqd_async_notify)
887 sqd_event = 1;
888 else
889 sqd_event = 0;
890
Eli Cohenc0be5fb2007-05-24 16:05:01 +0300891 /*
892 * Before passing a kernel QP to the HW, make sure that the
Roland Dreier0e6e7412007-06-18 08:13:48 -0700893 * ownership bits of the send queue are set and the SQ
894 * headroom is stamped so that the hardware doesn't start
895 * processing stale work requests.
Eli Cohenc0be5fb2007-05-24 16:05:01 +0300896 */
897 if (!ibqp->uobject && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT) {
898 struct mlx4_wqe_ctrl_seg *ctrl;
899 int i;
900
Roland Dreier0e6e7412007-06-18 08:13:48 -0700901 for (i = 0; i < qp->sq.wqe_cnt; ++i) {
Eli Cohenc0be5fb2007-05-24 16:05:01 +0300902 ctrl = get_send_wqe(qp, i);
903 ctrl->owner_opcode = cpu_to_be32(1 << 31);
Roland Dreier0e6e7412007-06-18 08:13:48 -0700904
905 stamp_send_wqe(qp, i);
Eli Cohenc0be5fb2007-05-24 16:05:01 +0300906 }
907 }
908
Roland Dreier225c7b12007-05-08 18:00:38 -0700909 err = mlx4_qp_modify(dev->dev, &qp->mtt, to_mlx4_state(cur_state),
910 to_mlx4_state(new_state), context, optpar,
911 sqd_event, &qp->mqp);
912 if (err)
913 goto out;
914
915 qp->state = new_state;
916
917 if (attr_mask & IB_QP_ACCESS_FLAGS)
918 qp->atomic_rd_en = attr->qp_access_flags;
919 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
920 qp->resp_depth = attr->max_dest_rd_atomic;
921 if (attr_mask & IB_QP_PORT)
922 qp->port = attr->port_num;
923 if (attr_mask & IB_QP_ALT_PATH)
924 qp->alt_port = attr->alt_port_num;
925
926 if (is_sqp(dev, qp))
927 store_sqp_attrs(to_msqp(qp), attr, attr_mask);
928
929 /*
930 * If we moved QP0 to RTR, bring the IB link up; if we moved
931 * QP0 to RESET or ERROR, bring the link back down.
932 */
933 if (is_qp0(dev, qp)) {
934 if (cur_state != IB_QPS_RTR && new_state == IB_QPS_RTR)
Roland Dreier5ae2a7a2007-06-18 08:15:02 -0700935 if (mlx4_INIT_PORT(dev->dev, qp->port))
936 printk(KERN_WARNING "INIT_PORT failed for port %d\n",
937 qp->port);
Roland Dreier225c7b12007-05-08 18:00:38 -0700938
939 if (cur_state != IB_QPS_RESET && cur_state != IB_QPS_ERR &&
940 (new_state == IB_QPS_RESET || new_state == IB_QPS_ERR))
941 mlx4_CLOSE_PORT(dev->dev, qp->port);
942 }
943
944 /*
945 * If we moved a kernel QP to RESET, clean up all old CQ
946 * entries and reinitialize the QP.
947 */
948 if (new_state == IB_QPS_RESET && !ibqp->uobject) {
949 mlx4_ib_cq_clean(to_mcq(ibqp->recv_cq), qp->mqp.qpn,
950 ibqp->srq ? to_msrq(ibqp->srq): NULL);
951 if (ibqp->send_cq != ibqp->recv_cq)
952 mlx4_ib_cq_clean(to_mcq(ibqp->send_cq), qp->mqp.qpn, NULL);
953
954 qp->rq.head = 0;
955 qp->rq.tail = 0;
956 qp->sq.head = 0;
957 qp->sq.tail = 0;
Roland Dreier02d89b82007-05-23 15:16:08 -0700958 if (!ibqp->srq)
959 *qp->db.db = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -0700960 }
961
962out:
Roland Dreier225c7b12007-05-08 18:00:38 -0700963 kfree(context);
964 return err;
965}
966
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +0300967static const struct ib_qp_attr mlx4_ib_qp_attr = { .port_num = 1 };
968static const int mlx4_ib_qp_attr_mask_table[IB_QPT_UD + 1] = {
969 [IB_QPT_UD] = (IB_QP_PKEY_INDEX |
970 IB_QP_PORT |
971 IB_QP_QKEY),
972 [IB_QPT_UC] = (IB_QP_PKEY_INDEX |
973 IB_QP_PORT |
974 IB_QP_ACCESS_FLAGS),
975 [IB_QPT_RC] = (IB_QP_PKEY_INDEX |
976 IB_QP_PORT |
977 IB_QP_ACCESS_FLAGS),
978 [IB_QPT_SMI] = (IB_QP_PKEY_INDEX |
979 IB_QP_QKEY),
980 [IB_QPT_GSI] = (IB_QP_PKEY_INDEX |
981 IB_QP_QKEY),
982};
983
984int mlx4_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
985 int attr_mask, struct ib_udata *udata)
986{
987 struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
988 struct mlx4_ib_qp *qp = to_mqp(ibqp);
989 enum ib_qp_state cur_state, new_state;
990 int err = -EINVAL;
991
992 mutex_lock(&qp->mutex);
993
994 cur_state = attr_mask & IB_QP_CUR_STATE ? attr->cur_qp_state : qp->state;
995 new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state;
996
997 if (!ib_modify_qp_is_ok(cur_state, new_state, ibqp->qp_type, attr_mask))
998 goto out;
999
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001000 if ((attr_mask & IB_QP_PORT) &&
1001 (attr->port_num == 0 || attr->port_num > dev->dev->caps.num_ports)) {
1002 goto out;
1003 }
1004
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001005 if (attr_mask & IB_QP_PKEY_INDEX) {
1006 int p = attr_mask & IB_QP_PORT ? attr->port_num : qp->port;
1007 if (attr->pkey_index >= dev->dev->caps.pkey_table_len[p])
1008 goto out;
1009 }
1010
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001011 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC &&
1012 attr->max_rd_atomic > dev->dev->caps.max_qp_init_rdma) {
1013 goto out;
1014 }
1015
1016 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC &&
1017 attr->max_dest_rd_atomic > dev->dev->caps.max_qp_dest_rdma) {
1018 goto out;
1019 }
1020
1021 if (cur_state == new_state && cur_state == IB_QPS_RESET) {
1022 err = 0;
1023 goto out;
1024 }
1025
1026 if (cur_state == IB_QPS_RESET && new_state == IB_QPS_ERR) {
1027 err = __mlx4_ib_modify_qp(ibqp, &mlx4_ib_qp_attr,
1028 mlx4_ib_qp_attr_mask_table[ibqp->qp_type],
1029 IB_QPS_RESET, IB_QPS_INIT);
1030 if (err)
1031 goto out;
1032 cur_state = IB_QPS_INIT;
1033 }
1034
1035 err = __mlx4_ib_modify_qp(ibqp, attr, attr_mask, cur_state, new_state);
1036
1037out:
1038 mutex_unlock(&qp->mutex);
1039 return err;
1040}
1041
Roland Dreier225c7b12007-05-08 18:00:38 -07001042static int build_mlx_header(struct mlx4_ib_sqp *sqp, struct ib_send_wr *wr,
1043 void *wqe)
1044{
1045 struct ib_device *ib_dev = &to_mdev(sqp->qp.ibqp.device)->ib_dev;
1046 struct mlx4_wqe_mlx_seg *mlx = wqe;
1047 struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
1048 struct mlx4_ib_ah *ah = to_mah(wr->wr.ud.ah);
1049 u16 pkey;
1050 int send_size;
1051 int header_size;
1052 int i;
1053
1054 send_size = 0;
1055 for (i = 0; i < wr->num_sge; ++i)
1056 send_size += wr->sg_list[i].length;
1057
1058 ib_ud_header_init(send_size, mlx4_ib_ah_grh_present(ah), &sqp->ud_header);
1059
1060 sqp->ud_header.lrh.service_level =
1061 be32_to_cpu(ah->av.sl_tclass_flowlabel) >> 28;
1062 sqp->ud_header.lrh.destination_lid = ah->av.dlid;
1063 sqp->ud_header.lrh.source_lid = cpu_to_be16(ah->av.g_slid & 0x7f);
1064 if (mlx4_ib_ah_grh_present(ah)) {
1065 sqp->ud_header.grh.traffic_class =
1066 (be32_to_cpu(ah->av.sl_tclass_flowlabel) >> 20) & 0xff;
1067 sqp->ud_header.grh.flow_label =
1068 ah->av.sl_tclass_flowlabel & cpu_to_be32(0xfffff);
Roland Dreier15261302007-05-19 08:51:57 -07001069 sqp->ud_header.grh.hop_limit = ah->av.hop_limit;
Roland Dreier225c7b12007-05-08 18:00:38 -07001070 ib_get_cached_gid(ib_dev, be32_to_cpu(ah->av.port_pd) >> 24,
1071 ah->av.gid_index, &sqp->ud_header.grh.source_gid);
1072 memcpy(sqp->ud_header.grh.destination_gid.raw,
1073 ah->av.dgid, 16);
1074 }
1075
1076 mlx->flags &= cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
1077 mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MLX4_WQE_MLX_VL15 : 0) |
1078 (sqp->ud_header.lrh.destination_lid ==
1079 IB_LID_PERMISSIVE ? MLX4_WQE_MLX_SLR : 0) |
1080 (sqp->ud_header.lrh.service_level << 8));
1081 mlx->rlid = sqp->ud_header.lrh.destination_lid;
1082
1083 switch (wr->opcode) {
1084 case IB_WR_SEND:
1085 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
1086 sqp->ud_header.immediate_present = 0;
1087 break;
1088 case IB_WR_SEND_WITH_IMM:
1089 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
1090 sqp->ud_header.immediate_present = 1;
1091 sqp->ud_header.immediate_data = wr->imm_data;
1092 break;
1093 default:
1094 return -EINVAL;
1095 }
1096
1097 sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0;
1098 if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE)
1099 sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE;
1100 sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
1101 if (!sqp->qp.ibqp.qp_num)
1102 ib_get_cached_pkey(ib_dev, sqp->qp.port, sqp->pkey_index, &pkey);
1103 else
1104 ib_get_cached_pkey(ib_dev, sqp->qp.port, wr->wr.ud.pkey_index, &pkey);
1105 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
1106 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
1107 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
1108 sqp->ud_header.deth.qkey = cpu_to_be32(wr->wr.ud.remote_qkey & 0x80000000 ?
1109 sqp->qkey : wr->wr.ud.remote_qkey);
1110 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
1111
1112 header_size = ib_ud_header_pack(&sqp->ud_header, sqp->header_buf);
1113
1114 if (0) {
1115 printk(KERN_ERR "built UD header of size %d:\n", header_size);
1116 for (i = 0; i < header_size / 4; ++i) {
1117 if (i % 8 == 0)
1118 printk(" [%02x] ", i * 4);
1119 printk(" %08x",
1120 be32_to_cpu(((__be32 *) sqp->header_buf)[i]));
1121 if ((i + 1) % 8 == 0)
1122 printk("\n");
1123 }
1124 printk("\n");
1125 }
1126
1127 inl->byte_count = cpu_to_be32(1 << 31 | header_size);
1128 memcpy(inl + 1, sqp->header_buf, header_size);
1129
1130 return ALIGN(sizeof (struct mlx4_wqe_inline_seg) + header_size, 16);
1131}
1132
1133static int mlx4_wq_overflow(struct mlx4_ib_wq *wq, int nreq, struct ib_cq *ib_cq)
1134{
1135 unsigned cur;
1136 struct mlx4_ib_cq *cq;
1137
1138 cur = wq->head - wq->tail;
Roland Dreier0e6e7412007-06-18 08:13:48 -07001139 if (likely(cur + nreq < wq->max_post))
Roland Dreier225c7b12007-05-08 18:00:38 -07001140 return 0;
1141
1142 cq = to_mcq(ib_cq);
1143 spin_lock(&cq->lock);
1144 cur = wq->head - wq->tail;
1145 spin_unlock(&cq->lock);
1146
Roland Dreier0e6e7412007-06-18 08:13:48 -07001147 return cur + nreq >= wq->max_post;
Roland Dreier225c7b12007-05-08 18:00:38 -07001148}
1149
1150int mlx4_ib_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
1151 struct ib_send_wr **bad_wr)
1152{
1153 struct mlx4_ib_qp *qp = to_mqp(ibqp);
1154 void *wqe;
1155 struct mlx4_wqe_ctrl_seg *ctrl;
1156 unsigned long flags;
1157 int nreq;
1158 int err = 0;
1159 int ind;
1160 int size;
1161 int i;
1162
1163 spin_lock_irqsave(&qp->rq.lock, flags);
1164
1165 ind = qp->sq.head;
1166
1167 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1168 if (mlx4_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1169 err = -ENOMEM;
1170 *bad_wr = wr;
1171 goto out;
1172 }
1173
1174 if (unlikely(wr->num_sge > qp->sq.max_gs)) {
1175 err = -EINVAL;
1176 *bad_wr = wr;
1177 goto out;
1178 }
1179
Roland Dreier0e6e7412007-06-18 08:13:48 -07001180 ctrl = wqe = get_send_wqe(qp, ind & (qp->sq.wqe_cnt - 1));
1181 qp->sq.wrid[ind & (qp->sq.wqe_cnt - 1)] = wr->wr_id;
Roland Dreier225c7b12007-05-08 18:00:38 -07001182
1183 ctrl->srcrb_flags =
1184 (wr->send_flags & IB_SEND_SIGNALED ?
1185 cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE) : 0) |
1186 (wr->send_flags & IB_SEND_SOLICITED ?
1187 cpu_to_be32(MLX4_WQE_CTRL_SOLICITED) : 0) |
1188 qp->sq_signal_bits;
1189
1190 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1191 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
1192 ctrl->imm = wr->imm_data;
1193 else
1194 ctrl->imm = 0;
1195
1196 wqe += sizeof *ctrl;
1197 size = sizeof *ctrl / 16;
1198
1199 switch (ibqp->qp_type) {
1200 case IB_QPT_RC:
1201 case IB_QPT_UC:
1202 switch (wr->opcode) {
1203 case IB_WR_ATOMIC_CMP_AND_SWP:
1204 case IB_WR_ATOMIC_FETCH_AND_ADD:
1205 ((struct mlx4_wqe_raddr_seg *) wqe)->raddr =
1206 cpu_to_be64(wr->wr.atomic.remote_addr);
1207 ((struct mlx4_wqe_raddr_seg *) wqe)->rkey =
1208 cpu_to_be32(wr->wr.atomic.rkey);
1209 ((struct mlx4_wqe_raddr_seg *) wqe)->reserved = 0;
1210
1211 wqe += sizeof (struct mlx4_wqe_raddr_seg);
1212
1213 if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
1214 ((struct mlx4_wqe_atomic_seg *) wqe)->swap_add =
1215 cpu_to_be64(wr->wr.atomic.swap);
1216 ((struct mlx4_wqe_atomic_seg *) wqe)->compare =
1217 cpu_to_be64(wr->wr.atomic.compare_add);
1218 } else {
1219 ((struct mlx4_wqe_atomic_seg *) wqe)->swap_add =
1220 cpu_to_be64(wr->wr.atomic.compare_add);
1221 ((struct mlx4_wqe_atomic_seg *) wqe)->compare = 0;
1222 }
1223
1224 wqe += sizeof (struct mlx4_wqe_atomic_seg);
1225 size += (sizeof (struct mlx4_wqe_raddr_seg) +
1226 sizeof (struct mlx4_wqe_atomic_seg)) / 16;
1227
1228 break;
1229
1230 case IB_WR_RDMA_READ:
1231 case IB_WR_RDMA_WRITE:
1232 case IB_WR_RDMA_WRITE_WITH_IMM:
1233 ((struct mlx4_wqe_raddr_seg *) wqe)->raddr =
1234 cpu_to_be64(wr->wr.rdma.remote_addr);
1235 ((struct mlx4_wqe_raddr_seg *) wqe)->rkey =
1236 cpu_to_be32(wr->wr.rdma.rkey);
1237 ((struct mlx4_wqe_raddr_seg *) wqe)->reserved = 0;
1238
1239 wqe += sizeof (struct mlx4_wqe_raddr_seg);
1240 size += sizeof (struct mlx4_wqe_raddr_seg) / 16;
1241
1242 break;
1243
1244 default:
1245 /* No extra segments required for sends */
1246 break;
1247 }
1248 break;
1249
1250 case IB_QPT_UD:
1251 memcpy(((struct mlx4_wqe_datagram_seg *) wqe)->av,
1252 &to_mah(wr->wr.ud.ah)->av, sizeof (struct mlx4_av));
1253 ((struct mlx4_wqe_datagram_seg *) wqe)->dqpn =
1254 cpu_to_be32(wr->wr.ud.remote_qpn);
1255 ((struct mlx4_wqe_datagram_seg *) wqe)->qkey =
1256 cpu_to_be32(wr->wr.ud.remote_qkey);
1257
1258 wqe += sizeof (struct mlx4_wqe_datagram_seg);
1259 size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
1260 break;
1261
1262 case IB_QPT_SMI:
1263 case IB_QPT_GSI:
1264 err = build_mlx_header(to_msqp(qp), wr, ctrl);
1265 if (err < 0) {
1266 *bad_wr = wr;
1267 goto out;
1268 }
1269 wqe += err;
1270 size += err / 16;
1271
1272 err = 0;
1273 break;
1274
1275 default:
1276 break;
1277 }
1278
1279 for (i = 0; i < wr->num_sge; ++i) {
1280 ((struct mlx4_wqe_data_seg *) wqe)->byte_count =
1281 cpu_to_be32(wr->sg_list[i].length);
1282 ((struct mlx4_wqe_data_seg *) wqe)->lkey =
1283 cpu_to_be32(wr->sg_list[i].lkey);
1284 ((struct mlx4_wqe_data_seg *) wqe)->addr =
1285 cpu_to_be64(wr->sg_list[i].addr);
1286
1287 wqe += sizeof (struct mlx4_wqe_data_seg);
1288 size += sizeof (struct mlx4_wqe_data_seg) / 16;
1289 }
1290
1291 /* Add one more inline data segment for ICRC for MLX sends */
1292 if (qp->ibqp.qp_type == IB_QPT_SMI || qp->ibqp.qp_type == IB_QPT_GSI) {
1293 ((struct mlx4_wqe_inline_seg *) wqe)->byte_count =
1294 cpu_to_be32((1 << 31) | 4);
1295 ((u32 *) wqe)[1] = 0;
1296 wqe += sizeof (struct mlx4_wqe_data_seg);
1297 size += sizeof (struct mlx4_wqe_data_seg) / 16;
1298 }
1299
1300 ctrl->fence_size = (wr->send_flags & IB_SEND_FENCE ?
1301 MLX4_WQE_CTRL_FENCE : 0) | size;
1302
1303 /*
1304 * Make sure descriptor is fully written before
1305 * setting ownership bit (because HW can start
1306 * executing as soon as we do).
1307 */
1308 wmb();
1309
Roland Dreier59b0ed122007-05-19 08:51:58 -07001310 if (wr->opcode < 0 || wr->opcode >= ARRAY_SIZE(mlx4_ib_opcode)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001311 err = -EINVAL;
1312 goto out;
1313 }
1314
1315 ctrl->owner_opcode = mlx4_ib_opcode[wr->opcode] |
Roland Dreier0e6e7412007-06-18 08:13:48 -07001316 (ind & qp->sq.wqe_cnt ? cpu_to_be32(1 << 31) : 0);
1317
1318 /*
1319 * We can improve latency by not stamping the last
1320 * send queue WQE until after ringing the doorbell, so
1321 * only stamp here if there are still more WQEs to post.
1322 */
1323 if (wr->next)
1324 stamp_send_wqe(qp, (ind + qp->sq_spare_wqes) &
1325 (qp->sq.wqe_cnt - 1));
Roland Dreier225c7b12007-05-08 18:00:38 -07001326
1327 ++ind;
1328 }
1329
1330out:
1331 if (likely(nreq)) {
1332 qp->sq.head += nreq;
1333
1334 /*
1335 * Make sure that descriptors are written before
1336 * doorbell record.
1337 */
1338 wmb();
1339
1340 writel(qp->doorbell_qpn,
1341 to_mdev(ibqp->device)->uar_map + MLX4_SEND_DOORBELL);
1342
1343 /*
1344 * Make sure doorbells don't leak out of SQ spinlock
1345 * and reach the HCA out of order.
1346 */
1347 mmiowb();
Roland Dreier0e6e7412007-06-18 08:13:48 -07001348
1349 stamp_send_wqe(qp, (ind + qp->sq_spare_wqes - 1) &
1350 (qp->sq.wqe_cnt - 1));
Roland Dreier225c7b12007-05-08 18:00:38 -07001351 }
1352
1353 spin_unlock_irqrestore(&qp->rq.lock, flags);
1354
1355 return err;
1356}
1357
1358int mlx4_ib_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr,
1359 struct ib_recv_wr **bad_wr)
1360{
1361 struct mlx4_ib_qp *qp = to_mqp(ibqp);
1362 struct mlx4_wqe_data_seg *scat;
1363 unsigned long flags;
1364 int err = 0;
1365 int nreq;
1366 int ind;
1367 int i;
1368
1369 spin_lock_irqsave(&qp->rq.lock, flags);
1370
Roland Dreier0e6e7412007-06-18 08:13:48 -07001371 ind = qp->rq.head & (qp->rq.wqe_cnt - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07001372
1373 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1374 if (mlx4_wq_overflow(&qp->rq, nreq, qp->ibqp.send_cq)) {
1375 err = -ENOMEM;
1376 *bad_wr = wr;
1377 goto out;
1378 }
1379
1380 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
1381 err = -EINVAL;
1382 *bad_wr = wr;
1383 goto out;
1384 }
1385
1386 scat = get_recv_wqe(qp, ind);
1387
1388 for (i = 0; i < wr->num_sge; ++i) {
1389 scat[i].byte_count = cpu_to_be32(wr->sg_list[i].length);
1390 scat[i].lkey = cpu_to_be32(wr->sg_list[i].lkey);
1391 scat[i].addr = cpu_to_be64(wr->sg_list[i].addr);
1392 }
1393
1394 if (i < qp->rq.max_gs) {
1395 scat[i].byte_count = 0;
1396 scat[i].lkey = cpu_to_be32(MLX4_INVALID_LKEY);
1397 scat[i].addr = 0;
1398 }
1399
1400 qp->rq.wrid[ind] = wr->wr_id;
1401
Roland Dreier0e6e7412007-06-18 08:13:48 -07001402 ind = (ind + 1) & (qp->rq.wqe_cnt - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07001403 }
1404
1405out:
1406 if (likely(nreq)) {
1407 qp->rq.head += nreq;
1408
1409 /*
1410 * Make sure that descriptors are written before
1411 * doorbell record.
1412 */
1413 wmb();
1414
1415 *qp->db.db = cpu_to_be32(qp->rq.head & 0xffff);
1416 }
1417
1418 spin_unlock_irqrestore(&qp->rq.lock, flags);
1419
1420 return err;
1421}