blob: 2f85fc762865d10ee6297ff0c53d2de7e7cf1082 [file] [log] [blame]
Roland Dreier225c7b12007-05-08 18:00:38 -07001/*
2 * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
Jack Morgenstein51a379d2008-07-25 10:32:52 -07003 * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved.
Roland Dreier225c7b12007-05-08 18:00:38 -07004 *
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
Jack Morgensteinea54b102008-01-28 10:40:59 +020034#include <linux/log2.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Eli Cohenfa417f72010-10-24 21:08:52 -070036#include <linux/netdevice.h>
Jack Morgensteinea54b102008-01-28 10:40:59 +020037
Roland Dreier225c7b12007-05-08 18:00:38 -070038#include <rdma/ib_cache.h>
39#include <rdma/ib_pack.h>
Eli Cohen4c3eb3c2010-08-26 17:19:22 +030040#include <rdma/ib_addr.h>
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +000041#include <rdma/ib_mad.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070042
Moni Shoua2f484852015-02-03 16:48:36 +020043#include <linux/mlx4/driver.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070044#include <linux/mlx4/qp.h>
45
46#include "mlx4_ib.h"
47#include "user.h"
48
49enum {
50 MLX4_IB_ACK_REQ_FREQ = 8,
51};
52
53enum {
54 MLX4_IB_DEFAULT_SCHED_QUEUE = 0x83,
Eli Cohenfa417f72010-10-24 21:08:52 -070055 MLX4_IB_DEFAULT_QP0_SCHED_QUEUE = 0x3f,
56 MLX4_IB_LINK_TYPE_IB = 0,
57 MLX4_IB_LINK_TYPE_ETH = 1
Roland Dreier225c7b12007-05-08 18:00:38 -070058};
59
60enum {
61 /*
Eli Cohenfa417f72010-10-24 21:08:52 -070062 * Largest possible UD header: send with GRH and immediate
Eli Cohen4c3eb3c2010-08-26 17:19:22 +030063 * data plus 18 bytes for an Ethernet header with VLAN/802.1Q
64 * tag. (LRH would only use 8 bytes, so Ethernet is the
65 * biggest case)
Roland Dreier225c7b12007-05-08 18:00:38 -070066 */
Eli Cohen4c3eb3c2010-08-26 17:19:22 +030067 MLX4_IB_UD_HEADER_SIZE = 82,
Eli Cohen417608c2009-11-12 11:19:44 -080068 MLX4_IB_LSO_HEADER_SPARE = 128,
Roland Dreier225c7b12007-05-08 18:00:38 -070069};
70
Eli Cohenfa417f72010-10-24 21:08:52 -070071enum {
72 MLX4_IB_IBOE_ETHERTYPE = 0x8915
73};
74
Roland Dreier225c7b12007-05-08 18:00:38 -070075struct mlx4_ib_sqp {
76 struct mlx4_ib_qp qp;
77 int pkey_index;
78 u32 qkey;
79 u32 send_psn;
80 struct ib_ud_header ud_header;
81 u8 header_buf[MLX4_IB_UD_HEADER_SIZE];
82};
83
Jack Morgenstein83904132007-10-18 17:36:43 +020084enum {
Eli Cohen417608c2009-11-12 11:19:44 -080085 MLX4_IB_MIN_SQ_STRIDE = 6,
86 MLX4_IB_CACHE_LINE_SIZE = 64,
Jack Morgenstein83904132007-10-18 17:36:43 +020087};
88
Or Gerlitz3987a2d2012-01-17 13:39:07 +020089enum {
90 MLX4_RAW_QP_MTU = 7,
91 MLX4_RAW_QP_MSGMAX = 31,
92};
93
Moni Shoua297e0da2013-12-12 18:03:14 +020094#ifndef ETH_ALEN
95#define ETH_ALEN 6
96#endif
Moni Shoua297e0da2013-12-12 18:03:14 +020097
Roland Dreier225c7b12007-05-08 18:00:38 -070098static const __be32 mlx4_ib_opcode[] = {
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +030099 [IB_WR_SEND] = cpu_to_be32(MLX4_OPCODE_SEND),
100 [IB_WR_LSO] = cpu_to_be32(MLX4_OPCODE_LSO),
101 [IB_WR_SEND_WITH_IMM] = cpu_to_be32(MLX4_OPCODE_SEND_IMM),
102 [IB_WR_RDMA_WRITE] = cpu_to_be32(MLX4_OPCODE_RDMA_WRITE),
103 [IB_WR_RDMA_WRITE_WITH_IMM] = cpu_to_be32(MLX4_OPCODE_RDMA_WRITE_IMM),
104 [IB_WR_RDMA_READ] = cpu_to_be32(MLX4_OPCODE_RDMA_READ),
105 [IB_WR_ATOMIC_CMP_AND_SWP] = cpu_to_be32(MLX4_OPCODE_ATOMIC_CS),
106 [IB_WR_ATOMIC_FETCH_AND_ADD] = cpu_to_be32(MLX4_OPCODE_ATOMIC_FA),
107 [IB_WR_SEND_WITH_INV] = cpu_to_be32(MLX4_OPCODE_SEND_INVAL),
108 [IB_WR_LOCAL_INV] = cpu_to_be32(MLX4_OPCODE_LOCAL_INVAL),
109 [IB_WR_FAST_REG_MR] = cpu_to_be32(MLX4_OPCODE_FMR),
110 [IB_WR_MASKED_ATOMIC_CMP_AND_SWP] = cpu_to_be32(MLX4_OPCODE_MASKED_ATOMIC_CS),
111 [IB_WR_MASKED_ATOMIC_FETCH_AND_ADD] = cpu_to_be32(MLX4_OPCODE_MASKED_ATOMIC_FA),
Shani Michaeli6ff63e12013-02-06 16:19:15 +0000112 [IB_WR_BIND_MW] = cpu_to_be32(MLX4_OPCODE_BIND_MW),
Roland Dreier225c7b12007-05-08 18:00:38 -0700113};
114
115static struct mlx4_ib_sqp *to_msqp(struct mlx4_ib_qp *mqp)
116{
117 return container_of(mqp, struct mlx4_ib_sqp, qp);
118}
119
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000120static int is_tunnel_qp(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
Roland Dreier225c7b12007-05-08 18:00:38 -0700121{
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000122 if (!mlx4_is_master(dev->dev))
123 return 0;
124
Jack Morgenstein47605df2012-08-03 08:40:57 +0000125 return qp->mqp.qpn >= dev->dev->phys_caps.base_tunnel_sqpn &&
126 qp->mqp.qpn < dev->dev->phys_caps.base_tunnel_sqpn +
127 8 * MLX4_MFUNC_MAX;
Roland Dreier225c7b12007-05-08 18:00:38 -0700128}
129
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000130static int is_sqp(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
131{
Jack Morgenstein47605df2012-08-03 08:40:57 +0000132 int proxy_sqp = 0;
133 int real_sqp = 0;
134 int i;
135 /* PPF or Native -- real SQP */
136 real_sqp = ((mlx4_is_master(dev->dev) || !mlx4_is_mfunc(dev->dev)) &&
137 qp->mqp.qpn >= dev->dev->phys_caps.base_sqpn &&
138 qp->mqp.qpn <= dev->dev->phys_caps.base_sqpn + 3);
139 if (real_sqp)
140 return 1;
141 /* VF or PF -- proxy SQP */
142 if (mlx4_is_mfunc(dev->dev)) {
143 for (i = 0; i < dev->dev->caps.num_ports; i++) {
144 if (qp->mqp.qpn == dev->dev->caps.qp0_proxy[i] ||
145 qp->mqp.qpn == dev->dev->caps.qp1_proxy[i]) {
146 proxy_sqp = 1;
147 break;
148 }
149 }
150 }
151 return proxy_sqp;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000152}
153
154/* used for INIT/CLOSE port logic */
Roland Dreier225c7b12007-05-08 18:00:38 -0700155static int is_qp0(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
156{
Jack Morgenstein47605df2012-08-03 08:40:57 +0000157 int proxy_qp0 = 0;
158 int real_qp0 = 0;
159 int i;
160 /* PPF or Native -- real QP0 */
161 real_qp0 = ((mlx4_is_master(dev->dev) || !mlx4_is_mfunc(dev->dev)) &&
162 qp->mqp.qpn >= dev->dev->phys_caps.base_sqpn &&
163 qp->mqp.qpn <= dev->dev->phys_caps.base_sqpn + 1);
164 if (real_qp0)
165 return 1;
166 /* VF or PF -- proxy QP0 */
167 if (mlx4_is_mfunc(dev->dev)) {
168 for (i = 0; i < dev->dev->caps.num_ports; i++) {
169 if (qp->mqp.qpn == dev->dev->caps.qp0_proxy[i]) {
170 proxy_qp0 = 1;
171 break;
172 }
173 }
174 }
175 return proxy_qp0;
Roland Dreier225c7b12007-05-08 18:00:38 -0700176}
177
178static void *get_wqe(struct mlx4_ib_qp *qp, int offset)
179{
Roland Dreier1c69fc22008-02-06 21:07:54 -0800180 return mlx4_buf_offset(&qp->buf, offset);
Roland Dreier225c7b12007-05-08 18:00:38 -0700181}
182
183static void *get_recv_wqe(struct mlx4_ib_qp *qp, int n)
184{
185 return get_wqe(qp, qp->rq.offset + (n << qp->rq.wqe_shift));
186}
187
188static void *get_send_wqe(struct mlx4_ib_qp *qp, int n)
189{
190 return get_wqe(qp, qp->sq.offset + (n << qp->sq.wqe_shift));
191}
192
Roland Dreier0e6e7412007-06-18 08:13:48 -0700193/*
194 * Stamp a SQ WQE so that it is invalid if prefetched by marking the
Jack Morgensteinea54b102008-01-28 10:40:59 +0200195 * first four bytes of every 64 byte chunk with
196 * 0x7FFFFFF | (invalid_ownership_value << 31).
197 *
198 * When the max work request size is less than or equal to the WQE
199 * basic block size, as an optimization, we can stamp all WQEs with
200 * 0xffffffff, and skip the very first chunk of each WQE.
Roland Dreier0e6e7412007-06-18 08:13:48 -0700201 */
Jack Morgensteinea54b102008-01-28 10:40:59 +0200202static void stamp_send_wqe(struct mlx4_ib_qp *qp, int n, int size)
Roland Dreier0e6e7412007-06-18 08:13:48 -0700203{
Roland Dreierd2ae16d2008-04-16 21:01:07 -0700204 __be32 *wqe;
Roland Dreier0e6e7412007-06-18 08:13:48 -0700205 int i;
Jack Morgensteinea54b102008-01-28 10:40:59 +0200206 int s;
207 int ind;
208 void *buf;
209 __be32 stamp;
Eli Cohen9670e552008-07-14 23:48:44 -0700210 struct mlx4_wqe_ctrl_seg *ctrl;
Roland Dreier0e6e7412007-06-18 08:13:48 -0700211
Jack Morgensteinea54b102008-01-28 10:40:59 +0200212 if (qp->sq_max_wqes_per_wr > 1) {
Eli Cohen9670e552008-07-14 23:48:44 -0700213 s = roundup(size, 1U << qp->sq.wqe_shift);
Jack Morgensteinea54b102008-01-28 10:40:59 +0200214 for (i = 0; i < s; i += 64) {
215 ind = (i >> qp->sq.wqe_shift) + n;
216 stamp = ind & qp->sq.wqe_cnt ? cpu_to_be32(0x7fffffff) :
217 cpu_to_be32(0xffffffff);
218 buf = get_send_wqe(qp, ind & (qp->sq.wqe_cnt - 1));
219 wqe = buf + (i & ((1 << qp->sq.wqe_shift) - 1));
220 *wqe = stamp;
221 }
222 } else {
Eli Cohen9670e552008-07-14 23:48:44 -0700223 ctrl = buf = get_send_wqe(qp, n & (qp->sq.wqe_cnt - 1));
224 s = (ctrl->fence_size & 0x3f) << 4;
Jack Morgensteinea54b102008-01-28 10:40:59 +0200225 for (i = 64; i < s; i += 64) {
226 wqe = buf + i;
Roland Dreierd2ae16d2008-04-16 21:01:07 -0700227 *wqe = cpu_to_be32(0xffffffff);
Jack Morgensteinea54b102008-01-28 10:40:59 +0200228 }
229 }
230}
231
232static void post_nop_wqe(struct mlx4_ib_qp *qp, int n, int size)
233{
234 struct mlx4_wqe_ctrl_seg *ctrl;
235 struct mlx4_wqe_inline_seg *inl;
236 void *wqe;
237 int s;
238
239 ctrl = wqe = get_send_wqe(qp, n & (qp->sq.wqe_cnt - 1));
240 s = sizeof(struct mlx4_wqe_ctrl_seg);
241
242 if (qp->ibqp.qp_type == IB_QPT_UD) {
243 struct mlx4_wqe_datagram_seg *dgram = wqe + sizeof *ctrl;
244 struct mlx4_av *av = (struct mlx4_av *)dgram->av;
245 memset(dgram, 0, sizeof *dgram);
246 av->port_pd = cpu_to_be32((qp->port << 24) | to_mpd(qp->ibqp.pd)->pdn);
247 s += sizeof(struct mlx4_wqe_datagram_seg);
248 }
249
250 /* Pad the remainder of the WQE with an inline data segment. */
251 if (size > s) {
252 inl = wqe + s;
253 inl->byte_count = cpu_to_be32(1 << 31 | (size - s - sizeof *inl));
254 }
255 ctrl->srcrb_flags = 0;
256 ctrl->fence_size = size / 16;
257 /*
258 * Make sure descriptor is fully written before setting ownership bit
259 * (because HW can start executing as soon as we do).
260 */
261 wmb();
262
263 ctrl->owner_opcode = cpu_to_be32(MLX4_OPCODE_NOP | MLX4_WQE_CTRL_NEC) |
264 (n & qp->sq.wqe_cnt ? cpu_to_be32(1 << 31) : 0);
265
266 stamp_send_wqe(qp, n + qp->sq_spare_wqes, size);
267}
268
269/* Post NOP WQE to prevent wrap-around in the middle of WR */
270static inline unsigned pad_wraparound(struct mlx4_ib_qp *qp, int ind)
271{
272 unsigned s = qp->sq.wqe_cnt - (ind & (qp->sq.wqe_cnt - 1));
273 if (unlikely(s < qp->sq_max_wqes_per_wr)) {
274 post_nop_wqe(qp, ind, s << qp->sq.wqe_shift);
275 ind += s;
276 }
277 return ind;
Roland Dreier0e6e7412007-06-18 08:13:48 -0700278}
279
Roland Dreier225c7b12007-05-08 18:00:38 -0700280static void mlx4_ib_qp_event(struct mlx4_qp *qp, enum mlx4_event type)
281{
282 struct ib_event event;
283 struct ib_qp *ibqp = &to_mibqp(qp)->ibqp;
284
285 if (type == MLX4_EVENT_TYPE_PATH_MIG)
286 to_mibqp(qp)->port = to_mibqp(qp)->alt_port;
287
288 if (ibqp->event_handler) {
289 event.device = ibqp->device;
290 event.element.qp = ibqp;
291 switch (type) {
292 case MLX4_EVENT_TYPE_PATH_MIG:
293 event.event = IB_EVENT_PATH_MIG;
294 break;
295 case MLX4_EVENT_TYPE_COMM_EST:
296 event.event = IB_EVENT_COMM_EST;
297 break;
298 case MLX4_EVENT_TYPE_SQ_DRAINED:
299 event.event = IB_EVENT_SQ_DRAINED;
300 break;
301 case MLX4_EVENT_TYPE_SRQ_QP_LAST_WQE:
302 event.event = IB_EVENT_QP_LAST_WQE_REACHED;
303 break;
304 case MLX4_EVENT_TYPE_WQ_CATAS_ERROR:
305 event.event = IB_EVENT_QP_FATAL;
306 break;
307 case MLX4_EVENT_TYPE_PATH_MIG_FAILED:
308 event.event = IB_EVENT_PATH_MIG_ERR;
309 break;
310 case MLX4_EVENT_TYPE_WQ_INVAL_REQ_ERROR:
311 event.event = IB_EVENT_QP_REQ_ERR;
312 break;
313 case MLX4_EVENT_TYPE_WQ_ACCESS_ERROR:
314 event.event = IB_EVENT_QP_ACCESS_ERR;
315 break;
316 default:
Shlomo Pongratz987c8f82012-04-29 17:04:26 +0300317 pr_warn("Unexpected event type %d "
Roland Dreier225c7b12007-05-08 18:00:38 -0700318 "on QP %06x\n", type, qp->qpn);
319 return;
320 }
321
322 ibqp->event_handler(&event, ibqp->qp_context);
323 }
324}
325
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000326static int send_wqe_overhead(enum mlx4_ib_qp_type type, u32 flags)
Roland Dreier225c7b12007-05-08 18:00:38 -0700327{
328 /*
329 * UD WQEs must have a datagram segment.
330 * RC and UC WQEs might have a remote address segment.
331 * MLX WQEs need two extra inline data segments (for the UD
332 * header and space for the ICRC).
333 */
334 switch (type) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000335 case MLX4_IB_QPT_UD:
Roland Dreier225c7b12007-05-08 18:00:38 -0700336 return sizeof (struct mlx4_wqe_ctrl_seg) +
Eli Cohenb832be12008-04-16 21:09:27 -0700337 sizeof (struct mlx4_wqe_datagram_seg) +
Eli Cohen417608c2009-11-12 11:19:44 -0800338 ((flags & MLX4_IB_QP_LSO) ? MLX4_IB_LSO_HEADER_SPARE : 0);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000339 case MLX4_IB_QPT_PROXY_SMI_OWNER:
340 case MLX4_IB_QPT_PROXY_SMI:
341 case MLX4_IB_QPT_PROXY_GSI:
342 return sizeof (struct mlx4_wqe_ctrl_seg) +
343 sizeof (struct mlx4_wqe_datagram_seg) + 64;
344 case MLX4_IB_QPT_TUN_SMI_OWNER:
345 case MLX4_IB_QPT_TUN_GSI:
346 return sizeof (struct mlx4_wqe_ctrl_seg) +
347 sizeof (struct mlx4_wqe_datagram_seg);
348
349 case MLX4_IB_QPT_UC:
Roland Dreier225c7b12007-05-08 18:00:38 -0700350 return sizeof (struct mlx4_wqe_ctrl_seg) +
351 sizeof (struct mlx4_wqe_raddr_seg);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000352 case MLX4_IB_QPT_RC:
Roland Dreier225c7b12007-05-08 18:00:38 -0700353 return sizeof (struct mlx4_wqe_ctrl_seg) +
354 sizeof (struct mlx4_wqe_atomic_seg) +
355 sizeof (struct mlx4_wqe_raddr_seg);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000356 case MLX4_IB_QPT_SMI:
357 case MLX4_IB_QPT_GSI:
Roland Dreier225c7b12007-05-08 18:00:38 -0700358 return sizeof (struct mlx4_wqe_ctrl_seg) +
359 ALIGN(MLX4_IB_UD_HEADER_SIZE +
Roland Dreiere61ef242007-06-18 09:23:47 -0700360 DIV_ROUND_UP(MLX4_IB_UD_HEADER_SIZE,
361 MLX4_INLINE_ALIGN) *
Roland Dreier225c7b12007-05-08 18:00:38 -0700362 sizeof (struct mlx4_wqe_inline_seg),
363 sizeof (struct mlx4_wqe_data_seg)) +
364 ALIGN(4 +
365 sizeof (struct mlx4_wqe_inline_seg),
366 sizeof (struct mlx4_wqe_data_seg));
367 default:
368 return sizeof (struct mlx4_wqe_ctrl_seg);
369 }
370}
371
Eli Cohen24463042007-05-17 10:32:41 +0300372static int set_rq_size(struct mlx4_ib_dev *dev, struct ib_qp_cap *cap,
Sean Hefty0a1405d2011-06-02 11:32:15 -0700373 int is_user, int has_rq, struct mlx4_ib_qp *qp)
Roland Dreier225c7b12007-05-08 18:00:38 -0700374{
Eli Cohen24463042007-05-17 10:32:41 +0300375 /* Sanity check RQ size before proceeding */
Sagi Grimbergfc2d0042012-05-24 16:08:08 +0300376 if (cap->max_recv_wr > dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE ||
377 cap->max_recv_sge > min(dev->dev->caps.max_sq_sg, dev->dev->caps.max_rq_sg))
Eli Cohen24463042007-05-17 10:32:41 +0300378 return -EINVAL;
379
Sean Hefty0a1405d2011-06-02 11:32:15 -0700380 if (!has_rq) {
Roland Dreiera4cd7ed2007-06-07 23:24:39 -0700381 if (cap->max_recv_wr)
382 return -EINVAL;
Eli Cohen24463042007-05-17 10:32:41 +0300383
Roland Dreier0e6e7412007-06-18 08:13:48 -0700384 qp->rq.wqe_cnt = qp->rq.max_gs = 0;
Roland Dreiera4cd7ed2007-06-07 23:24:39 -0700385 } else {
386 /* HW requires >= 1 RQ entry with >= 1 gather entry */
387 if (is_user && (!cap->max_recv_wr || !cap->max_recv_sge))
388 return -EINVAL;
389
Roland Dreier0e6e7412007-06-18 08:13:48 -0700390 qp->rq.wqe_cnt = roundup_pow_of_two(max(1U, cap->max_recv_wr));
Roland Dreier42c059ea2007-06-12 10:52:02 -0700391 qp->rq.max_gs = roundup_pow_of_two(max(1U, cap->max_recv_sge));
Roland Dreiera4cd7ed2007-06-07 23:24:39 -0700392 qp->rq.wqe_shift = ilog2(qp->rq.max_gs * sizeof (struct mlx4_wqe_data_seg));
393 }
Eli Cohen24463042007-05-17 10:32:41 +0300394
Sagi Grimbergfc2d0042012-05-24 16:08:08 +0300395 /* leave userspace return values as they were, so as not to break ABI */
396 if (is_user) {
397 cap->max_recv_wr = qp->rq.max_post = qp->rq.wqe_cnt;
398 cap->max_recv_sge = qp->rq.max_gs;
399 } else {
400 cap->max_recv_wr = qp->rq.max_post =
401 min(dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE, qp->rq.wqe_cnt);
402 cap->max_recv_sge = min(qp->rq.max_gs,
403 min(dev->dev->caps.max_sq_sg,
404 dev->dev->caps.max_rq_sg));
405 }
Eli Cohen24463042007-05-17 10:32:41 +0300406
407 return 0;
408}
409
410static int set_kernel_sq_size(struct mlx4_ib_dev *dev, struct ib_qp_cap *cap,
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000411 enum mlx4_ib_qp_type type, struct mlx4_ib_qp *qp)
Eli Cohen24463042007-05-17 10:32:41 +0300412{
Jack Morgensteinea54b102008-01-28 10:40:59 +0200413 int s;
414
Eli Cohen24463042007-05-17 10:32:41 +0300415 /* Sanity check SQ size before proceeding */
Sagi Grimbergfc2d0042012-05-24 16:08:08 +0300416 if (cap->max_send_wr > (dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE) ||
417 cap->max_send_sge > min(dev->dev->caps.max_sq_sg, dev->dev->caps.max_rq_sg) ||
Eli Cohenb832be12008-04-16 21:09:27 -0700418 cap->max_inline_data + send_wqe_overhead(type, qp->flags) +
Roland Dreier225c7b12007-05-08 18:00:38 -0700419 sizeof (struct mlx4_wqe_inline_seg) > dev->dev->caps.max_sq_desc_sz)
420 return -EINVAL;
421
422 /*
423 * For MLX transport we need 2 extra S/G entries:
424 * one for the header and one for the checksum at the end
425 */
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000426 if ((type == MLX4_IB_QPT_SMI || type == MLX4_IB_QPT_GSI ||
427 type & (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER)) &&
Roland Dreier225c7b12007-05-08 18:00:38 -0700428 cap->max_send_sge + 2 > dev->dev->caps.max_sq_sg)
429 return -EINVAL;
430
Jack Morgensteinea54b102008-01-28 10:40:59 +0200431 s = max(cap->max_send_sge * sizeof (struct mlx4_wqe_data_seg),
432 cap->max_inline_data + sizeof (struct mlx4_wqe_inline_seg)) +
Eli Cohenb832be12008-04-16 21:09:27 -0700433 send_wqe_overhead(type, qp->flags);
Roland Dreier225c7b12007-05-08 18:00:38 -0700434
Roland Dreiercd155c12008-05-20 14:00:02 -0700435 if (s > dev->dev->caps.max_sq_desc_sz)
436 return -EINVAL;
437
Roland Dreier0e6e7412007-06-18 08:13:48 -0700438 /*
Jack Morgensteinea54b102008-01-28 10:40:59 +0200439 * Hermon supports shrinking WQEs, such that a single work
440 * request can include multiple units of 1 << wqe_shift. This
441 * way, work requests can differ in size, and do not have to
442 * be a power of 2 in size, saving memory and speeding up send
443 * WR posting. Unfortunately, if we do this then the
444 * wqe_index field in CQEs can't be used to look up the WR ID
445 * anymore, so we do this only if selective signaling is off.
446 *
447 * Further, on 32-bit platforms, we can't use vmap() to make
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200448 * the QP buffer virtually contiguous. Thus we have to use
Jack Morgensteinea54b102008-01-28 10:40:59 +0200449 * constant-sized WRs to make sure a WR is always fully within
450 * a single page-sized chunk.
451 *
452 * Finally, we use NOP work requests to pad the end of the
453 * work queue, to avoid wrap-around in the middle of WR. We
454 * set NEC bit to avoid getting completions with error for
455 * these NOP WRs, but since NEC is only supported starting
456 * with firmware 2.2.232, we use constant-sized WRs for older
457 * firmware.
458 *
459 * And, since MLX QPs only support SEND, we use constant-sized
460 * WRs in this case.
461 *
462 * We look for the smallest value of wqe_shift such that the
463 * resulting number of wqes does not exceed device
464 * capabilities.
465 *
466 * We set WQE size to at least 64 bytes, this way stamping
467 * invalidates each WQE.
Roland Dreier0e6e7412007-06-18 08:13:48 -0700468 */
Jack Morgensteinea54b102008-01-28 10:40:59 +0200469 if (dev->dev->caps.fw_ver >= MLX4_FW_VER_WQE_CTRL_NEC &&
470 qp->sq_signal_bits && BITS_PER_LONG == 64 &&
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000471 type != MLX4_IB_QPT_SMI && type != MLX4_IB_QPT_GSI &&
472 !(type & (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_PROXY_SMI |
473 MLX4_IB_QPT_PROXY_GSI | MLX4_IB_QPT_TUN_SMI_OWNER)))
Jack Morgensteinea54b102008-01-28 10:40:59 +0200474 qp->sq.wqe_shift = ilog2(64);
475 else
476 qp->sq.wqe_shift = ilog2(roundup_pow_of_two(s));
477
478 for (;;) {
Jack Morgensteinea54b102008-01-28 10:40:59 +0200479 qp->sq_max_wqes_per_wr = DIV_ROUND_UP(s, 1U << qp->sq.wqe_shift);
480
481 /*
482 * We need to leave 2 KB + 1 WR of headroom in the SQ to
483 * allow HW to prefetch.
484 */
485 qp->sq_spare_wqes = (2048 >> qp->sq.wqe_shift) + qp->sq_max_wqes_per_wr;
486 qp->sq.wqe_cnt = roundup_pow_of_two(cap->max_send_wr *
487 qp->sq_max_wqes_per_wr +
488 qp->sq_spare_wqes);
489
490 if (qp->sq.wqe_cnt <= dev->dev->caps.max_wqes)
491 break;
492
493 if (qp->sq_max_wqes_per_wr <= 1)
494 return -EINVAL;
495
496 ++qp->sq.wqe_shift;
497 }
498
Roland Dreiercd155c12008-05-20 14:00:02 -0700499 qp->sq.max_gs = (min(dev->dev->caps.max_sq_desc_sz,
500 (qp->sq_max_wqes_per_wr << qp->sq.wqe_shift)) -
Eli Cohenb832be12008-04-16 21:09:27 -0700501 send_wqe_overhead(type, qp->flags)) /
502 sizeof (struct mlx4_wqe_data_seg);
Roland Dreier0e6e7412007-06-18 08:13:48 -0700503
504 qp->buf_size = (qp->rq.wqe_cnt << qp->rq.wqe_shift) +
505 (qp->sq.wqe_cnt << qp->sq.wqe_shift);
Roland Dreier225c7b12007-05-08 18:00:38 -0700506 if (qp->rq.wqe_shift > qp->sq.wqe_shift) {
507 qp->rq.offset = 0;
Roland Dreier0e6e7412007-06-18 08:13:48 -0700508 qp->sq.offset = qp->rq.wqe_cnt << qp->rq.wqe_shift;
Roland Dreier225c7b12007-05-08 18:00:38 -0700509 } else {
Roland Dreier0e6e7412007-06-18 08:13:48 -0700510 qp->rq.offset = qp->sq.wqe_cnt << qp->sq.wqe_shift;
Roland Dreier225c7b12007-05-08 18:00:38 -0700511 qp->sq.offset = 0;
512 }
513
Jack Morgensteinea54b102008-01-28 10:40:59 +0200514 cap->max_send_wr = qp->sq.max_post =
515 (qp->sq.wqe_cnt - qp->sq_spare_wqes) / qp->sq_max_wqes_per_wr;
Roland Dreiercd155c12008-05-20 14:00:02 -0700516 cap->max_send_sge = min(qp->sq.max_gs,
517 min(dev->dev->caps.max_sq_sg,
518 dev->dev->caps.max_rq_sg));
Roland Dreier54e95f82007-06-18 08:13:53 -0700519 /* We don't support inline sends for kernel QPs (yet) */
520 cap->max_inline_data = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -0700521
522 return 0;
523}
524
Jack Morgenstein83904132007-10-18 17:36:43 +0200525static int set_user_sq_size(struct mlx4_ib_dev *dev,
526 struct mlx4_ib_qp *qp,
Eli Cohen24463042007-05-17 10:32:41 +0300527 struct mlx4_ib_create_qp *ucmd)
528{
Jack Morgenstein83904132007-10-18 17:36:43 +0200529 /* Sanity check SQ size before proceeding */
530 if ((1 << ucmd->log_sq_bb_count) > dev->dev->caps.max_wqes ||
531 ucmd->log_sq_stride >
532 ilog2(roundup_pow_of_two(dev->dev->caps.max_sq_desc_sz)) ||
533 ucmd->log_sq_stride < MLX4_IB_MIN_SQ_STRIDE)
534 return -EINVAL;
535
Roland Dreier0e6e7412007-06-18 08:13:48 -0700536 qp->sq.wqe_cnt = 1 << ucmd->log_sq_bb_count;
Eli Cohen24463042007-05-17 10:32:41 +0300537 qp->sq.wqe_shift = ucmd->log_sq_stride;
538
Roland Dreier0e6e7412007-06-18 08:13:48 -0700539 qp->buf_size = (qp->rq.wqe_cnt << qp->rq.wqe_shift) +
540 (qp->sq.wqe_cnt << qp->sq.wqe_shift);
Eli Cohen24463042007-05-17 10:32:41 +0300541
542 return 0;
543}
544
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000545static int alloc_proxy_bufs(struct ib_device *dev, struct mlx4_ib_qp *qp)
546{
547 int i;
548
549 qp->sqp_proxy_rcv =
550 kmalloc(sizeof (struct mlx4_ib_buf) * qp->rq.wqe_cnt,
551 GFP_KERNEL);
552 if (!qp->sqp_proxy_rcv)
553 return -ENOMEM;
554 for (i = 0; i < qp->rq.wqe_cnt; i++) {
555 qp->sqp_proxy_rcv[i].addr =
556 kmalloc(sizeof (struct mlx4_ib_proxy_sqp_hdr),
557 GFP_KERNEL);
558 if (!qp->sqp_proxy_rcv[i].addr)
559 goto err;
560 qp->sqp_proxy_rcv[i].map =
561 ib_dma_map_single(dev, qp->sqp_proxy_rcv[i].addr,
562 sizeof (struct mlx4_ib_proxy_sqp_hdr),
563 DMA_FROM_DEVICE);
564 }
565 return 0;
566
567err:
568 while (i > 0) {
569 --i;
570 ib_dma_unmap_single(dev, qp->sqp_proxy_rcv[i].map,
571 sizeof (struct mlx4_ib_proxy_sqp_hdr),
572 DMA_FROM_DEVICE);
573 kfree(qp->sqp_proxy_rcv[i].addr);
574 }
575 kfree(qp->sqp_proxy_rcv);
576 qp->sqp_proxy_rcv = NULL;
577 return -ENOMEM;
578}
579
580static void free_proxy_bufs(struct ib_device *dev, struct mlx4_ib_qp *qp)
581{
582 int i;
583
584 for (i = 0; i < qp->rq.wqe_cnt; i++) {
585 ib_dma_unmap_single(dev, qp->sqp_proxy_rcv[i].map,
586 sizeof (struct mlx4_ib_proxy_sqp_hdr),
587 DMA_FROM_DEVICE);
588 kfree(qp->sqp_proxy_rcv[i].addr);
589 }
590 kfree(qp->sqp_proxy_rcv);
591}
592
Sean Hefty0a1405d2011-06-02 11:32:15 -0700593static int qp_has_rq(struct ib_qp_init_attr *attr)
594{
595 if (attr->qp_type == IB_QPT_XRC_INI || attr->qp_type == IB_QPT_XRC_TGT)
596 return 0;
597
598 return !attr->srq;
599}
600
Jack Morgenstein99ec41d2014-05-29 16:31:03 +0300601static int qp0_enabled_vf(struct mlx4_dev *dev, int qpn)
602{
603 int i;
604 for (i = 0; i < dev->caps.num_ports; i++) {
605 if (qpn == dev->caps.qp0_proxy[i])
606 return !!dev->caps.qp0_qkey[i];
607 }
608 return 0;
609}
610
Roland Dreier225c7b12007-05-08 18:00:38 -0700611static int create_qp_common(struct mlx4_ib_dev *dev, struct ib_pd *pd,
612 struct ib_qp_init_attr *init_attr,
Jiri Kosina40f22872014-05-11 15:15:12 +0300613 struct ib_udata *udata, int sqpn, struct mlx4_ib_qp **caller_qp,
614 gfp_t gfp)
Roland Dreier225c7b12007-05-08 18:00:38 -0700615{
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700616 int qpn;
Roland Dreier225c7b12007-05-08 18:00:38 -0700617 int err;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000618 struct mlx4_ib_sqp *sqp;
619 struct mlx4_ib_qp *qp;
620 enum mlx4_ib_qp_type qp_type = (enum mlx4_ib_qp_type) init_attr->qp_type;
621
622 /* When tunneling special qps, we use a plain UD qp */
623 if (sqpn) {
624 if (mlx4_is_mfunc(dev->dev) &&
625 (!mlx4_is_master(dev->dev) ||
626 !(init_attr->create_flags & MLX4_IB_SRIOV_SQP))) {
627 if (init_attr->qp_type == IB_QPT_GSI)
628 qp_type = MLX4_IB_QPT_PROXY_GSI;
Jack Morgenstein99ec41d2014-05-29 16:31:03 +0300629 else {
630 if (mlx4_is_master(dev->dev) ||
631 qp0_enabled_vf(dev->dev, sqpn))
632 qp_type = MLX4_IB_QPT_PROXY_SMI_OWNER;
633 else
634 qp_type = MLX4_IB_QPT_PROXY_SMI;
635 }
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000636 }
637 qpn = sqpn;
638 /* add extra sg entry for tunneling */
639 init_attr->cap.max_recv_sge++;
640 } else if (init_attr->create_flags & MLX4_IB_SRIOV_TUNNEL_QP) {
641 struct mlx4_ib_qp_tunnel_init_attr *tnl_init =
642 container_of(init_attr,
643 struct mlx4_ib_qp_tunnel_init_attr, init_attr);
644 if ((tnl_init->proxy_qp_type != IB_QPT_SMI &&
645 tnl_init->proxy_qp_type != IB_QPT_GSI) ||
646 !mlx4_is_master(dev->dev))
647 return -EINVAL;
648 if (tnl_init->proxy_qp_type == IB_QPT_GSI)
649 qp_type = MLX4_IB_QPT_TUN_GSI;
Jack Morgenstein99ec41d2014-05-29 16:31:03 +0300650 else if (tnl_init->slave == mlx4_master_func_num(dev->dev) ||
651 mlx4_vf_smi_enabled(dev->dev, tnl_init->slave,
652 tnl_init->port))
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000653 qp_type = MLX4_IB_QPT_TUN_SMI_OWNER;
654 else
655 qp_type = MLX4_IB_QPT_TUN_SMI;
Jack Morgenstein47605df2012-08-03 08:40:57 +0000656 /* we are definitely in the PPF here, since we are creating
657 * tunnel QPs. base_tunnel_sqpn is therefore valid. */
658 qpn = dev->dev->phys_caps.base_tunnel_sqpn + 8 * tnl_init->slave
659 + tnl_init->proxy_qp_type * 2 + tnl_init->port - 1;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000660 sqpn = qpn;
661 }
662
663 if (!*caller_qp) {
664 if (qp_type == MLX4_IB_QPT_SMI || qp_type == MLX4_IB_QPT_GSI ||
665 (qp_type & (MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_SMI_OWNER |
666 MLX4_IB_QPT_PROXY_GSI | MLX4_IB_QPT_TUN_SMI_OWNER))) {
Jiri Kosina6fcd8d02014-06-09 16:36:33 +0200667 sqp = kzalloc(sizeof (struct mlx4_ib_sqp), gfp);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000668 if (!sqp)
669 return -ENOMEM;
670 qp = &sqp->qp;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200671 qp->pri.vid = 0xFFFF;
672 qp->alt.vid = 0xFFFF;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000673 } else {
Jiri Kosina6fcd8d02014-06-09 16:36:33 +0200674 qp = kzalloc(sizeof (struct mlx4_ib_qp), gfp);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000675 if (!qp)
676 return -ENOMEM;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200677 qp->pri.vid = 0xFFFF;
678 qp->alt.vid = 0xFFFF;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000679 }
680 } else
681 qp = *caller_qp;
682
683 qp->mlx4_ib_qp_type = qp_type;
Roland Dreier225c7b12007-05-08 18:00:38 -0700684
685 mutex_init(&qp->mutex);
686 spin_lock_init(&qp->sq.lock);
687 spin_lock_init(&qp->rq.lock);
Eli Cohenfa417f72010-10-24 21:08:52 -0700688 INIT_LIST_HEAD(&qp->gid_list);
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +0000689 INIT_LIST_HEAD(&qp->steering_rules);
Roland Dreier225c7b12007-05-08 18:00:38 -0700690
691 qp->state = IB_QPS_RESET;
Jack Morgensteinea54b102008-01-28 10:40:59 +0200692 if (init_attr->sq_sig_type == IB_SIGNAL_ALL_WR)
693 qp->sq_signal_bits = cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
Roland Dreier225c7b12007-05-08 18:00:38 -0700694
Sean Hefty0a1405d2011-06-02 11:32:15 -0700695 err = set_rq_size(dev, &init_attr->cap, !!pd->uobject, qp_has_rq(init_attr), qp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700696 if (err)
697 goto err;
698
699 if (pd->uobject) {
700 struct mlx4_ib_create_qp ucmd;
701
702 if (ib_copy_from_udata(&ucmd, udata, sizeof ucmd)) {
703 err = -EFAULT;
704 goto err;
705 }
706
Roland Dreier0e6e7412007-06-18 08:13:48 -0700707 qp->sq_no_prefetch = ucmd.sq_no_prefetch;
708
Jack Morgenstein83904132007-10-18 17:36:43 +0200709 err = set_user_sq_size(dev, qp, &ucmd);
Eli Cohen24463042007-05-17 10:32:41 +0300710 if (err)
711 goto err;
712
Roland Dreier225c7b12007-05-08 18:00:38 -0700713 qp->umem = ib_umem_get(pd->uobject->context, ucmd.buf_addr,
Arthur Kepnercb9fbc52008-04-29 01:00:34 -0700714 qp->buf_size, 0, 0);
Roland Dreier225c7b12007-05-08 18:00:38 -0700715 if (IS_ERR(qp->umem)) {
716 err = PTR_ERR(qp->umem);
717 goto err;
718 }
719
720 err = mlx4_mtt_init(dev->dev, ib_umem_page_count(qp->umem),
721 ilog2(qp->umem->page_size), &qp->mtt);
722 if (err)
723 goto err_buf;
724
725 err = mlx4_ib_umem_write_mtt(dev, &qp->mtt, qp->umem);
726 if (err)
727 goto err_mtt;
728
Sean Hefty0a1405d2011-06-02 11:32:15 -0700729 if (qp_has_rq(init_attr)) {
Roland Dreier02d89b82007-05-23 15:16:08 -0700730 err = mlx4_ib_db_map_user(to_mucontext(pd->uobject->context),
731 ucmd.db_addr, &qp->db);
732 if (err)
733 goto err_mtt;
734 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700735 } else {
Roland Dreier0e6e7412007-06-18 08:13:48 -0700736 qp->sq_no_prefetch = 0;
737
Ron Livne521e5752008-07-14 23:48:48 -0700738 if (init_attr->create_flags & IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK)
739 qp->flags |= MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK;
740
Eli Cohenb832be12008-04-16 21:09:27 -0700741 if (init_attr->create_flags & IB_QP_CREATE_IPOIB_UD_LSO)
742 qp->flags |= MLX4_IB_QP_LSO;
743
Matan Barakc1c98502013-11-07 15:25:17 +0200744 if (init_attr->create_flags & IB_QP_CREATE_NETIF_QP) {
745 if (dev->steering_support ==
746 MLX4_STEERING_MODE_DEVICE_MANAGED)
747 qp->flags |= MLX4_IB_QP_NETIF;
748 else
749 goto err;
750 }
751
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000752 err = set_kernel_sq_size(dev, &init_attr->cap, qp_type, qp);
Eli Cohen24463042007-05-17 10:32:41 +0300753 if (err)
754 goto err;
755
Sean Hefty0a1405d2011-06-02 11:32:15 -0700756 if (qp_has_rq(init_attr)) {
Jiri Kosina40f22872014-05-11 15:15:12 +0300757 err = mlx4_db_alloc(dev->dev, &qp->db, 0, gfp);
Roland Dreier02d89b82007-05-23 15:16:08 -0700758 if (err)
759 goto err;
Roland Dreier225c7b12007-05-08 18:00:38 -0700760
Roland Dreier02d89b82007-05-23 15:16:08 -0700761 *qp->db.db = 0;
762 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700763
Jiri Kosina40f22872014-05-11 15:15:12 +0300764 if (mlx4_buf_alloc(dev->dev, qp->buf_size, PAGE_SIZE * 2, &qp->buf, gfp)) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700765 err = -ENOMEM;
766 goto err_db;
767 }
768
769 err = mlx4_mtt_init(dev->dev, qp->buf.npages, qp->buf.page_shift,
770 &qp->mtt);
771 if (err)
772 goto err_buf;
773
Jiri Kosina40f22872014-05-11 15:15:12 +0300774 err = mlx4_buf_write_mtt(dev->dev, &qp->mtt, &qp->buf, gfp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700775 if (err)
776 goto err_mtt;
777
Jiri Kosina40f22872014-05-11 15:15:12 +0300778 qp->sq.wrid = kmalloc(qp->sq.wqe_cnt * sizeof (u64), gfp);
779 qp->rq.wrid = kmalloc(qp->rq.wqe_cnt * sizeof (u64), gfp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700780 if (!qp->sq.wrid || !qp->rq.wrid) {
781 err = -ENOMEM;
782 goto err_wrid;
783 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700784 }
785
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700786 if (sqpn) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000787 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
788 MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI)) {
789 if (alloc_proxy_bufs(pd->device, qp)) {
790 err = -ENOMEM;
791 goto err_wrid;
792 }
793 }
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700794 } else {
Eugenia Emantayevddae0342014-12-11 10:57:54 +0200795 /* Raw packet QPNs may not have bits 6,7 set in their qp_num;
796 * otherwise, the WQE BlueFlame setup flow wrongly causes
797 * VLAN insertion. */
Or Gerlitz3987a2d2012-01-17 13:39:07 +0200798 if (init_attr->qp_type == IB_QPT_RAW_PACKET)
Eugenia Emantayevddae0342014-12-11 10:57:54 +0200799 err = mlx4_qp_reserve_range(dev->dev, 1, 1, &qpn,
Matan Barakd57febe2014-12-11 10:57:57 +0200800 (init_attr->cap.max_send_wr ?
801 MLX4_RESERVE_ETH_BF_QP : 0) |
802 (init_attr->cap.max_recv_wr ?
803 MLX4_RESERVE_A0_QP : 0));
Or Gerlitz3987a2d2012-01-17 13:39:07 +0200804 else
Matan Barakc1c98502013-11-07 15:25:17 +0200805 if (qp->flags & MLX4_IB_QP_NETIF)
806 err = mlx4_ib_steer_qp_alloc(dev, 1, &qpn);
807 else
808 err = mlx4_qp_reserve_range(dev->dev, 1, 1,
Eugenia Emantayevddae0342014-12-11 10:57:54 +0200809 &qpn, 0);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700810 if (err)
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000811 goto err_proxy;
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700812 }
813
Jiri Kosina40f22872014-05-11 15:15:12 +0300814 err = mlx4_qp_alloc(dev->dev, qpn, &qp->mqp, gfp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700815 if (err)
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700816 goto err_qpn;
Roland Dreier225c7b12007-05-08 18:00:38 -0700817
Sean Hefty0a1405d2011-06-02 11:32:15 -0700818 if (init_attr->qp_type == IB_QPT_XRC_TGT)
819 qp->mqp.qpn |= (1 << 23);
820
Roland Dreier225c7b12007-05-08 18:00:38 -0700821 /*
822 * Hardware wants QPN written in big-endian order (after
823 * shifting) for send doorbell. Precompute this value to save
824 * a little bit when posting sends.
825 */
826 qp->doorbell_qpn = swab32(qp->mqp.qpn << 8);
827
Roland Dreier225c7b12007-05-08 18:00:38 -0700828 qp->mqp.event = mlx4_ib_qp_event;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000829 if (!*caller_qp)
830 *caller_qp = qp;
Roland Dreier225c7b12007-05-08 18:00:38 -0700831 return 0;
832
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700833err_qpn:
Matan Barakc1c98502013-11-07 15:25:17 +0200834 if (!sqpn) {
835 if (qp->flags & MLX4_IB_QP_NETIF)
836 mlx4_ib_steer_qp_free(dev, qpn, 1);
837 else
838 mlx4_qp_release_range(dev->dev, qpn, 1);
839 }
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000840err_proxy:
841 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI)
842 free_proxy_bufs(pd->device, qp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700843err_wrid:
Roland Dreier23f1b382007-07-20 21:19:43 -0700844 if (pd->uobject) {
Sean Hefty0a1405d2011-06-02 11:32:15 -0700845 if (qp_has_rq(init_attr))
846 mlx4_ib_db_unmap_user(to_mucontext(pd->uobject->context), &qp->db);
Roland Dreier23f1b382007-07-20 21:19:43 -0700847 } else {
Roland Dreier225c7b12007-05-08 18:00:38 -0700848 kfree(qp->sq.wrid);
849 kfree(qp->rq.wrid);
850 }
851
852err_mtt:
853 mlx4_mtt_cleanup(dev->dev, &qp->mtt);
854
855err_buf:
856 if (pd->uobject)
857 ib_umem_release(qp->umem);
858 else
859 mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
860
861err_db:
Sean Hefty0a1405d2011-06-02 11:32:15 -0700862 if (!pd->uobject && qp_has_rq(init_attr))
Yevgeny Petrilin62968832008-04-23 11:55:45 -0700863 mlx4_db_free(dev->dev, &qp->db);
Roland Dreier225c7b12007-05-08 18:00:38 -0700864
865err:
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000866 if (!*caller_qp)
867 kfree(qp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700868 return err;
869}
870
871static enum mlx4_qp_state to_mlx4_state(enum ib_qp_state state)
872{
873 switch (state) {
874 case IB_QPS_RESET: return MLX4_QP_STATE_RST;
875 case IB_QPS_INIT: return MLX4_QP_STATE_INIT;
876 case IB_QPS_RTR: return MLX4_QP_STATE_RTR;
877 case IB_QPS_RTS: return MLX4_QP_STATE_RTS;
878 case IB_QPS_SQD: return MLX4_QP_STATE_SQD;
879 case IB_QPS_SQE: return MLX4_QP_STATE_SQER;
880 case IB_QPS_ERR: return MLX4_QP_STATE_ERR;
881 default: return -1;
882 }
883}
884
885static void mlx4_ib_lock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
Roland Dreier338a8fa2009-09-05 20:24:49 -0700886 __acquires(&send_cq->lock) __acquires(&recv_cq->lock)
Roland Dreier225c7b12007-05-08 18:00:38 -0700887{
Roland Dreier338a8fa2009-09-05 20:24:49 -0700888 if (send_cq == recv_cq) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700889 spin_lock_irq(&send_cq->lock);
Roland Dreier338a8fa2009-09-05 20:24:49 -0700890 __acquire(&recv_cq->lock);
891 } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700892 spin_lock_irq(&send_cq->lock);
893 spin_lock_nested(&recv_cq->lock, SINGLE_DEPTH_NESTING);
894 } else {
895 spin_lock_irq(&recv_cq->lock);
896 spin_lock_nested(&send_cq->lock, SINGLE_DEPTH_NESTING);
897 }
898}
899
900static void mlx4_ib_unlock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
Roland Dreier338a8fa2009-09-05 20:24:49 -0700901 __releases(&send_cq->lock) __releases(&recv_cq->lock)
Roland Dreier225c7b12007-05-08 18:00:38 -0700902{
Roland Dreier338a8fa2009-09-05 20:24:49 -0700903 if (send_cq == recv_cq) {
904 __release(&recv_cq->lock);
Roland Dreier225c7b12007-05-08 18:00:38 -0700905 spin_unlock_irq(&send_cq->lock);
Roland Dreier338a8fa2009-09-05 20:24:49 -0700906 } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700907 spin_unlock(&recv_cq->lock);
908 spin_unlock_irq(&send_cq->lock);
909 } else {
910 spin_unlock(&send_cq->lock);
911 spin_unlock_irq(&recv_cq->lock);
912 }
913}
914
Eli Cohenfa417f72010-10-24 21:08:52 -0700915static void del_gid_entries(struct mlx4_ib_qp *qp)
916{
917 struct mlx4_ib_gid_entry *ge, *tmp;
918
919 list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
920 list_del(&ge->list);
921 kfree(ge);
922 }
923}
924
Sean Hefty0a1405d2011-06-02 11:32:15 -0700925static struct mlx4_ib_pd *get_pd(struct mlx4_ib_qp *qp)
926{
927 if (qp->ibqp.qp_type == IB_QPT_XRC_TGT)
928 return to_mpd(to_mxrcd(qp->ibqp.xrcd)->pd);
929 else
930 return to_mpd(qp->ibqp.pd);
931}
932
933static void get_cqs(struct mlx4_ib_qp *qp,
934 struct mlx4_ib_cq **send_cq, struct mlx4_ib_cq **recv_cq)
935{
936 switch (qp->ibqp.qp_type) {
937 case IB_QPT_XRC_TGT:
938 *send_cq = to_mcq(to_mxrcd(qp->ibqp.xrcd)->cq);
939 *recv_cq = *send_cq;
940 break;
941 case IB_QPT_XRC_INI:
942 *send_cq = to_mcq(qp->ibqp.send_cq);
943 *recv_cq = *send_cq;
944 break;
945 default:
946 *send_cq = to_mcq(qp->ibqp.send_cq);
947 *recv_cq = to_mcq(qp->ibqp.recv_cq);
948 break;
949 }
950}
951
Roland Dreier225c7b12007-05-08 18:00:38 -0700952static void destroy_qp_common(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp,
953 int is_user)
954{
955 struct mlx4_ib_cq *send_cq, *recv_cq;
956
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200957 if (qp->state != IB_QPS_RESET) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700958 if (mlx4_qp_modify(dev->dev, NULL, to_mlx4_state(qp->state),
959 MLX4_QP_STATE_RST, NULL, 0, 0, &qp->mqp))
Shlomo Pongratz987c8f82012-04-29 17:04:26 +0300960 pr_warn("modify QP %06x to RESET failed.\n",
Roland Dreier225c7b12007-05-08 18:00:38 -0700961 qp->mqp.qpn);
Jack Morgenstein25476b02014-09-11 14:11:20 +0300962 if (qp->pri.smac || (!qp->pri.smac && qp->pri.smac_port)) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200963 mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
964 qp->pri.smac = 0;
Jack Morgenstein25476b02014-09-11 14:11:20 +0300965 qp->pri.smac_port = 0;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200966 }
967 if (qp->alt.smac) {
968 mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
969 qp->alt.smac = 0;
970 }
971 if (qp->pri.vid < 0x1000) {
972 mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port, qp->pri.vid);
973 qp->pri.vid = 0xFFFF;
974 qp->pri.candidate_vid = 0xFFFF;
975 qp->pri.update_vid = 0;
976 }
977 if (qp->alt.vid < 0x1000) {
978 mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port, qp->alt.vid);
979 qp->alt.vid = 0xFFFF;
980 qp->alt.candidate_vid = 0xFFFF;
981 qp->alt.update_vid = 0;
982 }
983 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700984
Sean Hefty0a1405d2011-06-02 11:32:15 -0700985 get_cqs(qp, &send_cq, &recv_cq);
Roland Dreier225c7b12007-05-08 18:00:38 -0700986
987 mlx4_ib_lock_cqs(send_cq, recv_cq);
988
989 if (!is_user) {
990 __mlx4_ib_cq_clean(recv_cq, qp->mqp.qpn,
991 qp->ibqp.srq ? to_msrq(qp->ibqp.srq): NULL);
992 if (send_cq != recv_cq)
993 __mlx4_ib_cq_clean(send_cq, qp->mqp.qpn, NULL);
994 }
995
996 mlx4_qp_remove(dev->dev, &qp->mqp);
997
998 mlx4_ib_unlock_cqs(send_cq, recv_cq);
999
1000 mlx4_qp_free(dev->dev, &qp->mqp);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -07001001
Matan Barakc1c98502013-11-07 15:25:17 +02001002 if (!is_sqp(dev, qp) && !is_tunnel_qp(dev, qp)) {
1003 if (qp->flags & MLX4_IB_QP_NETIF)
1004 mlx4_ib_steer_qp_free(dev, qp->mqp.qpn, 1);
1005 else
1006 mlx4_qp_release_range(dev->dev, qp->mqp.qpn, 1);
1007 }
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -07001008
Roland Dreier225c7b12007-05-08 18:00:38 -07001009 mlx4_mtt_cleanup(dev->dev, &qp->mtt);
1010
1011 if (is_user) {
Sean Hefty0a1405d2011-06-02 11:32:15 -07001012 if (qp->rq.wqe_cnt)
Roland Dreier02d89b82007-05-23 15:16:08 -07001013 mlx4_ib_db_unmap_user(to_mucontext(qp->ibqp.uobject->context),
1014 &qp->db);
Roland Dreier225c7b12007-05-08 18:00:38 -07001015 ib_umem_release(qp->umem);
1016 } else {
1017 kfree(qp->sq.wrid);
1018 kfree(qp->rq.wrid);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001019 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
1020 MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI))
1021 free_proxy_bufs(&dev->ib_dev, qp);
Roland Dreier225c7b12007-05-08 18:00:38 -07001022 mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001023 if (qp->rq.wqe_cnt)
Yevgeny Petrilin62968832008-04-23 11:55:45 -07001024 mlx4_db_free(dev->dev, &qp->db);
Roland Dreier225c7b12007-05-08 18:00:38 -07001025 }
Eli Cohenfa417f72010-10-24 21:08:52 -07001026
1027 del_gid_entries(qp);
Roland Dreier225c7b12007-05-08 18:00:38 -07001028}
1029
Jack Morgenstein47605df2012-08-03 08:40:57 +00001030static u32 get_sqp_num(struct mlx4_ib_dev *dev, struct ib_qp_init_attr *attr)
1031{
1032 /* Native or PPF */
1033 if (!mlx4_is_mfunc(dev->dev) ||
1034 (mlx4_is_master(dev->dev) &&
1035 attr->create_flags & MLX4_IB_SRIOV_SQP)) {
1036 return dev->dev->phys_caps.base_sqpn +
1037 (attr->qp_type == IB_QPT_SMI ? 0 : 2) +
1038 attr->port_num - 1;
1039 }
1040 /* PF or VF -- creating proxies */
1041 if (attr->qp_type == IB_QPT_SMI)
1042 return dev->dev->caps.qp0_proxy[attr->port_num - 1];
1043 else
1044 return dev->dev->caps.qp1_proxy[attr->port_num - 1];
1045}
1046
Roland Dreier225c7b12007-05-08 18:00:38 -07001047struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
1048 struct ib_qp_init_attr *init_attr,
1049 struct ib_udata *udata)
1050{
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001051 struct mlx4_ib_qp *qp = NULL;
Roland Dreier225c7b12007-05-08 18:00:38 -07001052 int err;
Sean Hefty0a1405d2011-06-02 11:32:15 -07001053 u16 xrcdn = 0;
Jiri Kosina40f22872014-05-11 15:15:12 +03001054 gfp_t gfp;
Roland Dreier225c7b12007-05-08 18:00:38 -07001055
Jiri Kosina40f22872014-05-11 15:15:12 +03001056 gfp = (init_attr->create_flags & MLX4_IB_QP_CREATE_USE_GFP_NOIO) ?
1057 GFP_NOIO : GFP_KERNEL;
Ron Livne521e5752008-07-14 23:48:48 -07001058 /*
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001059 * We only support LSO, vendor flag1, and multicast loopback blocking,
1060 * and only for kernel UD QPs.
Ron Livne521e5752008-07-14 23:48:48 -07001061 */
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001062 if (init_attr->create_flags & ~(MLX4_IB_QP_LSO |
1063 MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK |
Matan Barakc1c98502013-11-07 15:25:17 +02001064 MLX4_IB_SRIOV_TUNNEL_QP |
1065 MLX4_IB_SRIOV_SQP |
Jiri Kosina40f22872014-05-11 15:15:12 +03001066 MLX4_IB_QP_NETIF |
1067 MLX4_IB_QP_CREATE_USE_GFP_NOIO))
Eli Cohenb832be12008-04-16 21:09:27 -07001068 return ERR_PTR(-EINVAL);
Ron Livne521e5752008-07-14 23:48:48 -07001069
Matan Barakc1c98502013-11-07 15:25:17 +02001070 if (init_attr->create_flags & IB_QP_CREATE_NETIF_QP) {
1071 if (init_attr->qp_type != IB_QPT_UD)
1072 return ERR_PTR(-EINVAL);
1073 }
1074
Ron Livne521e5752008-07-14 23:48:48 -07001075 if (init_attr->create_flags &&
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001076 (udata ||
Jiri Kosina40f22872014-05-11 15:15:12 +03001077 ((init_attr->create_flags & ~(MLX4_IB_SRIOV_SQP | MLX4_IB_QP_CREATE_USE_GFP_NOIO)) &&
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001078 init_attr->qp_type != IB_QPT_UD) ||
1079 ((init_attr->create_flags & MLX4_IB_SRIOV_SQP) &&
1080 init_attr->qp_type > IB_QPT_GSI)))
Eli Cohenb846f252008-04-16 21:09:27 -07001081 return ERR_PTR(-EINVAL);
1082
Roland Dreier225c7b12007-05-08 18:00:38 -07001083 switch (init_attr->qp_type) {
Sean Hefty0a1405d2011-06-02 11:32:15 -07001084 case IB_QPT_XRC_TGT:
1085 pd = to_mxrcd(init_attr->xrcd)->pd;
1086 xrcdn = to_mxrcd(init_attr->xrcd)->xrcdn;
1087 init_attr->send_cq = to_mxrcd(init_attr->xrcd)->cq;
1088 /* fall through */
1089 case IB_QPT_XRC_INI:
1090 if (!(to_mdev(pd->device)->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC))
1091 return ERR_PTR(-ENOSYS);
1092 init_attr->recv_cq = init_attr->send_cq;
1093 /* fall through */
Roland Dreier225c7b12007-05-08 18:00:38 -07001094 case IB_QPT_RC:
1095 case IB_QPT_UC:
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001096 case IB_QPT_RAW_PACKET:
Jiri Kosina40f22872014-05-11 15:15:12 +03001097 qp = kzalloc(sizeof *qp, gfp);
Roland Dreier225c7b12007-05-08 18:00:38 -07001098 if (!qp)
1099 return ERR_PTR(-ENOMEM);
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001100 qp->pri.vid = 0xFFFF;
1101 qp->alt.vid = 0xFFFF;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001102 /* fall through */
1103 case IB_QPT_UD:
1104 {
1105 err = create_qp_common(to_mdev(pd->device), pd, init_attr,
Jiri Kosina40f22872014-05-11 15:15:12 +03001106 udata, 0, &qp, gfp);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001107 if (err)
Roland Dreier225c7b12007-05-08 18:00:38 -07001108 return ERR_PTR(err);
Roland Dreier225c7b12007-05-08 18:00:38 -07001109
1110 qp->ibqp.qp_num = qp->mqp.qpn;
Sean Hefty0a1405d2011-06-02 11:32:15 -07001111 qp->xrcdn = xrcdn;
Roland Dreier225c7b12007-05-08 18:00:38 -07001112
1113 break;
1114 }
1115 case IB_QPT_SMI:
1116 case IB_QPT_GSI:
1117 {
1118 /* Userspace is not allowed to create special QPs: */
Sean Hefty0a1405d2011-06-02 11:32:15 -07001119 if (udata)
Roland Dreier225c7b12007-05-08 18:00:38 -07001120 return ERR_PTR(-EINVAL);
1121
Sean Hefty0a1405d2011-06-02 11:32:15 -07001122 err = create_qp_common(to_mdev(pd->device), pd, init_attr, udata,
Jack Morgenstein47605df2012-08-03 08:40:57 +00001123 get_sqp_num(to_mdev(pd->device), init_attr),
Jiri Kosina40f22872014-05-11 15:15:12 +03001124 &qp, gfp);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001125 if (err)
Roland Dreier225c7b12007-05-08 18:00:38 -07001126 return ERR_PTR(err);
Roland Dreier225c7b12007-05-08 18:00:38 -07001127
1128 qp->port = init_attr->port_num;
1129 qp->ibqp.qp_num = init_attr->qp_type == IB_QPT_SMI ? 0 : 1;
1130
1131 break;
1132 }
1133 default:
1134 /* Don't support raw QPs */
1135 return ERR_PTR(-EINVAL);
1136 }
1137
1138 return &qp->ibqp;
1139}
1140
1141int mlx4_ib_destroy_qp(struct ib_qp *qp)
1142{
1143 struct mlx4_ib_dev *dev = to_mdev(qp->device);
1144 struct mlx4_ib_qp *mqp = to_mqp(qp);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001145 struct mlx4_ib_pd *pd;
Roland Dreier225c7b12007-05-08 18:00:38 -07001146
1147 if (is_qp0(dev, mqp))
1148 mlx4_CLOSE_PORT(dev->dev, mqp->port);
1149
Matan Barak9433c182014-05-15 15:29:28 +03001150 if (dev->qp1_proxy[mqp->port - 1] == mqp) {
1151 mutex_lock(&dev->qp1_proxy_lock[mqp->port - 1]);
1152 dev->qp1_proxy[mqp->port - 1] = NULL;
1153 mutex_unlock(&dev->qp1_proxy_lock[mqp->port - 1]);
1154 }
1155
Sean Hefty0a1405d2011-06-02 11:32:15 -07001156 pd = get_pd(mqp);
1157 destroy_qp_common(dev, mqp, !!pd->ibpd.uobject);
Roland Dreier225c7b12007-05-08 18:00:38 -07001158
1159 if (is_sqp(dev, mqp))
1160 kfree(to_msqp(mqp));
1161 else
1162 kfree(mqp);
1163
1164 return 0;
1165}
1166
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001167static int to_mlx4_st(struct mlx4_ib_dev *dev, enum mlx4_ib_qp_type type)
Roland Dreier225c7b12007-05-08 18:00:38 -07001168{
1169 switch (type) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001170 case MLX4_IB_QPT_RC: return MLX4_QP_ST_RC;
1171 case MLX4_IB_QPT_UC: return MLX4_QP_ST_UC;
1172 case MLX4_IB_QPT_UD: return MLX4_QP_ST_UD;
1173 case MLX4_IB_QPT_XRC_INI:
1174 case MLX4_IB_QPT_XRC_TGT: return MLX4_QP_ST_XRC;
1175 case MLX4_IB_QPT_SMI:
1176 case MLX4_IB_QPT_GSI:
1177 case MLX4_IB_QPT_RAW_PACKET: return MLX4_QP_ST_MLX;
1178
1179 case MLX4_IB_QPT_PROXY_SMI_OWNER:
1180 case MLX4_IB_QPT_TUN_SMI_OWNER: return (mlx4_is_mfunc(dev->dev) ?
1181 MLX4_QP_ST_MLX : -1);
1182 case MLX4_IB_QPT_PROXY_SMI:
1183 case MLX4_IB_QPT_TUN_SMI:
1184 case MLX4_IB_QPT_PROXY_GSI:
1185 case MLX4_IB_QPT_TUN_GSI: return (mlx4_is_mfunc(dev->dev) ?
1186 MLX4_QP_ST_UD : -1);
1187 default: return -1;
Roland Dreier225c7b12007-05-08 18:00:38 -07001188 }
1189}
1190
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001191static __be32 to_mlx4_access_flags(struct mlx4_ib_qp *qp, const struct ib_qp_attr *attr,
Roland Dreier225c7b12007-05-08 18:00:38 -07001192 int attr_mask)
1193{
1194 u8 dest_rd_atomic;
1195 u32 access_flags;
1196 u32 hw_access_flags = 0;
1197
1198 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
1199 dest_rd_atomic = attr->max_dest_rd_atomic;
1200 else
1201 dest_rd_atomic = qp->resp_depth;
1202
1203 if (attr_mask & IB_QP_ACCESS_FLAGS)
1204 access_flags = attr->qp_access_flags;
1205 else
1206 access_flags = qp->atomic_rd_en;
1207
1208 if (!dest_rd_atomic)
1209 access_flags &= IB_ACCESS_REMOTE_WRITE;
1210
1211 if (access_flags & IB_ACCESS_REMOTE_READ)
1212 hw_access_flags |= MLX4_QP_BIT_RRE;
1213 if (access_flags & IB_ACCESS_REMOTE_ATOMIC)
1214 hw_access_flags |= MLX4_QP_BIT_RAE;
1215 if (access_flags & IB_ACCESS_REMOTE_WRITE)
1216 hw_access_flags |= MLX4_QP_BIT_RWE;
1217
1218 return cpu_to_be32(hw_access_flags);
1219}
1220
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001221static void store_sqp_attrs(struct mlx4_ib_sqp *sqp, const struct ib_qp_attr *attr,
Roland Dreier225c7b12007-05-08 18:00:38 -07001222 int attr_mask)
1223{
1224 if (attr_mask & IB_QP_PKEY_INDEX)
1225 sqp->pkey_index = attr->pkey_index;
1226 if (attr_mask & IB_QP_QKEY)
1227 sqp->qkey = attr->qkey;
1228 if (attr_mask & IB_QP_SQ_PSN)
1229 sqp->send_psn = attr->sq_psn;
1230}
1231
1232static void mlx4_set_sched(struct mlx4_qp_path *path, u8 port)
1233{
1234 path->sched_queue = (path->sched_queue & 0xbf) | ((port - 1) << 6);
1235}
1236
Moni Shoua297e0da2013-12-12 18:03:14 +02001237static int _mlx4_set_path(struct mlx4_ib_dev *dev, const struct ib_ah_attr *ah,
1238 u64 smac, u16 vlan_tag, struct mlx4_qp_path *path,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001239 struct mlx4_roce_smac_vlan_info *smac_info, u8 port)
Roland Dreier225c7b12007-05-08 18:00:38 -07001240{
Eli Cohenfa417f72010-10-24 21:08:52 -07001241 int is_eth = rdma_port_get_link_layer(&dev->ib_dev, port) ==
1242 IB_LINK_LAYER_ETHERNET;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001243 int vidx;
Moni Shoua297e0da2013-12-12 18:03:14 +02001244 int smac_index;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001245 int err;
Moni Shoua297e0da2013-12-12 18:03:14 +02001246
Eli Cohenfa417f72010-10-24 21:08:52 -07001247
Roland Dreier225c7b12007-05-08 18:00:38 -07001248 path->grh_mylmc = ah->src_path_bits & 0x7f;
1249 path->rlid = cpu_to_be16(ah->dlid);
1250 if (ah->static_rate) {
1251 path->static_rate = ah->static_rate + MLX4_STAT_RATE_OFFSET;
1252 while (path->static_rate > IB_RATE_2_5_GBPS + MLX4_STAT_RATE_OFFSET &&
1253 !(1 << path->static_rate & dev->dev->caps.stat_rate_support))
1254 --path->static_rate;
1255 } else
1256 path->static_rate = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001257
1258 if (ah->ah_flags & IB_AH_GRH) {
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001259 if (ah->grh.sgid_index >= dev->dev->caps.gid_table_len[port]) {
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001260 pr_err("sgid_index (%u) too large. max is %d\n",
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001261 ah->grh.sgid_index, dev->dev->caps.gid_table_len[port] - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07001262 return -1;
1263 }
1264
1265 path->grh_mylmc |= 1 << 7;
1266 path->mgid_index = ah->grh.sgid_index;
1267 path->hop_limit = ah->grh.hop_limit;
1268 path->tclass_flowlabel =
1269 cpu_to_be32((ah->grh.traffic_class << 20) |
1270 (ah->grh.flow_label));
1271 memcpy(path->rgid, ah->grh.dgid.raw, 16);
1272 }
1273
Eli Cohenfa417f72010-10-24 21:08:52 -07001274 if (is_eth) {
1275 if (!(ah->ah_flags & IB_AH_GRH))
1276 return -1;
1277
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001278 path->sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE |
1279 ((port - 1) << 6) | ((ah->sl & 7) << 3);
Moni Shoua297e0da2013-12-12 18:03:14 +02001280
1281 path->feup |= MLX4_FEUP_FORCE_ETH_UP;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001282 if (vlan_tag < 0x1000) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001283 if (smac_info->vid < 0x1000) {
1284 /* both valid vlan ids */
1285 if (smac_info->vid != vlan_tag) {
1286 /* different VIDs. unreg old and reg new */
1287 err = mlx4_register_vlan(dev->dev, port, vlan_tag, &vidx);
1288 if (err)
1289 return err;
1290 smac_info->candidate_vid = vlan_tag;
1291 smac_info->candidate_vlan_index = vidx;
1292 smac_info->candidate_vlan_port = port;
1293 smac_info->update_vid = 1;
1294 path->vlan_index = vidx;
1295 } else {
1296 path->vlan_index = smac_info->vlan_index;
1297 }
1298 } else {
1299 /* no current vlan tag in qp */
1300 err = mlx4_register_vlan(dev->dev, port, vlan_tag, &vidx);
1301 if (err)
1302 return err;
1303 smac_info->candidate_vid = vlan_tag;
1304 smac_info->candidate_vlan_index = vidx;
1305 smac_info->candidate_vlan_port = port;
1306 smac_info->update_vid = 1;
1307 path->vlan_index = vidx;
1308 }
Moni Shoua297e0da2013-12-12 18:03:14 +02001309 path->feup |= MLX4_FVL_FORCE_ETH_VLAN;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001310 path->fl = 1 << 6;
1311 } else {
1312 /* have current vlan tag. unregister it at modify-qp success */
1313 if (smac_info->vid < 0x1000) {
1314 smac_info->candidate_vid = 0xFFFF;
1315 smac_info->update_vid = 1;
1316 }
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001317 }
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001318
1319 /* get smac_index for RoCE use.
1320 * If no smac was yet assigned, register one.
1321 * If one was already assigned, but the new mac differs,
1322 * unregister the old one and register the new one.
1323 */
Jack Morgenstein25476b02014-09-11 14:11:20 +03001324 if ((!smac_info->smac && !smac_info->smac_port) ||
1325 smac_info->smac != smac) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001326 /* register candidate now, unreg if needed, after success */
1327 smac_index = mlx4_register_mac(dev->dev, port, smac);
1328 if (smac_index >= 0) {
1329 smac_info->candidate_smac_index = smac_index;
1330 smac_info->candidate_smac = smac;
1331 smac_info->candidate_smac_port = port;
1332 } else {
1333 return -EINVAL;
1334 }
1335 } else {
1336 smac_index = smac_info->smac_index;
1337 }
1338
1339 memcpy(path->dmac, ah->dmac, 6);
1340 path->ackto = MLX4_IB_LINK_TYPE_ETH;
1341 /* put MAC table smac index for IBoE */
1342 path->grh_mylmc = (u8) (smac_index) | 0x80;
1343 } else {
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001344 path->sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE |
1345 ((port - 1) << 6) | ((ah->sl & 0xf) << 2);
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001346 }
Eli Cohenfa417f72010-10-24 21:08:52 -07001347
Roland Dreier225c7b12007-05-08 18:00:38 -07001348 return 0;
1349}
1350
Moni Shoua297e0da2013-12-12 18:03:14 +02001351static int mlx4_set_path(struct mlx4_ib_dev *dev, const struct ib_qp_attr *qp,
1352 enum ib_qp_attr_mask qp_attr_mask,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001353 struct mlx4_ib_qp *mqp,
Moni Shoua297e0da2013-12-12 18:03:14 +02001354 struct mlx4_qp_path *path, u8 port)
1355{
1356 return _mlx4_set_path(dev, &qp->ah_attr,
1357 mlx4_mac_to_u64((u8 *)qp->smac),
1358 (qp_attr_mask & IB_QP_VID) ? qp->vlan_id : 0xffff,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001359 path, &mqp->pri, port);
Moni Shoua297e0da2013-12-12 18:03:14 +02001360}
1361
1362static int mlx4_set_alt_path(struct mlx4_ib_dev *dev,
1363 const struct ib_qp_attr *qp,
1364 enum ib_qp_attr_mask qp_attr_mask,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001365 struct mlx4_ib_qp *mqp,
Moni Shoua297e0da2013-12-12 18:03:14 +02001366 struct mlx4_qp_path *path, u8 port)
1367{
1368 return _mlx4_set_path(dev, &qp->alt_ah_attr,
1369 mlx4_mac_to_u64((u8 *)qp->alt_smac),
1370 (qp_attr_mask & IB_QP_ALT_VID) ?
1371 qp->alt_vlan_id : 0xffff,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001372 path, &mqp->alt, port);
Moni Shoua297e0da2013-12-12 18:03:14 +02001373}
1374
Eli Cohenfa417f72010-10-24 21:08:52 -07001375static void update_mcg_macs(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
1376{
1377 struct mlx4_ib_gid_entry *ge, *tmp;
1378
1379 list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
1380 if (!ge->added && mlx4_ib_add_mc(dev, qp, &ge->gid)) {
1381 ge->added = 1;
1382 ge->port = qp->port;
1383 }
1384 }
1385}
1386
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001387static int handle_eth_ud_smac_index(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp, u8 *smac,
1388 struct mlx4_qp_context *context)
1389{
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001390 u64 u64_mac;
1391 int smac_index;
1392
Jack Morgenstein3e0629c2014-09-11 14:11:17 +03001393 u64_mac = atomic64_read(&dev->iboe.mac[qp->port - 1]);
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001394
1395 context->pri_path.sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE | ((qp->port - 1) << 6);
Jack Morgenstein25476b02014-09-11 14:11:20 +03001396 if (!qp->pri.smac && !qp->pri.smac_port) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001397 smac_index = mlx4_register_mac(dev->dev, qp->port, u64_mac);
1398 if (smac_index >= 0) {
1399 qp->pri.candidate_smac_index = smac_index;
1400 qp->pri.candidate_smac = u64_mac;
1401 qp->pri.candidate_smac_port = qp->port;
1402 context->pri_path.grh_mylmc = 0x80 | (u8) smac_index;
1403 } else {
1404 return -ENOENT;
1405 }
1406 }
1407 return 0;
1408}
1409
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001410static int __mlx4_ib_modify_qp(struct ib_qp *ibqp,
1411 const struct ib_qp_attr *attr, int attr_mask,
1412 enum ib_qp_state cur_state, enum ib_qp_state new_state)
Roland Dreier225c7b12007-05-08 18:00:38 -07001413{
1414 struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
1415 struct mlx4_ib_qp *qp = to_mqp(ibqp);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001416 struct mlx4_ib_pd *pd;
1417 struct mlx4_ib_cq *send_cq, *recv_cq;
Roland Dreier225c7b12007-05-08 18:00:38 -07001418 struct mlx4_qp_context *context;
1419 enum mlx4_qp_optpar optpar = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001420 int sqd_event;
Matan Barakc1c98502013-11-07 15:25:17 +02001421 int steer_qp = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001422 int err = -EINVAL;
1423
Jack Morgenstein3dec4872014-09-11 14:11:19 +03001424 /* APM is not supported under RoCE */
1425 if (attr_mask & IB_QP_ALT_PATH &&
1426 rdma_port_get_link_layer(&dev->ib_dev, qp->port) ==
1427 IB_LINK_LAYER_ETHERNET)
1428 return -ENOTSUPP;
1429
Roland Dreier225c7b12007-05-08 18:00:38 -07001430 context = kzalloc(sizeof *context, GFP_KERNEL);
1431 if (!context)
1432 return -ENOMEM;
1433
Roland Dreier225c7b12007-05-08 18:00:38 -07001434 context->flags = cpu_to_be32((to_mlx4_state(new_state) << 28) |
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001435 (to_mlx4_st(dev, qp->mlx4_ib_qp_type) << 16));
Roland Dreier225c7b12007-05-08 18:00:38 -07001436
1437 if (!(attr_mask & IB_QP_PATH_MIG_STATE))
1438 context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
1439 else {
1440 optpar |= MLX4_QP_OPTPAR_PM_STATE;
1441 switch (attr->path_mig_state) {
1442 case IB_MIG_MIGRATED:
1443 context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
1444 break;
1445 case IB_MIG_REARM:
1446 context->flags |= cpu_to_be32(MLX4_QP_PM_REARM << 11);
1447 break;
1448 case IB_MIG_ARMED:
1449 context->flags |= cpu_to_be32(MLX4_QP_PM_ARMED << 11);
1450 break;
1451 }
1452 }
1453
Eli Cohenb832be12008-04-16 21:09:27 -07001454 if (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI)
Roland Dreier225c7b12007-05-08 18:00:38 -07001455 context->mtu_msgmax = (IB_MTU_4096 << 5) | 11;
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001456 else if (ibqp->qp_type == IB_QPT_RAW_PACKET)
1457 context->mtu_msgmax = (MLX4_RAW_QP_MTU << 5) | MLX4_RAW_QP_MSGMAX;
Eli Cohenb832be12008-04-16 21:09:27 -07001458 else if (ibqp->qp_type == IB_QPT_UD) {
1459 if (qp->flags & MLX4_IB_QP_LSO)
1460 context->mtu_msgmax = (IB_MTU_4096 << 5) |
1461 ilog2(dev->dev->caps.max_gso_sz);
1462 else
Alex Naslednikov6e0d7332008-08-07 14:06:50 -07001463 context->mtu_msgmax = (IB_MTU_4096 << 5) | 12;
Eli Cohenb832be12008-04-16 21:09:27 -07001464 } else if (attr_mask & IB_QP_PATH_MTU) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001465 if (attr->path_mtu < IB_MTU_256 || attr->path_mtu > IB_MTU_4096) {
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001466 pr_err("path MTU (%u) is invalid\n",
Roland Dreier225c7b12007-05-08 18:00:38 -07001467 attr->path_mtu);
Florin Malitaf5b40432007-07-19 15:58:09 -04001468 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001469 }
Eli Cohend1f2cd82008-07-14 23:48:45 -07001470 context->mtu_msgmax = (attr->path_mtu << 5) |
1471 ilog2(dev->dev->caps.max_msg_sz);
Roland Dreier225c7b12007-05-08 18:00:38 -07001472 }
1473
Roland Dreier0e6e7412007-06-18 08:13:48 -07001474 if (qp->rq.wqe_cnt)
1475 context->rq_size_stride = ilog2(qp->rq.wqe_cnt) << 3;
Roland Dreier225c7b12007-05-08 18:00:38 -07001476 context->rq_size_stride |= qp->rq.wqe_shift - 4;
1477
Roland Dreier0e6e7412007-06-18 08:13:48 -07001478 if (qp->sq.wqe_cnt)
1479 context->sq_size_stride = ilog2(qp->sq.wqe_cnt) << 3;
Roland Dreier225c7b12007-05-08 18:00:38 -07001480 context->sq_size_stride |= qp->sq.wqe_shift - 4;
1481
Sean Hefty0a1405d2011-06-02 11:32:15 -07001482 if (cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT) {
Roland Dreier0e6e7412007-06-18 08:13:48 -07001483 context->sq_size_stride |= !!qp->sq_no_prefetch << 7;
Sean Hefty0a1405d2011-06-02 11:32:15 -07001484 context->xrcd = cpu_to_be32((u32) qp->xrcdn);
Dotan Barak02d7ef62013-04-21 15:10:00 +00001485 if (ibqp->qp_type == IB_QPT_RAW_PACKET)
1486 context->param3 |= cpu_to_be32(1 << 30);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001487 }
Roland Dreier0e6e7412007-06-18 08:13:48 -07001488
Roland Dreier225c7b12007-05-08 18:00:38 -07001489 if (qp->ibqp.uobject)
1490 context->usr_page = cpu_to_be32(to_mucontext(ibqp->uobject->context)->uar.index);
1491 else
1492 context->usr_page = cpu_to_be32(dev->priv_uar.index);
1493
1494 if (attr_mask & IB_QP_DEST_QPN)
1495 context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
1496
1497 if (attr_mask & IB_QP_PORT) {
1498 if (cur_state == IB_QPS_SQD && new_state == IB_QPS_SQD &&
1499 !(attr_mask & IB_QP_AV)) {
1500 mlx4_set_sched(&context->pri_path, attr->port_num);
1501 optpar |= MLX4_QP_OPTPAR_SCHED_QUEUE;
1502 }
1503 }
1504
Or Gerlitzcfcde112011-06-15 14:49:57 +00001505 if (cur_state == IB_QPS_INIT && new_state == IB_QPS_RTR) {
1506 if (dev->counters[qp->port - 1] != -1) {
1507 context->pri_path.counter_index =
1508 dev->counters[qp->port - 1];
1509 optpar |= MLX4_QP_OPTPAR_COUNTER_INDEX;
1510 } else
1511 context->pri_path.counter_index = 0xff;
Matan Barakc1c98502013-11-07 15:25:17 +02001512
1513 if (qp->flags & MLX4_IB_QP_NETIF) {
1514 mlx4_ib_steer_qp_reg(dev, qp, 1);
1515 steer_qp = 1;
1516 }
Or Gerlitzcfcde112011-06-15 14:49:57 +00001517 }
1518
Roland Dreier225c7b12007-05-08 18:00:38 -07001519 if (attr_mask & IB_QP_PKEY_INDEX) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001520 if (qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV)
1521 context->pri_path.disable_pkey_check = 0x40;
Roland Dreier225c7b12007-05-08 18:00:38 -07001522 context->pri_path.pkey_index = attr->pkey_index;
1523 optpar |= MLX4_QP_OPTPAR_PKEY_INDEX;
1524 }
1525
Roland Dreier225c7b12007-05-08 18:00:38 -07001526 if (attr_mask & IB_QP_AV) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001527 if (mlx4_set_path(dev, attr, attr_mask, qp, &context->pri_path,
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001528 attr_mask & IB_QP_PORT ?
1529 attr->port_num : qp->port))
Roland Dreier225c7b12007-05-08 18:00:38 -07001530 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001531
1532 optpar |= (MLX4_QP_OPTPAR_PRIMARY_ADDR_PATH |
1533 MLX4_QP_OPTPAR_SCHED_QUEUE);
1534 }
1535
1536 if (attr_mask & IB_QP_TIMEOUT) {
Eli Cohenfa417f72010-10-24 21:08:52 -07001537 context->pri_path.ackto |= attr->timeout << 3;
Roland Dreier225c7b12007-05-08 18:00:38 -07001538 optpar |= MLX4_QP_OPTPAR_ACK_TIMEOUT;
1539 }
1540
1541 if (attr_mask & IB_QP_ALT_PATH) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001542 if (attr->alt_port_num == 0 ||
1543 attr->alt_port_num > dev->dev->caps.num_ports)
Florin Malitaf5b40432007-07-19 15:58:09 -04001544 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001545
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001546 if (attr->alt_pkey_index >=
1547 dev->dev->caps.pkey_table_len[attr->alt_port_num])
Florin Malitaf5b40432007-07-19 15:58:09 -04001548 goto out;
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001549
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001550 if (mlx4_set_alt_path(dev, attr, attr_mask, qp,
1551 &context->alt_path,
Moni Shoua297e0da2013-12-12 18:03:14 +02001552 attr->alt_port_num))
Florin Malitaf5b40432007-07-19 15:58:09 -04001553 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001554
1555 context->alt_path.pkey_index = attr->alt_pkey_index;
1556 context->alt_path.ackto = attr->alt_timeout << 3;
1557 optpar |= MLX4_QP_OPTPAR_ALT_ADDR_PATH;
1558 }
1559
Sean Hefty0a1405d2011-06-02 11:32:15 -07001560 pd = get_pd(qp);
1561 get_cqs(qp, &send_cq, &recv_cq);
1562 context->pd = cpu_to_be32(pd->pdn);
1563 context->cqn_send = cpu_to_be32(send_cq->mcq.cqn);
1564 context->cqn_recv = cpu_to_be32(recv_cq->mcq.cqn);
1565 context->params1 = cpu_to_be32(MLX4_IB_ACK_REQ_FREQ << 28);
Jack Morgenstein57f01b52007-06-06 19:35:04 +03001566
Roland Dreier95d04f02008-07-23 08:12:26 -07001567 /* Set "fast registration enabled" for all kernel QPs */
1568 if (!qp->ibqp.uobject)
1569 context->params1 |= cpu_to_be32(1 << 11);
1570
Jack Morgenstein57f01b52007-06-06 19:35:04 +03001571 if (attr_mask & IB_QP_RNR_RETRY) {
1572 context->params1 |= cpu_to_be32(attr->rnr_retry << 13);
1573 optpar |= MLX4_QP_OPTPAR_RNR_RETRY;
1574 }
1575
Roland Dreier225c7b12007-05-08 18:00:38 -07001576 if (attr_mask & IB_QP_RETRY_CNT) {
1577 context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
1578 optpar |= MLX4_QP_OPTPAR_RETRY_COUNT;
1579 }
1580
1581 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
1582 if (attr->max_rd_atomic)
1583 context->params1 |=
1584 cpu_to_be32(fls(attr->max_rd_atomic - 1) << 21);
1585 optpar |= MLX4_QP_OPTPAR_SRA_MAX;
1586 }
1587
1588 if (attr_mask & IB_QP_SQ_PSN)
1589 context->next_send_psn = cpu_to_be32(attr->sq_psn);
1590
Roland Dreier225c7b12007-05-08 18:00:38 -07001591 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
1592 if (attr->max_dest_rd_atomic)
1593 context->params2 |=
1594 cpu_to_be32(fls(attr->max_dest_rd_atomic - 1) << 21);
1595 optpar |= MLX4_QP_OPTPAR_RRA_MAX;
1596 }
1597
1598 if (attr_mask & (IB_QP_ACCESS_FLAGS | IB_QP_MAX_DEST_RD_ATOMIC)) {
1599 context->params2 |= to_mlx4_access_flags(qp, attr, attr_mask);
1600 optpar |= MLX4_QP_OPTPAR_RWE | MLX4_QP_OPTPAR_RRE | MLX4_QP_OPTPAR_RAE;
1601 }
1602
1603 if (ibqp->srq)
1604 context->params2 |= cpu_to_be32(MLX4_QP_BIT_RIC);
1605
1606 if (attr_mask & IB_QP_MIN_RNR_TIMER) {
1607 context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
1608 optpar |= MLX4_QP_OPTPAR_RNR_TIMEOUT;
1609 }
1610 if (attr_mask & IB_QP_RQ_PSN)
1611 context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
1612
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001613 /* proxy and tunnel qp qkeys will be changed in modify-qp wrappers */
Roland Dreier225c7b12007-05-08 18:00:38 -07001614 if (attr_mask & IB_QP_QKEY) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001615 if (qp->mlx4_ib_qp_type &
1616 (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER))
1617 context->qkey = cpu_to_be32(IB_QP_SET_QKEY);
1618 else {
1619 if (mlx4_is_mfunc(dev->dev) &&
1620 !(qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV) &&
1621 (attr->qkey & MLX4_RESERVED_QKEY_MASK) ==
1622 MLX4_RESERVED_QKEY_BASE) {
1623 pr_err("Cannot use reserved QKEY"
1624 " 0x%x (range 0xffff0000..0xffffffff"
1625 " is reserved)\n", attr->qkey);
1626 err = -EINVAL;
1627 goto out;
1628 }
1629 context->qkey = cpu_to_be32(attr->qkey);
1630 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001631 optpar |= MLX4_QP_OPTPAR_Q_KEY;
1632 }
1633
1634 if (ibqp->srq)
1635 context->srqn = cpu_to_be32(1 << 24 | to_msrq(ibqp->srq)->msrq.srqn);
1636
Sean Hefty0a1405d2011-06-02 11:32:15 -07001637 if (qp->rq.wqe_cnt && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
Roland Dreier225c7b12007-05-08 18:00:38 -07001638 context->db_rec_addr = cpu_to_be64(qp->db.dma);
1639
1640 if (cur_state == IB_QPS_INIT &&
1641 new_state == IB_QPS_RTR &&
1642 (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI ||
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001643 ibqp->qp_type == IB_QPT_UD ||
1644 ibqp->qp_type == IB_QPT_RAW_PACKET)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001645 context->pri_path.sched_queue = (qp->port - 1) << 6;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001646 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_SMI ||
1647 qp->mlx4_ib_qp_type &
1648 (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001649 context->pri_path.sched_queue |= MLX4_IB_DEFAULT_QP0_SCHED_QUEUE;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001650 if (qp->mlx4_ib_qp_type != MLX4_IB_QPT_SMI)
1651 context->pri_path.fl = 0x80;
1652 } else {
1653 if (qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV)
1654 context->pri_path.fl = 0x80;
Roland Dreier225c7b12007-05-08 18:00:38 -07001655 context->pri_path.sched_queue |= MLX4_IB_DEFAULT_SCHED_QUEUE;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001656 }
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001657 if (rdma_port_get_link_layer(&dev->ib_dev, qp->port) ==
1658 IB_LINK_LAYER_ETHERNET) {
1659 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_TUN_GSI ||
1660 qp->mlx4_ib_qp_type == MLX4_IB_QPT_GSI)
1661 context->pri_path.feup = 1 << 7; /* don't fsm */
1662 /* handle smac_index */
1663 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_UD ||
1664 qp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI ||
1665 qp->mlx4_ib_qp_type == MLX4_IB_QPT_TUN_GSI) {
1666 err = handle_eth_ud_smac_index(dev, qp, (u8 *)attr->smac, context);
1667 if (err)
1668 return -EINVAL;
Matan Barak9433c182014-05-15 15:29:28 +03001669 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI)
1670 dev->qp1_proxy[qp->port - 1] = qp;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001671 }
1672 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001673 }
1674
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001675 if (qp->ibqp.qp_type == IB_QPT_RAW_PACKET) {
Eli Cohen3528f692013-04-21 15:10:01 +00001676 context->pri_path.ackto = (context->pri_path.ackto & 0xf8) |
1677 MLX4_IB_LINK_TYPE_ETH;
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001678 if (dev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) {
1679 /* set QP to receive both tunneled & non-tunneled packets */
Or Gerlitz8e1a03b2014-09-10 17:15:11 +03001680 if (!(context->flags & cpu_to_be32(1 << MLX4_RSS_QPC_FLAG_OFFSET)))
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001681 context->srqn = cpu_to_be32(7 << 28);
1682 }
1683 }
Eli Cohen3528f692013-04-21 15:10:01 +00001684
Moni Shoua297e0da2013-12-12 18:03:14 +02001685 if (ibqp->qp_type == IB_QPT_UD && (new_state == IB_QPS_RTR)) {
1686 int is_eth = rdma_port_get_link_layer(
1687 &dev->ib_dev, qp->port) ==
1688 IB_LINK_LAYER_ETHERNET;
1689 if (is_eth) {
1690 context->pri_path.ackto = MLX4_IB_LINK_TYPE_ETH;
1691 optpar |= MLX4_QP_OPTPAR_PRIMARY_ADDR_PATH;
1692 }
1693 }
1694
1695
Roland Dreier225c7b12007-05-08 18:00:38 -07001696 if (cur_state == IB_QPS_RTS && new_state == IB_QPS_SQD &&
1697 attr_mask & IB_QP_EN_SQD_ASYNC_NOTIFY && attr->en_sqd_async_notify)
1698 sqd_event = 1;
1699 else
1700 sqd_event = 0;
1701
Vladimir Sokolovskyd57f5f72008-10-08 20:09:01 -07001702 if (!ibqp->uobject && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
1703 context->rlkey |= (1 << 4);
1704
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001705 /*
1706 * Before passing a kernel QP to the HW, make sure that the
Roland Dreier0e6e7412007-06-18 08:13:48 -07001707 * ownership bits of the send queue are set and the SQ
1708 * headroom is stamped so that the hardware doesn't start
1709 * processing stale work requests.
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001710 */
1711 if (!ibqp->uobject && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT) {
1712 struct mlx4_wqe_ctrl_seg *ctrl;
1713 int i;
1714
Roland Dreier0e6e7412007-06-18 08:13:48 -07001715 for (i = 0; i < qp->sq.wqe_cnt; ++i) {
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001716 ctrl = get_send_wqe(qp, i);
1717 ctrl->owner_opcode = cpu_to_be32(1 << 31);
Eli Cohen9670e552008-07-14 23:48:44 -07001718 if (qp->sq_max_wqes_per_wr == 1)
1719 ctrl->fence_size = 1 << (qp->sq.wqe_shift - 4);
Roland Dreier0e6e7412007-06-18 08:13:48 -07001720
Jack Morgensteinea54b102008-01-28 10:40:59 +02001721 stamp_send_wqe(qp, i, 1 << qp->sq.wqe_shift);
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001722 }
1723 }
1724
Roland Dreier225c7b12007-05-08 18:00:38 -07001725 err = mlx4_qp_modify(dev->dev, &qp->mtt, to_mlx4_state(cur_state),
1726 to_mlx4_state(new_state), context, optpar,
1727 sqd_event, &qp->mqp);
1728 if (err)
1729 goto out;
1730
1731 qp->state = new_state;
1732
1733 if (attr_mask & IB_QP_ACCESS_FLAGS)
1734 qp->atomic_rd_en = attr->qp_access_flags;
1735 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
1736 qp->resp_depth = attr->max_dest_rd_atomic;
Eli Cohenfa417f72010-10-24 21:08:52 -07001737 if (attr_mask & IB_QP_PORT) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001738 qp->port = attr->port_num;
Eli Cohenfa417f72010-10-24 21:08:52 -07001739 update_mcg_macs(dev, qp);
1740 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001741 if (attr_mask & IB_QP_ALT_PATH)
1742 qp->alt_port = attr->alt_port_num;
1743
1744 if (is_sqp(dev, qp))
1745 store_sqp_attrs(to_msqp(qp), attr, attr_mask);
1746
1747 /*
1748 * If we moved QP0 to RTR, bring the IB link up; if we moved
1749 * QP0 to RESET or ERROR, bring the link back down.
1750 */
1751 if (is_qp0(dev, qp)) {
1752 if (cur_state != IB_QPS_RTR && new_state == IB_QPS_RTR)
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001753 if (mlx4_INIT_PORT(dev->dev, qp->port))
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001754 pr_warn("INIT_PORT failed for port %d\n",
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001755 qp->port);
Roland Dreier225c7b12007-05-08 18:00:38 -07001756
1757 if (cur_state != IB_QPS_RESET && cur_state != IB_QPS_ERR &&
1758 (new_state == IB_QPS_RESET || new_state == IB_QPS_ERR))
1759 mlx4_CLOSE_PORT(dev->dev, qp->port);
1760 }
1761
1762 /*
1763 * If we moved a kernel QP to RESET, clean up all old CQ
1764 * entries and reinitialize the QP.
1765 */
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001766 if (new_state == IB_QPS_RESET) {
1767 if (!ibqp->uobject) {
1768 mlx4_ib_cq_clean(recv_cq, qp->mqp.qpn,
1769 ibqp->srq ? to_msrq(ibqp->srq) : NULL);
1770 if (send_cq != recv_cq)
1771 mlx4_ib_cq_clean(send_cq, qp->mqp.qpn, NULL);
Roland Dreier225c7b12007-05-08 18:00:38 -07001772
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001773 qp->rq.head = 0;
1774 qp->rq.tail = 0;
1775 qp->sq.head = 0;
1776 qp->sq.tail = 0;
1777 qp->sq_next_wqe = 0;
1778 if (qp->rq.wqe_cnt)
1779 *qp->db.db = 0;
Matan Barakc1c98502013-11-07 15:25:17 +02001780
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001781 if (qp->flags & MLX4_IB_QP_NETIF)
1782 mlx4_ib_steer_qp_reg(dev, qp, 0);
1783 }
Jack Morgenstein25476b02014-09-11 14:11:20 +03001784 if (qp->pri.smac || (!qp->pri.smac && qp->pri.smac_port)) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001785 mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
1786 qp->pri.smac = 0;
Jack Morgenstein25476b02014-09-11 14:11:20 +03001787 qp->pri.smac_port = 0;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001788 }
1789 if (qp->alt.smac) {
1790 mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
1791 qp->alt.smac = 0;
1792 }
1793 if (qp->pri.vid < 0x1000) {
1794 mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port, qp->pri.vid);
1795 qp->pri.vid = 0xFFFF;
1796 qp->pri.candidate_vid = 0xFFFF;
1797 qp->pri.update_vid = 0;
1798 }
1799
1800 if (qp->alt.vid < 0x1000) {
1801 mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port, qp->alt.vid);
1802 qp->alt.vid = 0xFFFF;
1803 qp->alt.candidate_vid = 0xFFFF;
1804 qp->alt.update_vid = 0;
1805 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001806 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001807out:
Matan Barakc1c98502013-11-07 15:25:17 +02001808 if (err && steer_qp)
1809 mlx4_ib_steer_qp_reg(dev, qp, 0);
Roland Dreier225c7b12007-05-08 18:00:38 -07001810 kfree(context);
Jack Morgenstein25476b02014-09-11 14:11:20 +03001811 if (qp->pri.candidate_smac ||
1812 (!qp->pri.candidate_smac && qp->pri.candidate_smac_port)) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001813 if (err) {
1814 mlx4_unregister_mac(dev->dev, qp->pri.candidate_smac_port, qp->pri.candidate_smac);
1815 } else {
Jack Morgenstein25476b02014-09-11 14:11:20 +03001816 if (qp->pri.smac || (!qp->pri.smac && qp->pri.smac_port))
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001817 mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
1818 qp->pri.smac = qp->pri.candidate_smac;
1819 qp->pri.smac_index = qp->pri.candidate_smac_index;
1820 qp->pri.smac_port = qp->pri.candidate_smac_port;
1821 }
1822 qp->pri.candidate_smac = 0;
1823 qp->pri.candidate_smac_index = 0;
1824 qp->pri.candidate_smac_port = 0;
1825 }
1826 if (qp->alt.candidate_smac) {
1827 if (err) {
1828 mlx4_unregister_mac(dev->dev, qp->alt.candidate_smac_port, qp->alt.candidate_smac);
1829 } else {
1830 if (qp->alt.smac)
1831 mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
1832 qp->alt.smac = qp->alt.candidate_smac;
1833 qp->alt.smac_index = qp->alt.candidate_smac_index;
1834 qp->alt.smac_port = qp->alt.candidate_smac_port;
1835 }
1836 qp->alt.candidate_smac = 0;
1837 qp->alt.candidate_smac_index = 0;
1838 qp->alt.candidate_smac_port = 0;
1839 }
1840
1841 if (qp->pri.update_vid) {
1842 if (err) {
1843 if (qp->pri.candidate_vid < 0x1000)
1844 mlx4_unregister_vlan(dev->dev, qp->pri.candidate_vlan_port,
1845 qp->pri.candidate_vid);
1846 } else {
1847 if (qp->pri.vid < 0x1000)
1848 mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port,
1849 qp->pri.vid);
1850 qp->pri.vid = qp->pri.candidate_vid;
1851 qp->pri.vlan_port = qp->pri.candidate_vlan_port;
1852 qp->pri.vlan_index = qp->pri.candidate_vlan_index;
1853 }
1854 qp->pri.candidate_vid = 0xFFFF;
1855 qp->pri.update_vid = 0;
1856 }
1857
1858 if (qp->alt.update_vid) {
1859 if (err) {
1860 if (qp->alt.candidate_vid < 0x1000)
1861 mlx4_unregister_vlan(dev->dev, qp->alt.candidate_vlan_port,
1862 qp->alt.candidate_vid);
1863 } else {
1864 if (qp->alt.vid < 0x1000)
1865 mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port,
1866 qp->alt.vid);
1867 qp->alt.vid = qp->alt.candidate_vid;
1868 qp->alt.vlan_port = qp->alt.candidate_vlan_port;
1869 qp->alt.vlan_index = qp->alt.candidate_vlan_index;
1870 }
1871 qp->alt.candidate_vid = 0xFFFF;
1872 qp->alt.update_vid = 0;
1873 }
1874
Roland Dreier225c7b12007-05-08 18:00:38 -07001875 return err;
1876}
1877
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001878int mlx4_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1879 int attr_mask, struct ib_udata *udata)
1880{
1881 struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
1882 struct mlx4_ib_qp *qp = to_mqp(ibqp);
1883 enum ib_qp_state cur_state, new_state;
1884 int err = -EINVAL;
Moni Shoua297e0da2013-12-12 18:03:14 +02001885 int ll;
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001886 mutex_lock(&qp->mutex);
1887
1888 cur_state = attr_mask & IB_QP_CUR_STATE ? attr->cur_qp_state : qp->state;
1889 new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state;
1890
Moni Shoua297e0da2013-12-12 18:03:14 +02001891 if (cur_state == new_state && cur_state == IB_QPS_RESET) {
1892 ll = IB_LINK_LAYER_UNSPECIFIED;
1893 } else {
1894 int port = attr_mask & IB_QP_PORT ? attr->port_num : qp->port;
1895 ll = rdma_port_get_link_layer(&dev->ib_dev, port);
1896 }
Matan Barakdd5f03b2013-12-12 18:03:11 +02001897
1898 if (!ib_modify_qp_is_ok(cur_state, new_state, ibqp->qp_type,
Moni Shoua297e0da2013-12-12 18:03:14 +02001899 attr_mask, ll)) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001900 pr_debug("qpn 0x%x: invalid attribute mask specified "
1901 "for transition %d to %d. qp_type %d,"
1902 " attr_mask 0x%x\n",
1903 ibqp->qp_num, cur_state, new_state,
1904 ibqp->qp_type, attr_mask);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001905 goto out;
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001906 }
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001907
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001908 if ((attr_mask & IB_QP_PORT) &&
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001909 (attr->port_num == 0 || attr->port_num > dev->num_ports)) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001910 pr_debug("qpn 0x%x: invalid port number (%d) specified "
1911 "for transition %d to %d. qp_type %d\n",
1912 ibqp->qp_num, attr->port_num, cur_state,
1913 new_state, ibqp->qp_type);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001914 goto out;
1915 }
1916
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001917 if ((attr_mask & IB_QP_PORT) && (ibqp->qp_type == IB_QPT_RAW_PACKET) &&
1918 (rdma_port_get_link_layer(&dev->ib_dev, attr->port_num) !=
1919 IB_LINK_LAYER_ETHERNET))
1920 goto out;
1921
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001922 if (attr_mask & IB_QP_PKEY_INDEX) {
1923 int p = attr_mask & IB_QP_PORT ? attr->port_num : qp->port;
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001924 if (attr->pkey_index >= dev->dev->caps.pkey_table_len[p]) {
1925 pr_debug("qpn 0x%x: invalid pkey index (%d) specified "
1926 "for transition %d to %d. qp_type %d\n",
1927 ibqp->qp_num, attr->pkey_index, cur_state,
1928 new_state, ibqp->qp_type);
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001929 goto out;
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001930 }
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001931 }
1932
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001933 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC &&
1934 attr->max_rd_atomic > dev->dev->caps.max_qp_init_rdma) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001935 pr_debug("qpn 0x%x: max_rd_atomic (%d) too large. "
1936 "Transition %d to %d. qp_type %d\n",
1937 ibqp->qp_num, attr->max_rd_atomic, cur_state,
1938 new_state, ibqp->qp_type);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001939 goto out;
1940 }
1941
1942 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC &&
1943 attr->max_dest_rd_atomic > dev->dev->caps.max_qp_dest_rdma) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001944 pr_debug("qpn 0x%x: max_dest_rd_atomic (%d) too large. "
1945 "Transition %d to %d. qp_type %d\n",
1946 ibqp->qp_num, attr->max_dest_rd_atomic, cur_state,
1947 new_state, ibqp->qp_type);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001948 goto out;
1949 }
1950
1951 if (cur_state == new_state && cur_state == IB_QPS_RESET) {
1952 err = 0;
1953 goto out;
1954 }
1955
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001956 err = __mlx4_ib_modify_qp(ibqp, attr, attr_mask, cur_state, new_state);
1957
1958out:
1959 mutex_unlock(&qp->mutex);
1960 return err;
1961}
1962
Jack Morgenstein99ec41d2014-05-29 16:31:03 +03001963static int vf_get_qp0_qkey(struct mlx4_dev *dev, int qpn, u32 *qkey)
1964{
1965 int i;
1966 for (i = 0; i < dev->caps.num_ports; i++) {
1967 if (qpn == dev->caps.qp0_proxy[i] ||
1968 qpn == dev->caps.qp0_tunnel[i]) {
1969 *qkey = dev->caps.qp0_qkey[i];
1970 return 0;
1971 }
1972 }
1973 return -EINVAL;
1974}
1975
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001976static int build_sriov_qp0_header(struct mlx4_ib_sqp *sqp,
1977 struct ib_send_wr *wr,
1978 void *wqe, unsigned *mlx_seg_len)
1979{
1980 struct mlx4_ib_dev *mdev = to_mdev(sqp->qp.ibqp.device);
1981 struct ib_device *ib_dev = &mdev->ib_dev;
1982 struct mlx4_wqe_mlx_seg *mlx = wqe;
1983 struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
1984 struct mlx4_ib_ah *ah = to_mah(wr->wr.ud.ah);
1985 u16 pkey;
1986 u32 qkey;
1987 int send_size;
1988 int header_size;
1989 int spc;
1990 int i;
1991
1992 if (wr->opcode != IB_WR_SEND)
1993 return -EINVAL;
1994
1995 send_size = 0;
1996
1997 for (i = 0; i < wr->num_sge; ++i)
1998 send_size += wr->sg_list[i].length;
1999
2000 /* for proxy-qp0 sends, need to add in size of tunnel header */
2001 /* for tunnel-qp0 sends, tunnel header is already in s/g list */
2002 if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_SMI_OWNER)
2003 send_size += sizeof (struct mlx4_ib_tunnel_header);
2004
2005 ib_ud_header_init(send_size, 1, 0, 0, 0, 0, &sqp->ud_header);
2006
2007 if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_SMI_OWNER) {
2008 sqp->ud_header.lrh.service_level =
2009 be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 28;
2010 sqp->ud_header.lrh.destination_lid =
2011 cpu_to_be16(ah->av.ib.g_slid & 0x7f);
2012 sqp->ud_header.lrh.source_lid =
2013 cpu_to_be16(ah->av.ib.g_slid & 0x7f);
2014 }
2015
2016 mlx->flags &= cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
2017
2018 /* force loopback */
2019 mlx->flags |= cpu_to_be32(MLX4_WQE_MLX_VL15 | 0x1 | MLX4_WQE_MLX_SLR);
2020 mlx->rlid = sqp->ud_header.lrh.destination_lid;
2021
2022 sqp->ud_header.lrh.virtual_lane = 0;
2023 sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
2024 ib_get_cached_pkey(ib_dev, sqp->qp.port, 0, &pkey);
2025 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
2026 if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_TUN_SMI_OWNER)
2027 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
2028 else
2029 sqp->ud_header.bth.destination_qpn =
Jack Morgenstein47605df2012-08-03 08:40:57 +00002030 cpu_to_be32(mdev->dev->caps.qp0_tunnel[sqp->qp.port - 1]);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002031
2032 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
Jack Morgenstein99ec41d2014-05-29 16:31:03 +03002033 if (mlx4_is_master(mdev->dev)) {
2034 if (mlx4_get_parav_qkey(mdev->dev, sqp->qp.mqp.qpn, &qkey))
2035 return -EINVAL;
2036 } else {
2037 if (vf_get_qp0_qkey(mdev->dev, sqp->qp.mqp.qpn, &qkey))
2038 return -EINVAL;
2039 }
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002040 sqp->ud_header.deth.qkey = cpu_to_be32(qkey);
2041 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.mqp.qpn);
2042
2043 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
2044 sqp->ud_header.immediate_present = 0;
2045
2046 header_size = ib_ud_header_pack(&sqp->ud_header, sqp->header_buf);
2047
2048 /*
2049 * Inline data segments may not cross a 64 byte boundary. If
2050 * our UD header is bigger than the space available up to the
2051 * next 64 byte boundary in the WQE, use two inline data
2052 * segments to hold the UD header.
2053 */
2054 spc = MLX4_INLINE_ALIGN -
2055 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2056 if (header_size <= spc) {
2057 inl->byte_count = cpu_to_be32(1 << 31 | header_size);
2058 memcpy(inl + 1, sqp->header_buf, header_size);
2059 i = 1;
2060 } else {
2061 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2062 memcpy(inl + 1, sqp->header_buf, spc);
2063
2064 inl = (void *) (inl + 1) + spc;
2065 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
2066 /*
2067 * Need a barrier here to make sure all the data is
2068 * visible before the byte_count field is set.
2069 * Otherwise the HCA prefetcher could grab the 64-byte
2070 * chunk with this inline segment and get a valid (!=
2071 * 0xffffffff) byte count but stale data, and end up
2072 * generating a packet with bad headers.
2073 *
2074 * The first inline segment's byte_count field doesn't
2075 * need a barrier, because it comes after a
2076 * control/MLX segment and therefore is at an offset
2077 * of 16 mod 64.
2078 */
2079 wmb();
2080 inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc));
2081 i = 2;
2082 }
2083
2084 *mlx_seg_len =
2085 ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + header_size, 16);
2086 return 0;
2087}
2088
Jack Morgenstein3e0629c2014-09-11 14:11:17 +03002089static void mlx4_u64_to_smac(u8 *dst_mac, u64 src_mac)
2090{
2091 int i;
2092
2093 for (i = ETH_ALEN; i; i--) {
2094 dst_mac[i - 1] = src_mac & 0xff;
2095 src_mac >>= 8;
2096 }
2097}
2098
Roland Dreier225c7b12007-05-08 18:00:38 -07002099static int build_mlx_header(struct mlx4_ib_sqp *sqp, struct ib_send_wr *wr,
Roland Dreierf4380002008-04-16 21:09:28 -07002100 void *wqe, unsigned *mlx_seg_len)
Roland Dreier225c7b12007-05-08 18:00:38 -07002101{
Eli Cohena4788682010-01-27 13:57:03 +00002102 struct ib_device *ib_dev = sqp->qp.ibqp.device;
Roland Dreier225c7b12007-05-08 18:00:38 -07002103 struct mlx4_wqe_mlx_seg *mlx = wqe;
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002104 struct mlx4_wqe_ctrl_seg *ctrl = wqe;
Roland Dreier225c7b12007-05-08 18:00:38 -07002105 struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
2106 struct mlx4_ib_ah *ah = to_mah(wr->wr.ud.ah);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002107 union ib_gid sgid;
Roland Dreier225c7b12007-05-08 18:00:38 -07002108 u16 pkey;
2109 int send_size;
2110 int header_size;
Roland Dreiere61ef242007-06-18 09:23:47 -07002111 int spc;
Roland Dreier225c7b12007-05-08 18:00:38 -07002112 int i;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002113 int err = 0;
Paul Bolle57d88cf2013-02-25 09:17:13 -08002114 u16 vlan = 0xffff;
Roland Dreiera29bec12013-02-25 09:02:03 -08002115 bool is_eth;
2116 bool is_vlan = false;
2117 bool is_grh;
Roland Dreier225c7b12007-05-08 18:00:38 -07002118
2119 send_size = 0;
2120 for (i = 0; i < wr->num_sge; ++i)
2121 send_size += wr->sg_list[i].length;
2122
Eli Cohenfa417f72010-10-24 21:08:52 -07002123 is_eth = rdma_port_get_link_layer(sqp->qp.ibqp.device, sqp->qp.port) == IB_LINK_LAYER_ETHERNET;
2124 is_grh = mlx4_ib_ah_grh_present(ah);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002125 if (is_eth) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002126 if (mlx4_is_mfunc(to_mdev(ib_dev)->dev)) {
2127 /* When multi-function is enabled, the ib_core gid
2128 * indexes don't necessarily match the hw ones, so
2129 * we must use our own cache */
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002130 err = mlx4_get_roce_gid_from_slave(to_mdev(ib_dev)->dev,
2131 be32_to_cpu(ah->av.ib.port_pd) >> 24,
2132 ah->av.ib.gid_index, &sgid.raw[0]);
2133 if (err)
2134 return err;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002135 } else {
2136 err = ib_get_cached_gid(ib_dev,
2137 be32_to_cpu(ah->av.ib.port_pd) >> 24,
2138 ah->av.ib.gid_index, &sgid);
2139 if (err)
2140 return err;
2141 }
2142
Bart Van Assche0e9855d2014-03-10 10:33:05 +01002143 if (ah->av.eth.vlan != cpu_to_be16(0xffff)) {
Moni Shoua297e0da2013-12-12 18:03:14 +02002144 vlan = be16_to_cpu(ah->av.eth.vlan) & 0x0fff;
2145 is_vlan = 1;
2146 }
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002147 }
2148 ib_ud_header_init(send_size, !is_eth, is_eth, is_vlan, is_grh, 0, &sqp->ud_header);
Roland Dreier225c7b12007-05-08 18:00:38 -07002149
Eli Cohenfa417f72010-10-24 21:08:52 -07002150 if (!is_eth) {
2151 sqp->ud_header.lrh.service_level =
2152 be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 28;
2153 sqp->ud_header.lrh.destination_lid = ah->av.ib.dlid;
2154 sqp->ud_header.lrh.source_lid = cpu_to_be16(ah->av.ib.g_slid & 0x7f);
2155 }
2156
2157 if (is_grh) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002158 sqp->ud_header.grh.traffic_class =
Eli Cohenfa417f72010-10-24 21:08:52 -07002159 (be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 20) & 0xff;
Roland Dreier225c7b12007-05-08 18:00:38 -07002160 sqp->ud_header.grh.flow_label =
Eli Cohenfa417f72010-10-24 21:08:52 -07002161 ah->av.ib.sl_tclass_flowlabel & cpu_to_be32(0xfffff);
2162 sqp->ud_header.grh.hop_limit = ah->av.ib.hop_limit;
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002163 if (is_eth)
2164 memcpy(sqp->ud_header.grh.source_gid.raw, sgid.raw, 16);
2165 else {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002166 if (mlx4_is_mfunc(to_mdev(ib_dev)->dev)) {
2167 /* When multi-function is enabled, the ib_core gid
2168 * indexes don't necessarily match the hw ones, so
2169 * we must use our own cache */
2170 sqp->ud_header.grh.source_gid.global.subnet_prefix =
2171 to_mdev(ib_dev)->sriov.demux[sqp->qp.port - 1].
2172 subnet_prefix;
2173 sqp->ud_header.grh.source_gid.global.interface_id =
2174 to_mdev(ib_dev)->sriov.demux[sqp->qp.port - 1].
2175 guid_cache[ah->av.ib.gid_index];
2176 } else
2177 ib_get_cached_gid(ib_dev,
2178 be32_to_cpu(ah->av.ib.port_pd) >> 24,
2179 ah->av.ib.gid_index,
2180 &sqp->ud_header.grh.source_gid);
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002181 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002182 memcpy(sqp->ud_header.grh.destination_gid.raw,
Eli Cohenfa417f72010-10-24 21:08:52 -07002183 ah->av.ib.dgid, 16);
Roland Dreier225c7b12007-05-08 18:00:38 -07002184 }
2185
2186 mlx->flags &= cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
Eli Cohenfa417f72010-10-24 21:08:52 -07002187
2188 if (!is_eth) {
2189 mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MLX4_WQE_MLX_VL15 : 0) |
2190 (sqp->ud_header.lrh.destination_lid ==
2191 IB_LID_PERMISSIVE ? MLX4_WQE_MLX_SLR : 0) |
2192 (sqp->ud_header.lrh.service_level << 8));
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002193 if (ah->av.ib.port_pd & cpu_to_be32(0x80000000))
2194 mlx->flags |= cpu_to_be32(0x1); /* force loopback */
Eli Cohenfa417f72010-10-24 21:08:52 -07002195 mlx->rlid = sqp->ud_header.lrh.destination_lid;
2196 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002197
2198 switch (wr->opcode) {
2199 case IB_WR_SEND:
2200 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
2201 sqp->ud_header.immediate_present = 0;
2202 break;
2203 case IB_WR_SEND_WITH_IMM:
2204 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
2205 sqp->ud_header.immediate_present = 1;
Roland Dreier0f39cf32008-04-16 21:09:32 -07002206 sqp->ud_header.immediate_data = wr->ex.imm_data;
Roland Dreier225c7b12007-05-08 18:00:38 -07002207 break;
2208 default:
2209 return -EINVAL;
2210 }
2211
Eli Cohenfa417f72010-10-24 21:08:52 -07002212 if (is_eth) {
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002213 struct in6_addr in6;
2214
Oren Duerc0c1d3d72012-04-29 17:04:24 +03002215 u16 pcp = (be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 29) << 13;
2216
2217 mlx->sched_prio = cpu_to_be16(pcp);
Eli Cohenfa417f72010-10-24 21:08:52 -07002218
2219 memcpy(sqp->ud_header.eth.dmac_h, ah->av.eth.mac, 6);
2220 /* FIXME: cache smac value? */
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002221 memcpy(&ctrl->srcrb_flags16[0], ah->av.eth.mac, 2);
2222 memcpy(&ctrl->imm, ah->av.eth.mac + 2, 4);
2223 memcpy(&in6, sgid.raw, sizeof(in6));
Jack Morgenstein5ea8bbf2014-03-12 12:00:41 +02002224
Jack Morgenstein3e0629c2014-09-11 14:11:17 +03002225 if (!mlx4_is_mfunc(to_mdev(ib_dev)->dev)) {
2226 u64 mac = atomic64_read(&to_mdev(ib_dev)->iboe.mac[sqp->qp.port - 1]);
2227 u8 smac[ETH_ALEN];
2228
2229 mlx4_u64_to_smac(smac, mac);
2230 memcpy(sqp->ud_header.eth.smac_h, smac, ETH_ALEN);
2231 } else {
2232 /* use the src mac of the tunnel */
2233 memcpy(sqp->ud_header.eth.smac_h, ah->av.eth.s_mac, ETH_ALEN);
2234 }
2235
Eli Cohenfa417f72010-10-24 21:08:52 -07002236 if (!memcmp(sqp->ud_header.eth.smac_h, sqp->ud_header.eth.dmac_h, 6))
2237 mlx->flags |= cpu_to_be32(MLX4_WQE_CTRL_FORCE_LOOPBACK);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002238 if (!is_vlan) {
2239 sqp->ud_header.eth.type = cpu_to_be16(MLX4_IB_IBOE_ETHERTYPE);
2240 } else {
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002241 sqp->ud_header.vlan.type = cpu_to_be16(MLX4_IB_IBOE_ETHERTYPE);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002242 sqp->ud_header.vlan.tag = cpu_to_be16(vlan | pcp);
2243 }
Eli Cohenfa417f72010-10-24 21:08:52 -07002244 } else {
2245 sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0;
2246 if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE)
2247 sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE;
2248 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002249 sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
2250 if (!sqp->qp.ibqp.qp_num)
2251 ib_get_cached_pkey(ib_dev, sqp->qp.port, sqp->pkey_index, &pkey);
2252 else
2253 ib_get_cached_pkey(ib_dev, sqp->qp.port, wr->wr.ud.pkey_index, &pkey);
2254 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
2255 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
2256 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
2257 sqp->ud_header.deth.qkey = cpu_to_be32(wr->wr.ud.remote_qkey & 0x80000000 ?
2258 sqp->qkey : wr->wr.ud.remote_qkey);
2259 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
2260
2261 header_size = ib_ud_header_pack(&sqp->ud_header, sqp->header_buf);
2262
2263 if (0) {
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002264 pr_err("built UD header of size %d:\n", header_size);
Roland Dreier225c7b12007-05-08 18:00:38 -07002265 for (i = 0; i < header_size / 4; ++i) {
2266 if (i % 8 == 0)
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002267 pr_err(" [%02x] ", i * 4);
2268 pr_cont(" %08x",
2269 be32_to_cpu(((__be32 *) sqp->header_buf)[i]));
Roland Dreier225c7b12007-05-08 18:00:38 -07002270 if ((i + 1) % 8 == 0)
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002271 pr_cont("\n");
Roland Dreier225c7b12007-05-08 18:00:38 -07002272 }
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002273 pr_err("\n");
Roland Dreier225c7b12007-05-08 18:00:38 -07002274 }
2275
Roland Dreiere61ef242007-06-18 09:23:47 -07002276 /*
2277 * Inline data segments may not cross a 64 byte boundary. If
2278 * our UD header is bigger than the space available up to the
2279 * next 64 byte boundary in the WQE, use two inline data
2280 * segments to hold the UD header.
2281 */
2282 spc = MLX4_INLINE_ALIGN -
2283 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2284 if (header_size <= spc) {
2285 inl->byte_count = cpu_to_be32(1 << 31 | header_size);
2286 memcpy(inl + 1, sqp->header_buf, header_size);
2287 i = 1;
2288 } else {
2289 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2290 memcpy(inl + 1, sqp->header_buf, spc);
Roland Dreier225c7b12007-05-08 18:00:38 -07002291
Roland Dreiere61ef242007-06-18 09:23:47 -07002292 inl = (void *) (inl + 1) + spc;
2293 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
2294 /*
2295 * Need a barrier here to make sure all the data is
2296 * visible before the byte_count field is set.
2297 * Otherwise the HCA prefetcher could grab the 64-byte
2298 * chunk with this inline segment and get a valid (!=
2299 * 0xffffffff) byte count but stale data, and end up
2300 * generating a packet with bad headers.
2301 *
2302 * The first inline segment's byte_count field doesn't
2303 * need a barrier, because it comes after a
2304 * control/MLX segment and therefore is at an offset
2305 * of 16 mod 64.
2306 */
2307 wmb();
2308 inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc));
2309 i = 2;
2310 }
2311
Roland Dreierf4380002008-04-16 21:09:28 -07002312 *mlx_seg_len =
2313 ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + header_size, 16);
2314 return 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07002315}
2316
2317static int mlx4_wq_overflow(struct mlx4_ib_wq *wq, int nreq, struct ib_cq *ib_cq)
2318{
2319 unsigned cur;
2320 struct mlx4_ib_cq *cq;
2321
2322 cur = wq->head - wq->tail;
Roland Dreier0e6e7412007-06-18 08:13:48 -07002323 if (likely(cur + nreq < wq->max_post))
Roland Dreier225c7b12007-05-08 18:00:38 -07002324 return 0;
2325
2326 cq = to_mcq(ib_cq);
2327 spin_lock(&cq->lock);
2328 cur = wq->head - wq->tail;
2329 spin_unlock(&cq->lock);
2330
Roland Dreier0e6e7412007-06-18 08:13:48 -07002331 return cur + nreq >= wq->max_post;
Roland Dreier225c7b12007-05-08 18:00:38 -07002332}
2333
Roland Dreier95d04f02008-07-23 08:12:26 -07002334static __be32 convert_access(int acc)
2335{
Shani Michaeli6ff63e12013-02-06 16:19:15 +00002336 return (acc & IB_ACCESS_REMOTE_ATOMIC ?
2337 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_ATOMIC) : 0) |
2338 (acc & IB_ACCESS_REMOTE_WRITE ?
2339 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_WRITE) : 0) |
2340 (acc & IB_ACCESS_REMOTE_READ ?
2341 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_READ) : 0) |
Roland Dreier95d04f02008-07-23 08:12:26 -07002342 (acc & IB_ACCESS_LOCAL_WRITE ? cpu_to_be32(MLX4_WQE_FMR_PERM_LOCAL_WRITE) : 0) |
2343 cpu_to_be32(MLX4_WQE_FMR_PERM_LOCAL_READ);
2344}
2345
2346static void set_fmr_seg(struct mlx4_wqe_fmr_seg *fseg, struct ib_send_wr *wr)
2347{
2348 struct mlx4_ib_fast_reg_page_list *mfrpl = to_mfrpl(wr->wr.fast_reg.page_list);
Vladimir Sokolovsky29bdc882008-09-15 14:25:23 -07002349 int i;
2350
2351 for (i = 0; i < wr->wr.fast_reg.page_list_len; ++i)
Jack Morgenstein2b6b7d42009-05-07 21:35:13 -07002352 mfrpl->mapped_page_list[i] =
Vladimir Sokolovsky29bdc882008-09-15 14:25:23 -07002353 cpu_to_be64(wr->wr.fast_reg.page_list->page_list[i] |
2354 MLX4_MTT_FLAG_PRESENT);
Roland Dreier95d04f02008-07-23 08:12:26 -07002355
2356 fseg->flags = convert_access(wr->wr.fast_reg.access_flags);
2357 fseg->mem_key = cpu_to_be32(wr->wr.fast_reg.rkey);
2358 fseg->buf_list = cpu_to_be64(mfrpl->map);
2359 fseg->start_addr = cpu_to_be64(wr->wr.fast_reg.iova_start);
2360 fseg->reg_len = cpu_to_be64(wr->wr.fast_reg.length);
2361 fseg->offset = 0; /* XXX -- is this just for ZBVA? */
2362 fseg->page_size = cpu_to_be32(wr->wr.fast_reg.page_shift);
2363 fseg->reserved[0] = 0;
2364 fseg->reserved[1] = 0;
2365}
2366
Shani Michaeli6ff63e12013-02-06 16:19:15 +00002367static void set_bind_seg(struct mlx4_wqe_bind_seg *bseg, struct ib_send_wr *wr)
2368{
2369 bseg->flags1 =
2370 convert_access(wr->wr.bind_mw.bind_info.mw_access_flags) &
2371 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_READ |
2372 MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_WRITE |
2373 MLX4_WQE_FMR_AND_BIND_PERM_ATOMIC);
2374 bseg->flags2 = 0;
2375 if (wr->wr.bind_mw.mw->type == IB_MW_TYPE_2)
2376 bseg->flags2 |= cpu_to_be32(MLX4_WQE_BIND_TYPE_2);
2377 if (wr->wr.bind_mw.bind_info.mw_access_flags & IB_ZERO_BASED)
2378 bseg->flags2 |= cpu_to_be32(MLX4_WQE_BIND_ZERO_BASED);
2379 bseg->new_rkey = cpu_to_be32(wr->wr.bind_mw.rkey);
2380 bseg->lkey = cpu_to_be32(wr->wr.bind_mw.bind_info.mr->lkey);
2381 bseg->addr = cpu_to_be64(wr->wr.bind_mw.bind_info.addr);
2382 bseg->length = cpu_to_be64(wr->wr.bind_mw.bind_info.length);
2383}
2384
Roland Dreier95d04f02008-07-23 08:12:26 -07002385static void set_local_inv_seg(struct mlx4_wqe_local_inval_seg *iseg, u32 rkey)
2386{
Shani Michaeliaee38fa2013-02-06 16:19:07 +00002387 memset(iseg, 0, sizeof(*iseg));
2388 iseg->mem_key = cpu_to_be32(rkey);
Roland Dreier95d04f02008-07-23 08:12:26 -07002389}
2390
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002391static __always_inline void set_raddr_seg(struct mlx4_wqe_raddr_seg *rseg,
2392 u64 remote_addr, u32 rkey)
2393{
2394 rseg->raddr = cpu_to_be64(remote_addr);
2395 rseg->rkey = cpu_to_be32(rkey);
2396 rseg->reserved = 0;
2397}
2398
2399static void set_atomic_seg(struct mlx4_wqe_atomic_seg *aseg, struct ib_send_wr *wr)
2400{
2401 if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
2402 aseg->swap_add = cpu_to_be64(wr->wr.atomic.swap);
2403 aseg->compare = cpu_to_be64(wr->wr.atomic.compare_add);
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002404 } else if (wr->opcode == IB_WR_MASKED_ATOMIC_FETCH_AND_ADD) {
2405 aseg->swap_add = cpu_to_be64(wr->wr.atomic.compare_add);
2406 aseg->compare = cpu_to_be64(wr->wr.atomic.compare_add_mask);
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002407 } else {
2408 aseg->swap_add = cpu_to_be64(wr->wr.atomic.compare_add);
2409 aseg->compare = 0;
2410 }
2411
2412}
2413
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002414static void set_masked_atomic_seg(struct mlx4_wqe_masked_atomic_seg *aseg,
2415 struct ib_send_wr *wr)
2416{
2417 aseg->swap_add = cpu_to_be64(wr->wr.atomic.swap);
2418 aseg->swap_add_mask = cpu_to_be64(wr->wr.atomic.swap_mask);
2419 aseg->compare = cpu_to_be64(wr->wr.atomic.compare_add);
2420 aseg->compare_mask = cpu_to_be64(wr->wr.atomic.compare_add_mask);
2421}
2422
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002423static void set_datagram_seg(struct mlx4_wqe_datagram_seg *dseg,
Or Gerlitz80a2dcd2011-10-10 10:54:42 +02002424 struct ib_send_wr *wr)
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002425{
2426 memcpy(dseg->av, &to_mah(wr->wr.ud.ah)->av, sizeof (struct mlx4_av));
2427 dseg->dqpn = cpu_to_be32(wr->wr.ud.remote_qpn);
2428 dseg->qkey = cpu_to_be32(wr->wr.ud.remote_qkey);
Eli Cohenfa417f72010-10-24 21:08:52 -07002429 dseg->vlan = to_mah(wr->wr.ud.ah)->av.eth.vlan;
2430 memcpy(dseg->mac, to_mah(wr->wr.ud.ah)->av.eth.mac, 6);
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002431}
2432
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002433static void set_tunnel_datagram_seg(struct mlx4_ib_dev *dev,
2434 struct mlx4_wqe_datagram_seg *dseg,
Jack Morgenstein97982f52014-05-29 16:31:02 +03002435 struct ib_send_wr *wr,
2436 enum mlx4_ib_qp_type qpt)
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002437{
2438 union mlx4_ext_av *av = &to_mah(wr->wr.ud.ah)->av;
2439 struct mlx4_av sqp_av = {0};
2440 int port = *((u8 *) &av->ib.port_pd) & 0x3;
2441
2442 /* force loopback */
2443 sqp_av.port_pd = av->ib.port_pd | cpu_to_be32(0x80000000);
2444 sqp_av.g_slid = av->ib.g_slid & 0x7f; /* no GRH */
2445 sqp_av.sl_tclass_flowlabel = av->ib.sl_tclass_flowlabel &
2446 cpu_to_be32(0xf0000000);
2447
2448 memcpy(dseg->av, &sqp_av, sizeof (struct mlx4_av));
Jack Morgenstein97982f52014-05-29 16:31:02 +03002449 if (qpt == MLX4_IB_QPT_PROXY_GSI)
2450 dseg->dqpn = cpu_to_be32(dev->dev->caps.qp1_tunnel[port - 1]);
2451 else
2452 dseg->dqpn = cpu_to_be32(dev->dev->caps.qp0_tunnel[port - 1]);
Jack Morgenstein47605df2012-08-03 08:40:57 +00002453 /* Use QKEY from the QP context, which is set by master */
2454 dseg->qkey = cpu_to_be32(IB_QP_SET_QKEY);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002455}
2456
2457static void build_tunnel_header(struct ib_send_wr *wr, void *wqe, unsigned *mlx_seg_len)
2458{
2459 struct mlx4_wqe_inline_seg *inl = wqe;
2460 struct mlx4_ib_tunnel_header hdr;
2461 struct mlx4_ib_ah *ah = to_mah(wr->wr.ud.ah);
2462 int spc;
2463 int i;
2464
2465 memcpy(&hdr.av, &ah->av, sizeof hdr.av);
2466 hdr.remote_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
2467 hdr.pkey_index = cpu_to_be16(wr->wr.ud.pkey_index);
2468 hdr.qkey = cpu_to_be32(wr->wr.ud.remote_qkey);
Jack Morgenstein5ea8bbf2014-03-12 12:00:41 +02002469 memcpy(hdr.mac, ah->av.eth.mac, 6);
2470 hdr.vlan = ah->av.eth.vlan;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002471
2472 spc = MLX4_INLINE_ALIGN -
2473 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2474 if (sizeof (hdr) <= spc) {
2475 memcpy(inl + 1, &hdr, sizeof (hdr));
2476 wmb();
2477 inl->byte_count = cpu_to_be32(1 << 31 | sizeof (hdr));
2478 i = 1;
2479 } else {
2480 memcpy(inl + 1, &hdr, spc);
2481 wmb();
2482 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2483
2484 inl = (void *) (inl + 1) + spc;
2485 memcpy(inl + 1, (void *) &hdr + spc, sizeof (hdr) - spc);
2486 wmb();
2487 inl->byte_count = cpu_to_be32(1 << 31 | (sizeof (hdr) - spc));
2488 i = 2;
2489 }
2490
2491 *mlx_seg_len =
2492 ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + sizeof (hdr), 16);
2493}
2494
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002495static void set_mlx_icrc_seg(void *dseg)
Roland Dreierd420d9e2007-07-18 11:46:27 -07002496{
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002497 u32 *t = dseg;
2498 struct mlx4_wqe_inline_seg *iseg = dseg;
2499
2500 t[1] = 0;
2501
2502 /*
2503 * Need a barrier here before writing the byte_count field to
2504 * make sure that all the data is visible before the
2505 * byte_count field is set. Otherwise, if the segment begins
2506 * a new cacheline, the HCA prefetcher could grab the 64-byte
2507 * chunk and get a valid (!= * 0xffffffff) byte count but
2508 * stale data, and end up sending the wrong data.
2509 */
2510 wmb();
2511
2512 iseg->byte_count = cpu_to_be32((1 << 31) | 4);
2513}
2514
2515static void set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg)
2516{
Roland Dreierd420d9e2007-07-18 11:46:27 -07002517 dseg->lkey = cpu_to_be32(sg->lkey);
2518 dseg->addr = cpu_to_be64(sg->addr);
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002519
2520 /*
2521 * Need a barrier here before writing the byte_count field to
2522 * make sure that all the data is visible before the
2523 * byte_count field is set. Otherwise, if the segment begins
2524 * a new cacheline, the HCA prefetcher could grab the 64-byte
2525 * chunk and get a valid (!= * 0xffffffff) byte count but
2526 * stale data, and end up sending the wrong data.
2527 */
2528 wmb();
2529
2530 dseg->byte_count = cpu_to_be32(sg->length);
Roland Dreierd420d9e2007-07-18 11:46:27 -07002531}
2532
Roland Dreier2242fa42007-10-09 19:59:05 -07002533static void __set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg)
2534{
2535 dseg->byte_count = cpu_to_be32(sg->length);
2536 dseg->lkey = cpu_to_be32(sg->lkey);
2537 dseg->addr = cpu_to_be64(sg->addr);
2538}
2539
Roland Dreier47b37472008-07-22 14:19:39 -07002540static int build_lso_seg(struct mlx4_wqe_lso_seg *wqe, struct ib_send_wr *wr,
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002541 struct mlx4_ib_qp *qp, unsigned *lso_seg_len,
Eli Cohen417608c2009-11-12 11:19:44 -08002542 __be32 *lso_hdr_sz, __be32 *blh)
Eli Cohenb832be12008-04-16 21:09:27 -07002543{
2544 unsigned halign = ALIGN(sizeof *wqe + wr->wr.ud.hlen, 16);
2545
Eli Cohen417608c2009-11-12 11:19:44 -08002546 if (unlikely(halign > MLX4_IB_CACHE_LINE_SIZE))
2547 *blh = cpu_to_be32(1 << 6);
Eli Cohenb832be12008-04-16 21:09:27 -07002548
2549 if (unlikely(!(qp->flags & MLX4_IB_QP_LSO) &&
2550 wr->num_sge > qp->sq.max_gs - (halign >> 4)))
2551 return -EINVAL;
2552
2553 memcpy(wqe->header, wr->wr.ud.header, wr->wr.ud.hlen);
2554
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002555 *lso_hdr_sz = cpu_to_be32((wr->wr.ud.mss - wr->wr.ud.hlen) << 16 |
2556 wr->wr.ud.hlen);
Eli Cohenb832be12008-04-16 21:09:27 -07002557 *lso_seg_len = halign;
2558 return 0;
2559}
2560
Roland Dreier95d04f02008-07-23 08:12:26 -07002561static __be32 send_ieth(struct ib_send_wr *wr)
2562{
2563 switch (wr->opcode) {
2564 case IB_WR_SEND_WITH_IMM:
2565 case IB_WR_RDMA_WRITE_WITH_IMM:
2566 return wr->ex.imm_data;
2567
2568 case IB_WR_SEND_WITH_INV:
2569 return cpu_to_be32(wr->ex.invalidate_rkey);
2570
2571 default:
2572 return 0;
2573 }
2574}
2575
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002576static void add_zero_len_inline(void *wqe)
2577{
2578 struct mlx4_wqe_inline_seg *inl = wqe;
2579 memset(wqe, 0, 16);
2580 inl->byte_count = cpu_to_be32(1 << 31);
2581}
2582
Roland Dreier225c7b12007-05-08 18:00:38 -07002583int mlx4_ib_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
2584 struct ib_send_wr **bad_wr)
2585{
2586 struct mlx4_ib_qp *qp = to_mqp(ibqp);
2587 void *wqe;
2588 struct mlx4_wqe_ctrl_seg *ctrl;
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002589 struct mlx4_wqe_data_seg *dseg;
Roland Dreier225c7b12007-05-08 18:00:38 -07002590 unsigned long flags;
2591 int nreq;
2592 int err = 0;
Jack Morgensteinea54b102008-01-28 10:40:59 +02002593 unsigned ind;
2594 int uninitialized_var(stamp);
2595 int uninitialized_var(size);
Andrew Mortona3d8e152008-05-16 14:28:30 -07002596 unsigned uninitialized_var(seglen);
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002597 __be32 dummy;
2598 __be32 *lso_wqe;
2599 __be32 uninitialized_var(lso_hdr_sz);
Eli Cohen417608c2009-11-12 11:19:44 -08002600 __be32 blh;
Roland Dreier225c7b12007-05-08 18:00:38 -07002601 int i;
2602
Roland Dreier96db0e02007-10-30 10:53:54 -07002603 spin_lock_irqsave(&qp->sq.lock, flags);
Roland Dreier225c7b12007-05-08 18:00:38 -07002604
Jack Morgensteinea54b102008-01-28 10:40:59 +02002605 ind = qp->sq_next_wqe;
Roland Dreier225c7b12007-05-08 18:00:38 -07002606
2607 for (nreq = 0; wr; ++nreq, wr = wr->next) {
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002608 lso_wqe = &dummy;
Eli Cohen417608c2009-11-12 11:19:44 -08002609 blh = 0;
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002610
Roland Dreier225c7b12007-05-08 18:00:38 -07002611 if (mlx4_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
2612 err = -ENOMEM;
2613 *bad_wr = wr;
2614 goto out;
2615 }
2616
2617 if (unlikely(wr->num_sge > qp->sq.max_gs)) {
2618 err = -EINVAL;
2619 *bad_wr = wr;
2620 goto out;
2621 }
2622
Roland Dreier0e6e7412007-06-18 08:13:48 -07002623 ctrl = wqe = get_send_wqe(qp, ind & (qp->sq.wqe_cnt - 1));
Jack Morgensteinea54b102008-01-28 10:40:59 +02002624 qp->sq.wrid[(qp->sq.head + nreq) & (qp->sq.wqe_cnt - 1)] = wr->wr_id;
Roland Dreier225c7b12007-05-08 18:00:38 -07002625
2626 ctrl->srcrb_flags =
2627 (wr->send_flags & IB_SEND_SIGNALED ?
2628 cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE) : 0) |
2629 (wr->send_flags & IB_SEND_SOLICITED ?
2630 cpu_to_be32(MLX4_WQE_CTRL_SOLICITED) : 0) |
Eli Cohen8ff095e2008-04-16 21:01:10 -07002631 ((wr->send_flags & IB_SEND_IP_CSUM) ?
2632 cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM |
2633 MLX4_WQE_CTRL_TCP_UDP_CSUM) : 0) |
Roland Dreier225c7b12007-05-08 18:00:38 -07002634 qp->sq_signal_bits;
2635
Roland Dreier95d04f02008-07-23 08:12:26 -07002636 ctrl->imm = send_ieth(wr);
Roland Dreier225c7b12007-05-08 18:00:38 -07002637
2638 wqe += sizeof *ctrl;
2639 size = sizeof *ctrl / 16;
2640
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002641 switch (qp->mlx4_ib_qp_type) {
2642 case MLX4_IB_QPT_RC:
2643 case MLX4_IB_QPT_UC:
Roland Dreier225c7b12007-05-08 18:00:38 -07002644 switch (wr->opcode) {
2645 case IB_WR_ATOMIC_CMP_AND_SWP:
2646 case IB_WR_ATOMIC_FETCH_AND_ADD:
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002647 case IB_WR_MASKED_ATOMIC_FETCH_AND_ADD:
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002648 set_raddr_seg(wqe, wr->wr.atomic.remote_addr,
2649 wr->wr.atomic.rkey);
Roland Dreier225c7b12007-05-08 18:00:38 -07002650 wqe += sizeof (struct mlx4_wqe_raddr_seg);
2651
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002652 set_atomic_seg(wqe, wr);
Roland Dreier225c7b12007-05-08 18:00:38 -07002653 wqe += sizeof (struct mlx4_wqe_atomic_seg);
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002654
Roland Dreier225c7b12007-05-08 18:00:38 -07002655 size += (sizeof (struct mlx4_wqe_raddr_seg) +
2656 sizeof (struct mlx4_wqe_atomic_seg)) / 16;
2657
2658 break;
2659
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002660 case IB_WR_MASKED_ATOMIC_CMP_AND_SWP:
2661 set_raddr_seg(wqe, wr->wr.atomic.remote_addr,
2662 wr->wr.atomic.rkey);
2663 wqe += sizeof (struct mlx4_wqe_raddr_seg);
2664
2665 set_masked_atomic_seg(wqe, wr);
2666 wqe += sizeof (struct mlx4_wqe_masked_atomic_seg);
2667
2668 size += (sizeof (struct mlx4_wqe_raddr_seg) +
2669 sizeof (struct mlx4_wqe_masked_atomic_seg)) / 16;
2670
2671 break;
2672
Roland Dreier225c7b12007-05-08 18:00:38 -07002673 case IB_WR_RDMA_READ:
2674 case IB_WR_RDMA_WRITE:
2675 case IB_WR_RDMA_WRITE_WITH_IMM:
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002676 set_raddr_seg(wqe, wr->wr.rdma.remote_addr,
2677 wr->wr.rdma.rkey);
Roland Dreier225c7b12007-05-08 18:00:38 -07002678 wqe += sizeof (struct mlx4_wqe_raddr_seg);
2679 size += sizeof (struct mlx4_wqe_raddr_seg) / 16;
Roland Dreier225c7b12007-05-08 18:00:38 -07002680 break;
2681
Roland Dreier95d04f02008-07-23 08:12:26 -07002682 case IB_WR_LOCAL_INV:
Jack Morgenstein2ac6bf42009-06-05 10:36:24 -07002683 ctrl->srcrb_flags |=
2684 cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
Roland Dreier95d04f02008-07-23 08:12:26 -07002685 set_local_inv_seg(wqe, wr->ex.invalidate_rkey);
2686 wqe += sizeof (struct mlx4_wqe_local_inval_seg);
2687 size += sizeof (struct mlx4_wqe_local_inval_seg) / 16;
2688 break;
2689
2690 case IB_WR_FAST_REG_MR:
Jack Morgenstein2ac6bf42009-06-05 10:36:24 -07002691 ctrl->srcrb_flags |=
2692 cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
Roland Dreier95d04f02008-07-23 08:12:26 -07002693 set_fmr_seg(wqe, wr);
2694 wqe += sizeof (struct mlx4_wqe_fmr_seg);
2695 size += sizeof (struct mlx4_wqe_fmr_seg) / 16;
2696 break;
2697
Shani Michaeli6ff63e12013-02-06 16:19:15 +00002698 case IB_WR_BIND_MW:
2699 ctrl->srcrb_flags |=
2700 cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
2701 set_bind_seg(wqe, wr);
2702 wqe += sizeof(struct mlx4_wqe_bind_seg);
2703 size += sizeof(struct mlx4_wqe_bind_seg) / 16;
2704 break;
Roland Dreier225c7b12007-05-08 18:00:38 -07002705 default:
2706 /* No extra segments required for sends */
2707 break;
2708 }
2709 break;
2710
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002711 case MLX4_IB_QPT_TUN_SMI_OWNER:
2712 err = build_sriov_qp0_header(to_msqp(qp), wr, ctrl, &seglen);
2713 if (unlikely(err)) {
2714 *bad_wr = wr;
2715 goto out;
2716 }
2717 wqe += seglen;
2718 size += seglen / 16;
2719 break;
2720 case MLX4_IB_QPT_TUN_SMI:
2721 case MLX4_IB_QPT_TUN_GSI:
2722 /* this is a UD qp used in MAD responses to slaves. */
2723 set_datagram_seg(wqe, wr);
2724 /* set the forced-loopback bit in the data seg av */
2725 *(__be32 *) wqe |= cpu_to_be32(0x80000000);
2726 wqe += sizeof (struct mlx4_wqe_datagram_seg);
2727 size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
2728 break;
2729 case MLX4_IB_QPT_UD:
Or Gerlitz80a2dcd2011-10-10 10:54:42 +02002730 set_datagram_seg(wqe, wr);
Roland Dreier225c7b12007-05-08 18:00:38 -07002731 wqe += sizeof (struct mlx4_wqe_datagram_seg);
2732 size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
Eli Cohenb832be12008-04-16 21:09:27 -07002733
2734 if (wr->opcode == IB_WR_LSO) {
Eli Cohen417608c2009-11-12 11:19:44 -08002735 err = build_lso_seg(wqe, wr, qp, &seglen, &lso_hdr_sz, &blh);
Eli Cohenb832be12008-04-16 21:09:27 -07002736 if (unlikely(err)) {
2737 *bad_wr = wr;
2738 goto out;
2739 }
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002740 lso_wqe = (__be32 *) wqe;
Eli Cohenb832be12008-04-16 21:09:27 -07002741 wqe += seglen;
2742 size += seglen / 16;
2743 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002744 break;
2745
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002746 case MLX4_IB_QPT_PROXY_SMI_OWNER:
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002747 err = build_sriov_qp0_header(to_msqp(qp), wr, ctrl, &seglen);
2748 if (unlikely(err)) {
2749 *bad_wr = wr;
2750 goto out;
2751 }
2752 wqe += seglen;
2753 size += seglen / 16;
2754 /* to start tunnel header on a cache-line boundary */
2755 add_zero_len_inline(wqe);
2756 wqe += 16;
2757 size++;
2758 build_tunnel_header(wr, wqe, &seglen);
2759 wqe += seglen;
2760 size += seglen / 16;
2761 break;
2762 case MLX4_IB_QPT_PROXY_SMI:
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002763 case MLX4_IB_QPT_PROXY_GSI:
2764 /* If we are tunneling special qps, this is a UD qp.
2765 * In this case we first add a UD segment targeting
2766 * the tunnel qp, and then add a header with address
2767 * information */
Jack Morgenstein97982f52014-05-29 16:31:02 +03002768 set_tunnel_datagram_seg(to_mdev(ibqp->device), wqe, wr,
2769 qp->mlx4_ib_qp_type);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002770 wqe += sizeof (struct mlx4_wqe_datagram_seg);
2771 size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
2772 build_tunnel_header(wr, wqe, &seglen);
2773 wqe += seglen;
2774 size += seglen / 16;
2775 break;
2776
2777 case MLX4_IB_QPT_SMI:
2778 case MLX4_IB_QPT_GSI:
Roland Dreierf4380002008-04-16 21:09:28 -07002779 err = build_mlx_header(to_msqp(qp), wr, ctrl, &seglen);
2780 if (unlikely(err)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002781 *bad_wr = wr;
2782 goto out;
2783 }
Roland Dreierf4380002008-04-16 21:09:28 -07002784 wqe += seglen;
2785 size += seglen / 16;
Roland Dreier225c7b12007-05-08 18:00:38 -07002786 break;
2787
2788 default:
2789 break;
2790 }
2791
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002792 /*
2793 * Write data segments in reverse order, so as to
2794 * overwrite cacheline stamp last within each
2795 * cacheline. This avoids issues with WQE
2796 * prefetching.
2797 */
Roland Dreier225c7b12007-05-08 18:00:38 -07002798
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002799 dseg = wqe;
2800 dseg += wr->num_sge - 1;
2801 size += wr->num_sge * (sizeof (struct mlx4_wqe_data_seg) / 16);
Roland Dreier225c7b12007-05-08 18:00:38 -07002802
2803 /* Add one more inline data segment for ICRC for MLX sends */
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002804 if (unlikely(qp->mlx4_ib_qp_type == MLX4_IB_QPT_SMI ||
2805 qp->mlx4_ib_qp_type == MLX4_IB_QPT_GSI ||
2806 qp->mlx4_ib_qp_type &
2807 (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER))) {
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002808 set_mlx_icrc_seg(dseg + 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07002809 size += sizeof (struct mlx4_wqe_data_seg) / 16;
2810 }
2811
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002812 for (i = wr->num_sge - 1; i >= 0; --i, --dseg)
2813 set_data_seg(dseg, wr->sg_list + i);
2814
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002815 /*
2816 * Possibly overwrite stamping in cacheline with LSO
2817 * segment only after making sure all data segments
2818 * are written.
2819 */
2820 wmb();
2821 *lso_wqe = lso_hdr_sz;
2822
Roland Dreier225c7b12007-05-08 18:00:38 -07002823 ctrl->fence_size = (wr->send_flags & IB_SEND_FENCE ?
2824 MLX4_WQE_CTRL_FENCE : 0) | size;
2825
2826 /*
2827 * Make sure descriptor is fully written before
2828 * setting ownership bit (because HW can start
2829 * executing as soon as we do).
2830 */
2831 wmb();
2832
Roland Dreier59b0ed122007-05-19 08:51:58 -07002833 if (wr->opcode < 0 || wr->opcode >= ARRAY_SIZE(mlx4_ib_opcode)) {
Eli Cohen4ba6b8e2012-02-09 18:52:50 +02002834 *bad_wr = wr;
Roland Dreier225c7b12007-05-08 18:00:38 -07002835 err = -EINVAL;
2836 goto out;
2837 }
2838
2839 ctrl->owner_opcode = mlx4_ib_opcode[wr->opcode] |
Eli Cohen417608c2009-11-12 11:19:44 -08002840 (ind & qp->sq.wqe_cnt ? cpu_to_be32(1 << 31) : 0) | blh;
Roland Dreier0e6e7412007-06-18 08:13:48 -07002841
Jack Morgensteinea54b102008-01-28 10:40:59 +02002842 stamp = ind + qp->sq_spare_wqes;
2843 ind += DIV_ROUND_UP(size * 16, 1U << qp->sq.wqe_shift);
2844
Roland Dreier0e6e7412007-06-18 08:13:48 -07002845 /*
2846 * We can improve latency by not stamping the last
2847 * send queue WQE until after ringing the doorbell, so
2848 * only stamp here if there are still more WQEs to post.
Jack Morgensteinea54b102008-01-28 10:40:59 +02002849 *
2850 * Same optimization applies to padding with NOP wqe
2851 * in case of WQE shrinking (used to prevent wrap-around
2852 * in the middle of WR).
Roland Dreier0e6e7412007-06-18 08:13:48 -07002853 */
Jack Morgensteinea54b102008-01-28 10:40:59 +02002854 if (wr->next) {
2855 stamp_send_wqe(qp, stamp, size * 16);
2856 ind = pad_wraparound(qp, ind);
2857 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002858 }
2859
2860out:
2861 if (likely(nreq)) {
2862 qp->sq.head += nreq;
2863
2864 /*
2865 * Make sure that descriptors are written before
2866 * doorbell record.
2867 */
2868 wmb();
2869
2870 writel(qp->doorbell_qpn,
2871 to_mdev(ibqp->device)->uar_map + MLX4_SEND_DOORBELL);
2872
2873 /*
2874 * Make sure doorbells don't leak out of SQ spinlock
2875 * and reach the HCA out of order.
2876 */
2877 mmiowb();
Roland Dreier0e6e7412007-06-18 08:13:48 -07002878
Jack Morgensteinea54b102008-01-28 10:40:59 +02002879 stamp_send_wqe(qp, stamp, size * 16);
2880
2881 ind = pad_wraparound(qp, ind);
2882 qp->sq_next_wqe = ind;
Roland Dreier225c7b12007-05-08 18:00:38 -07002883 }
2884
Roland Dreier96db0e02007-10-30 10:53:54 -07002885 spin_unlock_irqrestore(&qp->sq.lock, flags);
Roland Dreier225c7b12007-05-08 18:00:38 -07002886
2887 return err;
2888}
2889
2890int mlx4_ib_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr,
2891 struct ib_recv_wr **bad_wr)
2892{
2893 struct mlx4_ib_qp *qp = to_mqp(ibqp);
2894 struct mlx4_wqe_data_seg *scat;
2895 unsigned long flags;
2896 int err = 0;
2897 int nreq;
2898 int ind;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002899 int max_gs;
Roland Dreier225c7b12007-05-08 18:00:38 -07002900 int i;
2901
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002902 max_gs = qp->rq.max_gs;
Roland Dreier225c7b12007-05-08 18:00:38 -07002903 spin_lock_irqsave(&qp->rq.lock, flags);
2904
Roland Dreier0e6e7412007-06-18 08:13:48 -07002905 ind = qp->rq.head & (qp->rq.wqe_cnt - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07002906
2907 for (nreq = 0; wr; ++nreq, wr = wr->next) {
Or Gerlitz2b946072010-01-06 12:51:30 -08002908 if (mlx4_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002909 err = -ENOMEM;
2910 *bad_wr = wr;
2911 goto out;
2912 }
2913
2914 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
2915 err = -EINVAL;
2916 *bad_wr = wr;
2917 goto out;
2918 }
2919
2920 scat = get_recv_wqe(qp, ind);
2921
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002922 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
2923 MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI)) {
2924 ib_dma_sync_single_for_device(ibqp->device,
2925 qp->sqp_proxy_rcv[ind].map,
2926 sizeof (struct mlx4_ib_proxy_sqp_hdr),
2927 DMA_FROM_DEVICE);
2928 scat->byte_count =
2929 cpu_to_be32(sizeof (struct mlx4_ib_proxy_sqp_hdr));
2930 /* use dma lkey from upper layer entry */
2931 scat->lkey = cpu_to_be32(wr->sg_list->lkey);
2932 scat->addr = cpu_to_be64(qp->sqp_proxy_rcv[ind].map);
2933 scat++;
2934 max_gs--;
2935 }
2936
Roland Dreier2242fa42007-10-09 19:59:05 -07002937 for (i = 0; i < wr->num_sge; ++i)
2938 __set_data_seg(scat + i, wr->sg_list + i);
Roland Dreier225c7b12007-05-08 18:00:38 -07002939
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002940 if (i < max_gs) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002941 scat[i].byte_count = 0;
2942 scat[i].lkey = cpu_to_be32(MLX4_INVALID_LKEY);
2943 scat[i].addr = 0;
2944 }
2945
2946 qp->rq.wrid[ind] = wr->wr_id;
2947
Roland Dreier0e6e7412007-06-18 08:13:48 -07002948 ind = (ind + 1) & (qp->rq.wqe_cnt - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07002949 }
2950
2951out:
2952 if (likely(nreq)) {
2953 qp->rq.head += nreq;
2954
2955 /*
2956 * Make sure that descriptors are written before
2957 * doorbell record.
2958 */
2959 wmb();
2960
2961 *qp->db.db = cpu_to_be32(qp->rq.head & 0xffff);
2962 }
2963
2964 spin_unlock_irqrestore(&qp->rq.lock, flags);
2965
2966 return err;
2967}
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002968
2969static inline enum ib_qp_state to_ib_qp_state(enum mlx4_qp_state mlx4_state)
2970{
2971 switch (mlx4_state) {
2972 case MLX4_QP_STATE_RST: return IB_QPS_RESET;
2973 case MLX4_QP_STATE_INIT: return IB_QPS_INIT;
2974 case MLX4_QP_STATE_RTR: return IB_QPS_RTR;
2975 case MLX4_QP_STATE_RTS: return IB_QPS_RTS;
2976 case MLX4_QP_STATE_SQ_DRAINING:
2977 case MLX4_QP_STATE_SQD: return IB_QPS_SQD;
2978 case MLX4_QP_STATE_SQER: return IB_QPS_SQE;
2979 case MLX4_QP_STATE_ERR: return IB_QPS_ERR;
2980 default: return -1;
2981 }
2982}
2983
2984static inline enum ib_mig_state to_ib_mig_state(int mlx4_mig_state)
2985{
2986 switch (mlx4_mig_state) {
2987 case MLX4_QP_PM_ARMED: return IB_MIG_ARMED;
2988 case MLX4_QP_PM_REARM: return IB_MIG_REARM;
2989 case MLX4_QP_PM_MIGRATED: return IB_MIG_MIGRATED;
2990 default: return -1;
2991 }
2992}
2993
2994static int to_ib_qp_access_flags(int mlx4_flags)
2995{
2996 int ib_flags = 0;
2997
2998 if (mlx4_flags & MLX4_QP_BIT_RRE)
2999 ib_flags |= IB_ACCESS_REMOTE_READ;
3000 if (mlx4_flags & MLX4_QP_BIT_RWE)
3001 ib_flags |= IB_ACCESS_REMOTE_WRITE;
3002 if (mlx4_flags & MLX4_QP_BIT_RAE)
3003 ib_flags |= IB_ACCESS_REMOTE_ATOMIC;
3004
3005 return ib_flags;
3006}
3007
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03003008static void to_ib_ah_attr(struct mlx4_ib_dev *ibdev, struct ib_ah_attr *ib_ah_attr,
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003009 struct mlx4_qp_path *path)
3010{
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03003011 struct mlx4_dev *dev = ibdev->dev;
3012 int is_eth;
3013
Dotan Barak8fcea952007-07-15 15:00:09 +03003014 memset(ib_ah_attr, 0, sizeof *ib_ah_attr);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003015 ib_ah_attr->port_num = path->sched_queue & 0x40 ? 2 : 1;
3016
3017 if (ib_ah_attr->port_num == 0 || ib_ah_attr->port_num > dev->caps.num_ports)
3018 return;
3019
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03003020 is_eth = rdma_port_get_link_layer(&ibdev->ib_dev, ib_ah_attr->port_num) ==
3021 IB_LINK_LAYER_ETHERNET;
3022 if (is_eth)
3023 ib_ah_attr->sl = ((path->sched_queue >> 3) & 0x7) |
3024 ((path->sched_queue & 4) << 1);
3025 else
3026 ib_ah_attr->sl = (path->sched_queue >> 2) & 0xf;
3027
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003028 ib_ah_attr->dlid = be16_to_cpu(path->rlid);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003029 ib_ah_attr->src_path_bits = path->grh_mylmc & 0x7f;
3030 ib_ah_attr->static_rate = path->static_rate ? path->static_rate - 5 : 0;
3031 ib_ah_attr->ah_flags = (path->grh_mylmc & (1 << 7)) ? IB_AH_GRH : 0;
3032 if (ib_ah_attr->ah_flags) {
3033 ib_ah_attr->grh.sgid_index = path->mgid_index;
3034 ib_ah_attr->grh.hop_limit = path->hop_limit;
3035 ib_ah_attr->grh.traffic_class =
3036 (be32_to_cpu(path->tclass_flowlabel) >> 20) & 0xff;
3037 ib_ah_attr->grh.flow_label =
Jack Morgenstein586bb582007-07-17 18:37:38 -07003038 be32_to_cpu(path->tclass_flowlabel) & 0xfffff;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003039 memcpy(ib_ah_attr->grh.dgid.raw,
3040 path->rgid, sizeof ib_ah_attr->grh.dgid.raw);
3041 }
3042}
3043
3044int mlx4_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask,
3045 struct ib_qp_init_attr *qp_init_attr)
3046{
3047 struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
3048 struct mlx4_ib_qp *qp = to_mqp(ibqp);
3049 struct mlx4_qp_context context;
3050 int mlx4_state;
Dotan Barak0df670302008-04-16 21:09:34 -07003051 int err = 0;
3052
3053 mutex_lock(&qp->mutex);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003054
3055 if (qp->state == IB_QPS_RESET) {
3056 qp_attr->qp_state = IB_QPS_RESET;
3057 goto done;
3058 }
3059
3060 err = mlx4_qp_query(dev->dev, &qp->mqp, &context);
Dotan Barak0df670302008-04-16 21:09:34 -07003061 if (err) {
3062 err = -EINVAL;
3063 goto out;
3064 }
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003065
3066 mlx4_state = be32_to_cpu(context.flags) >> 28;
3067
Dotan Barak0df670302008-04-16 21:09:34 -07003068 qp->state = to_ib_qp_state(mlx4_state);
3069 qp_attr->qp_state = qp->state;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003070 qp_attr->path_mtu = context.mtu_msgmax >> 5;
3071 qp_attr->path_mig_state =
3072 to_ib_mig_state((be32_to_cpu(context.flags) >> 11) & 0x3);
3073 qp_attr->qkey = be32_to_cpu(context.qkey);
3074 qp_attr->rq_psn = be32_to_cpu(context.rnr_nextrecvpsn) & 0xffffff;
3075 qp_attr->sq_psn = be32_to_cpu(context.next_send_psn) & 0xffffff;
3076 qp_attr->dest_qp_num = be32_to_cpu(context.remote_qpn) & 0xffffff;
3077 qp_attr->qp_access_flags =
3078 to_ib_qp_access_flags(be32_to_cpu(context.params2));
3079
3080 if (qp->ibqp.qp_type == IB_QPT_RC || qp->ibqp.qp_type == IB_QPT_UC) {
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03003081 to_ib_ah_attr(dev, &qp_attr->ah_attr, &context.pri_path);
3082 to_ib_ah_attr(dev, &qp_attr->alt_ah_attr, &context.alt_path);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003083 qp_attr->alt_pkey_index = context.alt_path.pkey_index & 0x7f;
3084 qp_attr->alt_port_num = qp_attr->alt_ah_attr.port_num;
3085 }
3086
3087 qp_attr->pkey_index = context.pri_path.pkey_index & 0x7f;
Jack Morgenstein1c27cb72007-07-17 18:37:38 -07003088 if (qp_attr->qp_state == IB_QPS_INIT)
3089 qp_attr->port_num = qp->port;
3090 else
3091 qp_attr->port_num = context.pri_path.sched_queue & 0x40 ? 2 : 1;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003092
3093 /* qp_attr->en_sqd_async_notify is only applicable in modify qp */
3094 qp_attr->sq_draining = mlx4_state == MLX4_QP_STATE_SQ_DRAINING;
3095
3096 qp_attr->max_rd_atomic = 1 << ((be32_to_cpu(context.params1) >> 21) & 0x7);
3097
3098 qp_attr->max_dest_rd_atomic =
3099 1 << ((be32_to_cpu(context.params2) >> 21) & 0x7);
3100 qp_attr->min_rnr_timer =
3101 (be32_to_cpu(context.rnr_nextrecvpsn) >> 24) & 0x1f;
3102 qp_attr->timeout = context.pri_path.ackto >> 3;
3103 qp_attr->retry_cnt = (be32_to_cpu(context.params1) >> 16) & 0x7;
3104 qp_attr->rnr_retry = (be32_to_cpu(context.params1) >> 13) & 0x7;
3105 qp_attr->alt_timeout = context.alt_path.ackto >> 3;
3106
3107done:
3108 qp_attr->cur_qp_state = qp_attr->qp_state;
Roland Dreier7f5eb9b2007-07-17 20:59:02 -07003109 qp_attr->cap.max_recv_wr = qp->rq.wqe_cnt;
3110 qp_attr->cap.max_recv_sge = qp->rq.max_gs;
3111
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003112 if (!ibqp->uobject) {
Roland Dreier7f5eb9b2007-07-17 20:59:02 -07003113 qp_attr->cap.max_send_wr = qp->sq.wqe_cnt;
3114 qp_attr->cap.max_send_sge = qp->sq.max_gs;
3115 } else {
3116 qp_attr->cap.max_send_wr = 0;
3117 qp_attr->cap.max_send_sge = 0;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003118 }
3119
Roland Dreier7f5eb9b2007-07-17 20:59:02 -07003120 /*
3121 * We don't support inline sends for kernel QPs (yet), and we
3122 * don't know what userspace's value should be.
3123 */
3124 qp_attr->cap.max_inline_data = 0;
3125
3126 qp_init_attr->cap = qp_attr->cap;
3127
Ron Livne521e5752008-07-14 23:48:48 -07003128 qp_init_attr->create_flags = 0;
3129 if (qp->flags & MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK)
3130 qp_init_attr->create_flags |= IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK;
3131
3132 if (qp->flags & MLX4_IB_QP_LSO)
3133 qp_init_attr->create_flags |= IB_QP_CREATE_IPOIB_UD_LSO;
3134
Matan Barakc1c98502013-11-07 15:25:17 +02003135 if (qp->flags & MLX4_IB_QP_NETIF)
3136 qp_init_attr->create_flags |= IB_QP_CREATE_NETIF_QP;
3137
Dotan Barak46db5672012-08-23 14:09:03 +00003138 qp_init_attr->sq_sig_type =
3139 qp->sq_signal_bits == cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE) ?
3140 IB_SIGNAL_ALL_WR : IB_SIGNAL_REQ_WR;
3141
Dotan Barak0df670302008-04-16 21:09:34 -07003142out:
3143 mutex_unlock(&qp->mutex);
3144 return err;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003145}
3146