blob: c880329b4d64691e3596490b2c18ad67c6ab4ef9 [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
43#include <linux/mlx4/qp.h>
44
45#include "mlx4_ib.h"
46#include "user.h"
47
48enum {
49 MLX4_IB_ACK_REQ_FREQ = 8,
50};
51
52enum {
53 MLX4_IB_DEFAULT_SCHED_QUEUE = 0x83,
Eli Cohenfa417f72010-10-24 21:08:52 -070054 MLX4_IB_DEFAULT_QP0_SCHED_QUEUE = 0x3f,
55 MLX4_IB_LINK_TYPE_IB = 0,
56 MLX4_IB_LINK_TYPE_ETH = 1
Roland Dreier225c7b12007-05-08 18:00:38 -070057};
58
59enum {
60 /*
Eli Cohenfa417f72010-10-24 21:08:52 -070061 * Largest possible UD header: send with GRH and immediate
Eli Cohen4c3eb3c2010-08-26 17:19:22 +030062 * data plus 18 bytes for an Ethernet header with VLAN/802.1Q
63 * tag. (LRH would only use 8 bytes, so Ethernet is the
64 * biggest case)
Roland Dreier225c7b12007-05-08 18:00:38 -070065 */
Eli Cohen4c3eb3c2010-08-26 17:19:22 +030066 MLX4_IB_UD_HEADER_SIZE = 82,
Eli Cohen417608c2009-11-12 11:19:44 -080067 MLX4_IB_LSO_HEADER_SPARE = 128,
Roland Dreier225c7b12007-05-08 18:00:38 -070068};
69
Eli Cohenfa417f72010-10-24 21:08:52 -070070enum {
71 MLX4_IB_IBOE_ETHERTYPE = 0x8915
72};
73
Roland Dreier225c7b12007-05-08 18:00:38 -070074struct mlx4_ib_sqp {
75 struct mlx4_ib_qp qp;
76 int pkey_index;
77 u32 qkey;
78 u32 send_psn;
79 struct ib_ud_header ud_header;
80 u8 header_buf[MLX4_IB_UD_HEADER_SIZE];
81};
82
Jack Morgenstein83904132007-10-18 17:36:43 +020083enum {
Eli Cohen417608c2009-11-12 11:19:44 -080084 MLX4_IB_MIN_SQ_STRIDE = 6,
85 MLX4_IB_CACHE_LINE_SIZE = 64,
Jack Morgenstein83904132007-10-18 17:36:43 +020086};
87
Or Gerlitz3987a2d2012-01-17 13:39:07 +020088enum {
89 MLX4_RAW_QP_MTU = 7,
90 MLX4_RAW_QP_MSGMAX = 31,
91};
92
Moni Shoua297e0da2013-12-12 18:03:14 +020093#ifndef ETH_ALEN
94#define ETH_ALEN 6
95#endif
96static inline u64 mlx4_mac_to_u64(u8 *addr)
97{
98 u64 mac = 0;
99 int i;
100
101 for (i = 0; i < ETH_ALEN; i++) {
102 mac <<= 8;
103 mac |= addr[i];
104 }
105 return mac;
106}
107
Roland Dreier225c7b12007-05-08 18:00:38 -0700108static const __be32 mlx4_ib_opcode[] = {
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +0300109 [IB_WR_SEND] = cpu_to_be32(MLX4_OPCODE_SEND),
110 [IB_WR_LSO] = cpu_to_be32(MLX4_OPCODE_LSO),
111 [IB_WR_SEND_WITH_IMM] = cpu_to_be32(MLX4_OPCODE_SEND_IMM),
112 [IB_WR_RDMA_WRITE] = cpu_to_be32(MLX4_OPCODE_RDMA_WRITE),
113 [IB_WR_RDMA_WRITE_WITH_IMM] = cpu_to_be32(MLX4_OPCODE_RDMA_WRITE_IMM),
114 [IB_WR_RDMA_READ] = cpu_to_be32(MLX4_OPCODE_RDMA_READ),
115 [IB_WR_ATOMIC_CMP_AND_SWP] = cpu_to_be32(MLX4_OPCODE_ATOMIC_CS),
116 [IB_WR_ATOMIC_FETCH_AND_ADD] = cpu_to_be32(MLX4_OPCODE_ATOMIC_FA),
117 [IB_WR_SEND_WITH_INV] = cpu_to_be32(MLX4_OPCODE_SEND_INVAL),
118 [IB_WR_LOCAL_INV] = cpu_to_be32(MLX4_OPCODE_LOCAL_INVAL),
119 [IB_WR_FAST_REG_MR] = cpu_to_be32(MLX4_OPCODE_FMR),
120 [IB_WR_MASKED_ATOMIC_CMP_AND_SWP] = cpu_to_be32(MLX4_OPCODE_MASKED_ATOMIC_CS),
121 [IB_WR_MASKED_ATOMIC_FETCH_AND_ADD] = cpu_to_be32(MLX4_OPCODE_MASKED_ATOMIC_FA),
Shani Michaeli6ff63e12013-02-06 16:19:15 +0000122 [IB_WR_BIND_MW] = cpu_to_be32(MLX4_OPCODE_BIND_MW),
Roland Dreier225c7b12007-05-08 18:00:38 -0700123};
124
125static struct mlx4_ib_sqp *to_msqp(struct mlx4_ib_qp *mqp)
126{
127 return container_of(mqp, struct mlx4_ib_sqp, qp);
128}
129
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000130static int is_tunnel_qp(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
Roland Dreier225c7b12007-05-08 18:00:38 -0700131{
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000132 if (!mlx4_is_master(dev->dev))
133 return 0;
134
Jack Morgenstein47605df2012-08-03 08:40:57 +0000135 return qp->mqp.qpn >= dev->dev->phys_caps.base_tunnel_sqpn &&
136 qp->mqp.qpn < dev->dev->phys_caps.base_tunnel_sqpn +
137 8 * MLX4_MFUNC_MAX;
Roland Dreier225c7b12007-05-08 18:00:38 -0700138}
139
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000140static int is_sqp(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
141{
Jack Morgenstein47605df2012-08-03 08:40:57 +0000142 int proxy_sqp = 0;
143 int real_sqp = 0;
144 int i;
145 /* PPF or Native -- real SQP */
146 real_sqp = ((mlx4_is_master(dev->dev) || !mlx4_is_mfunc(dev->dev)) &&
147 qp->mqp.qpn >= dev->dev->phys_caps.base_sqpn &&
148 qp->mqp.qpn <= dev->dev->phys_caps.base_sqpn + 3);
149 if (real_sqp)
150 return 1;
151 /* VF or PF -- proxy SQP */
152 if (mlx4_is_mfunc(dev->dev)) {
153 for (i = 0; i < dev->dev->caps.num_ports; i++) {
154 if (qp->mqp.qpn == dev->dev->caps.qp0_proxy[i] ||
155 qp->mqp.qpn == dev->dev->caps.qp1_proxy[i]) {
156 proxy_sqp = 1;
157 break;
158 }
159 }
160 }
161 return proxy_sqp;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000162}
163
164/* used for INIT/CLOSE port logic */
Roland Dreier225c7b12007-05-08 18:00:38 -0700165static int is_qp0(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
166{
Jack Morgenstein47605df2012-08-03 08:40:57 +0000167 int proxy_qp0 = 0;
168 int real_qp0 = 0;
169 int i;
170 /* PPF or Native -- real QP0 */
171 real_qp0 = ((mlx4_is_master(dev->dev) || !mlx4_is_mfunc(dev->dev)) &&
172 qp->mqp.qpn >= dev->dev->phys_caps.base_sqpn &&
173 qp->mqp.qpn <= dev->dev->phys_caps.base_sqpn + 1);
174 if (real_qp0)
175 return 1;
176 /* VF or PF -- proxy QP0 */
177 if (mlx4_is_mfunc(dev->dev)) {
178 for (i = 0; i < dev->dev->caps.num_ports; i++) {
179 if (qp->mqp.qpn == dev->dev->caps.qp0_proxy[i]) {
180 proxy_qp0 = 1;
181 break;
182 }
183 }
184 }
185 return proxy_qp0;
Roland Dreier225c7b12007-05-08 18:00:38 -0700186}
187
188static void *get_wqe(struct mlx4_ib_qp *qp, int offset)
189{
Roland Dreier1c69fc22008-02-06 21:07:54 -0800190 return mlx4_buf_offset(&qp->buf, offset);
Roland Dreier225c7b12007-05-08 18:00:38 -0700191}
192
193static void *get_recv_wqe(struct mlx4_ib_qp *qp, int n)
194{
195 return get_wqe(qp, qp->rq.offset + (n << qp->rq.wqe_shift));
196}
197
198static void *get_send_wqe(struct mlx4_ib_qp *qp, int n)
199{
200 return get_wqe(qp, qp->sq.offset + (n << qp->sq.wqe_shift));
201}
202
Roland Dreier0e6e7412007-06-18 08:13:48 -0700203/*
204 * Stamp a SQ WQE so that it is invalid if prefetched by marking the
Jack Morgensteinea54b102008-01-28 10:40:59 +0200205 * first four bytes of every 64 byte chunk with
206 * 0x7FFFFFF | (invalid_ownership_value << 31).
207 *
208 * When the max work request size is less than or equal to the WQE
209 * basic block size, as an optimization, we can stamp all WQEs with
210 * 0xffffffff, and skip the very first chunk of each WQE.
Roland Dreier0e6e7412007-06-18 08:13:48 -0700211 */
Jack Morgensteinea54b102008-01-28 10:40:59 +0200212static void stamp_send_wqe(struct mlx4_ib_qp *qp, int n, int size)
Roland Dreier0e6e7412007-06-18 08:13:48 -0700213{
Roland Dreierd2ae16d2008-04-16 21:01:07 -0700214 __be32 *wqe;
Roland Dreier0e6e7412007-06-18 08:13:48 -0700215 int i;
Jack Morgensteinea54b102008-01-28 10:40:59 +0200216 int s;
217 int ind;
218 void *buf;
219 __be32 stamp;
Eli Cohen9670e552008-07-14 23:48:44 -0700220 struct mlx4_wqe_ctrl_seg *ctrl;
Roland Dreier0e6e7412007-06-18 08:13:48 -0700221
Jack Morgensteinea54b102008-01-28 10:40:59 +0200222 if (qp->sq_max_wqes_per_wr > 1) {
Eli Cohen9670e552008-07-14 23:48:44 -0700223 s = roundup(size, 1U << qp->sq.wqe_shift);
Jack Morgensteinea54b102008-01-28 10:40:59 +0200224 for (i = 0; i < s; i += 64) {
225 ind = (i >> qp->sq.wqe_shift) + n;
226 stamp = ind & qp->sq.wqe_cnt ? cpu_to_be32(0x7fffffff) :
227 cpu_to_be32(0xffffffff);
228 buf = get_send_wqe(qp, ind & (qp->sq.wqe_cnt - 1));
229 wqe = buf + (i & ((1 << qp->sq.wqe_shift) - 1));
230 *wqe = stamp;
231 }
232 } else {
Eli Cohen9670e552008-07-14 23:48:44 -0700233 ctrl = buf = get_send_wqe(qp, n & (qp->sq.wqe_cnt - 1));
234 s = (ctrl->fence_size & 0x3f) << 4;
Jack Morgensteinea54b102008-01-28 10:40:59 +0200235 for (i = 64; i < s; i += 64) {
236 wqe = buf + i;
Roland Dreierd2ae16d2008-04-16 21:01:07 -0700237 *wqe = cpu_to_be32(0xffffffff);
Jack Morgensteinea54b102008-01-28 10:40:59 +0200238 }
239 }
240}
241
242static void post_nop_wqe(struct mlx4_ib_qp *qp, int n, int size)
243{
244 struct mlx4_wqe_ctrl_seg *ctrl;
245 struct mlx4_wqe_inline_seg *inl;
246 void *wqe;
247 int s;
248
249 ctrl = wqe = get_send_wqe(qp, n & (qp->sq.wqe_cnt - 1));
250 s = sizeof(struct mlx4_wqe_ctrl_seg);
251
252 if (qp->ibqp.qp_type == IB_QPT_UD) {
253 struct mlx4_wqe_datagram_seg *dgram = wqe + sizeof *ctrl;
254 struct mlx4_av *av = (struct mlx4_av *)dgram->av;
255 memset(dgram, 0, sizeof *dgram);
256 av->port_pd = cpu_to_be32((qp->port << 24) | to_mpd(qp->ibqp.pd)->pdn);
257 s += sizeof(struct mlx4_wqe_datagram_seg);
258 }
259
260 /* Pad the remainder of the WQE with an inline data segment. */
261 if (size > s) {
262 inl = wqe + s;
263 inl->byte_count = cpu_to_be32(1 << 31 | (size - s - sizeof *inl));
264 }
265 ctrl->srcrb_flags = 0;
266 ctrl->fence_size = size / 16;
267 /*
268 * Make sure descriptor is fully written before setting ownership bit
269 * (because HW can start executing as soon as we do).
270 */
271 wmb();
272
273 ctrl->owner_opcode = cpu_to_be32(MLX4_OPCODE_NOP | MLX4_WQE_CTRL_NEC) |
274 (n & qp->sq.wqe_cnt ? cpu_to_be32(1 << 31) : 0);
275
276 stamp_send_wqe(qp, n + qp->sq_spare_wqes, size);
277}
278
279/* Post NOP WQE to prevent wrap-around in the middle of WR */
280static inline unsigned pad_wraparound(struct mlx4_ib_qp *qp, int ind)
281{
282 unsigned s = qp->sq.wqe_cnt - (ind & (qp->sq.wqe_cnt - 1));
283 if (unlikely(s < qp->sq_max_wqes_per_wr)) {
284 post_nop_wqe(qp, ind, s << qp->sq.wqe_shift);
285 ind += s;
286 }
287 return ind;
Roland Dreier0e6e7412007-06-18 08:13:48 -0700288}
289
Roland Dreier225c7b12007-05-08 18:00:38 -0700290static void mlx4_ib_qp_event(struct mlx4_qp *qp, enum mlx4_event type)
291{
292 struct ib_event event;
293 struct ib_qp *ibqp = &to_mibqp(qp)->ibqp;
294
295 if (type == MLX4_EVENT_TYPE_PATH_MIG)
296 to_mibqp(qp)->port = to_mibqp(qp)->alt_port;
297
298 if (ibqp->event_handler) {
299 event.device = ibqp->device;
300 event.element.qp = ibqp;
301 switch (type) {
302 case MLX4_EVENT_TYPE_PATH_MIG:
303 event.event = IB_EVENT_PATH_MIG;
304 break;
305 case MLX4_EVENT_TYPE_COMM_EST:
306 event.event = IB_EVENT_COMM_EST;
307 break;
308 case MLX4_EVENT_TYPE_SQ_DRAINED:
309 event.event = IB_EVENT_SQ_DRAINED;
310 break;
311 case MLX4_EVENT_TYPE_SRQ_QP_LAST_WQE:
312 event.event = IB_EVENT_QP_LAST_WQE_REACHED;
313 break;
314 case MLX4_EVENT_TYPE_WQ_CATAS_ERROR:
315 event.event = IB_EVENT_QP_FATAL;
316 break;
317 case MLX4_EVENT_TYPE_PATH_MIG_FAILED:
318 event.event = IB_EVENT_PATH_MIG_ERR;
319 break;
320 case MLX4_EVENT_TYPE_WQ_INVAL_REQ_ERROR:
321 event.event = IB_EVENT_QP_REQ_ERR;
322 break;
323 case MLX4_EVENT_TYPE_WQ_ACCESS_ERROR:
324 event.event = IB_EVENT_QP_ACCESS_ERR;
325 break;
326 default:
Shlomo Pongratz987c8f82012-04-29 17:04:26 +0300327 pr_warn("Unexpected event type %d "
Roland Dreier225c7b12007-05-08 18:00:38 -0700328 "on QP %06x\n", type, qp->qpn);
329 return;
330 }
331
332 ibqp->event_handler(&event, ibqp->qp_context);
333 }
334}
335
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000336static int send_wqe_overhead(enum mlx4_ib_qp_type type, u32 flags)
Roland Dreier225c7b12007-05-08 18:00:38 -0700337{
338 /*
339 * UD WQEs must have a datagram segment.
340 * RC and UC WQEs might have a remote address segment.
341 * MLX WQEs need two extra inline data segments (for the UD
342 * header and space for the ICRC).
343 */
344 switch (type) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000345 case MLX4_IB_QPT_UD:
Roland Dreier225c7b12007-05-08 18:00:38 -0700346 return sizeof (struct mlx4_wqe_ctrl_seg) +
Eli Cohenb832be12008-04-16 21:09:27 -0700347 sizeof (struct mlx4_wqe_datagram_seg) +
Eli Cohen417608c2009-11-12 11:19:44 -0800348 ((flags & MLX4_IB_QP_LSO) ? MLX4_IB_LSO_HEADER_SPARE : 0);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000349 case MLX4_IB_QPT_PROXY_SMI_OWNER:
350 case MLX4_IB_QPT_PROXY_SMI:
351 case MLX4_IB_QPT_PROXY_GSI:
352 return sizeof (struct mlx4_wqe_ctrl_seg) +
353 sizeof (struct mlx4_wqe_datagram_seg) + 64;
354 case MLX4_IB_QPT_TUN_SMI_OWNER:
355 case MLX4_IB_QPT_TUN_GSI:
356 return sizeof (struct mlx4_wqe_ctrl_seg) +
357 sizeof (struct mlx4_wqe_datagram_seg);
358
359 case MLX4_IB_QPT_UC:
Roland Dreier225c7b12007-05-08 18:00:38 -0700360 return sizeof (struct mlx4_wqe_ctrl_seg) +
361 sizeof (struct mlx4_wqe_raddr_seg);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000362 case MLX4_IB_QPT_RC:
Roland Dreier225c7b12007-05-08 18:00:38 -0700363 return sizeof (struct mlx4_wqe_ctrl_seg) +
364 sizeof (struct mlx4_wqe_atomic_seg) +
365 sizeof (struct mlx4_wqe_raddr_seg);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000366 case MLX4_IB_QPT_SMI:
367 case MLX4_IB_QPT_GSI:
Roland Dreier225c7b12007-05-08 18:00:38 -0700368 return sizeof (struct mlx4_wqe_ctrl_seg) +
369 ALIGN(MLX4_IB_UD_HEADER_SIZE +
Roland Dreiere61ef242007-06-18 09:23:47 -0700370 DIV_ROUND_UP(MLX4_IB_UD_HEADER_SIZE,
371 MLX4_INLINE_ALIGN) *
Roland Dreier225c7b12007-05-08 18:00:38 -0700372 sizeof (struct mlx4_wqe_inline_seg),
373 sizeof (struct mlx4_wqe_data_seg)) +
374 ALIGN(4 +
375 sizeof (struct mlx4_wqe_inline_seg),
376 sizeof (struct mlx4_wqe_data_seg));
377 default:
378 return sizeof (struct mlx4_wqe_ctrl_seg);
379 }
380}
381
Eli Cohen24463042007-05-17 10:32:41 +0300382static int set_rq_size(struct mlx4_ib_dev *dev, struct ib_qp_cap *cap,
Sean Hefty0a1405d2011-06-02 11:32:15 -0700383 int is_user, int has_rq, struct mlx4_ib_qp *qp)
Roland Dreier225c7b12007-05-08 18:00:38 -0700384{
Eli Cohen24463042007-05-17 10:32:41 +0300385 /* Sanity check RQ size before proceeding */
Sagi Grimbergfc2d0042012-05-24 16:08:08 +0300386 if (cap->max_recv_wr > dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE ||
387 cap->max_recv_sge > min(dev->dev->caps.max_sq_sg, dev->dev->caps.max_rq_sg))
Eli Cohen24463042007-05-17 10:32:41 +0300388 return -EINVAL;
389
Sean Hefty0a1405d2011-06-02 11:32:15 -0700390 if (!has_rq) {
Roland Dreiera4cd7ed2007-06-07 23:24:39 -0700391 if (cap->max_recv_wr)
392 return -EINVAL;
Eli Cohen24463042007-05-17 10:32:41 +0300393
Roland Dreier0e6e7412007-06-18 08:13:48 -0700394 qp->rq.wqe_cnt = qp->rq.max_gs = 0;
Roland Dreiera4cd7ed2007-06-07 23:24:39 -0700395 } else {
396 /* HW requires >= 1 RQ entry with >= 1 gather entry */
397 if (is_user && (!cap->max_recv_wr || !cap->max_recv_sge))
398 return -EINVAL;
399
Roland Dreier0e6e7412007-06-18 08:13:48 -0700400 qp->rq.wqe_cnt = roundup_pow_of_two(max(1U, cap->max_recv_wr));
Roland Dreier42c059ea2007-06-12 10:52:02 -0700401 qp->rq.max_gs = roundup_pow_of_two(max(1U, cap->max_recv_sge));
Roland Dreiera4cd7ed2007-06-07 23:24:39 -0700402 qp->rq.wqe_shift = ilog2(qp->rq.max_gs * sizeof (struct mlx4_wqe_data_seg));
403 }
Eli Cohen24463042007-05-17 10:32:41 +0300404
Sagi Grimbergfc2d0042012-05-24 16:08:08 +0300405 /* leave userspace return values as they were, so as not to break ABI */
406 if (is_user) {
407 cap->max_recv_wr = qp->rq.max_post = qp->rq.wqe_cnt;
408 cap->max_recv_sge = qp->rq.max_gs;
409 } else {
410 cap->max_recv_wr = qp->rq.max_post =
411 min(dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE, qp->rq.wqe_cnt);
412 cap->max_recv_sge = min(qp->rq.max_gs,
413 min(dev->dev->caps.max_sq_sg,
414 dev->dev->caps.max_rq_sg));
415 }
Eli Cohen24463042007-05-17 10:32:41 +0300416
417 return 0;
418}
419
420static int set_kernel_sq_size(struct mlx4_ib_dev *dev, struct ib_qp_cap *cap,
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000421 enum mlx4_ib_qp_type type, struct mlx4_ib_qp *qp)
Eli Cohen24463042007-05-17 10:32:41 +0300422{
Jack Morgensteinea54b102008-01-28 10:40:59 +0200423 int s;
424
Eli Cohen24463042007-05-17 10:32:41 +0300425 /* Sanity check SQ size before proceeding */
Sagi Grimbergfc2d0042012-05-24 16:08:08 +0300426 if (cap->max_send_wr > (dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE) ||
427 cap->max_send_sge > min(dev->dev->caps.max_sq_sg, dev->dev->caps.max_rq_sg) ||
Eli Cohenb832be12008-04-16 21:09:27 -0700428 cap->max_inline_data + send_wqe_overhead(type, qp->flags) +
Roland Dreier225c7b12007-05-08 18:00:38 -0700429 sizeof (struct mlx4_wqe_inline_seg) > dev->dev->caps.max_sq_desc_sz)
430 return -EINVAL;
431
432 /*
433 * For MLX transport we need 2 extra S/G entries:
434 * one for the header and one for the checksum at the end
435 */
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000436 if ((type == MLX4_IB_QPT_SMI || type == MLX4_IB_QPT_GSI ||
437 type & (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER)) &&
Roland Dreier225c7b12007-05-08 18:00:38 -0700438 cap->max_send_sge + 2 > dev->dev->caps.max_sq_sg)
439 return -EINVAL;
440
Jack Morgensteinea54b102008-01-28 10:40:59 +0200441 s = max(cap->max_send_sge * sizeof (struct mlx4_wqe_data_seg),
442 cap->max_inline_data + sizeof (struct mlx4_wqe_inline_seg)) +
Eli Cohenb832be12008-04-16 21:09:27 -0700443 send_wqe_overhead(type, qp->flags);
Roland Dreier225c7b12007-05-08 18:00:38 -0700444
Roland Dreiercd155c12008-05-20 14:00:02 -0700445 if (s > dev->dev->caps.max_sq_desc_sz)
446 return -EINVAL;
447
Roland Dreier0e6e7412007-06-18 08:13:48 -0700448 /*
Jack Morgensteinea54b102008-01-28 10:40:59 +0200449 * Hermon supports shrinking WQEs, such that a single work
450 * request can include multiple units of 1 << wqe_shift. This
451 * way, work requests can differ in size, and do not have to
452 * be a power of 2 in size, saving memory and speeding up send
453 * WR posting. Unfortunately, if we do this then the
454 * wqe_index field in CQEs can't be used to look up the WR ID
455 * anymore, so we do this only if selective signaling is off.
456 *
457 * Further, on 32-bit platforms, we can't use vmap() to make
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200458 * the QP buffer virtually contiguous. Thus we have to use
Jack Morgensteinea54b102008-01-28 10:40:59 +0200459 * constant-sized WRs to make sure a WR is always fully within
460 * a single page-sized chunk.
461 *
462 * Finally, we use NOP work requests to pad the end of the
463 * work queue, to avoid wrap-around in the middle of WR. We
464 * set NEC bit to avoid getting completions with error for
465 * these NOP WRs, but since NEC is only supported starting
466 * with firmware 2.2.232, we use constant-sized WRs for older
467 * firmware.
468 *
469 * And, since MLX QPs only support SEND, we use constant-sized
470 * WRs in this case.
471 *
472 * We look for the smallest value of wqe_shift such that the
473 * resulting number of wqes does not exceed device
474 * capabilities.
475 *
476 * We set WQE size to at least 64 bytes, this way stamping
477 * invalidates each WQE.
Roland Dreier0e6e7412007-06-18 08:13:48 -0700478 */
Jack Morgensteinea54b102008-01-28 10:40:59 +0200479 if (dev->dev->caps.fw_ver >= MLX4_FW_VER_WQE_CTRL_NEC &&
480 qp->sq_signal_bits && BITS_PER_LONG == 64 &&
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000481 type != MLX4_IB_QPT_SMI && type != MLX4_IB_QPT_GSI &&
482 !(type & (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_PROXY_SMI |
483 MLX4_IB_QPT_PROXY_GSI | MLX4_IB_QPT_TUN_SMI_OWNER)))
Jack Morgensteinea54b102008-01-28 10:40:59 +0200484 qp->sq.wqe_shift = ilog2(64);
485 else
486 qp->sq.wqe_shift = ilog2(roundup_pow_of_two(s));
487
488 for (;;) {
Jack Morgensteinea54b102008-01-28 10:40:59 +0200489 qp->sq_max_wqes_per_wr = DIV_ROUND_UP(s, 1U << qp->sq.wqe_shift);
490
491 /*
492 * We need to leave 2 KB + 1 WR of headroom in the SQ to
493 * allow HW to prefetch.
494 */
495 qp->sq_spare_wqes = (2048 >> qp->sq.wqe_shift) + qp->sq_max_wqes_per_wr;
496 qp->sq.wqe_cnt = roundup_pow_of_two(cap->max_send_wr *
497 qp->sq_max_wqes_per_wr +
498 qp->sq_spare_wqes);
499
500 if (qp->sq.wqe_cnt <= dev->dev->caps.max_wqes)
501 break;
502
503 if (qp->sq_max_wqes_per_wr <= 1)
504 return -EINVAL;
505
506 ++qp->sq.wqe_shift;
507 }
508
Roland Dreiercd155c12008-05-20 14:00:02 -0700509 qp->sq.max_gs = (min(dev->dev->caps.max_sq_desc_sz,
510 (qp->sq_max_wqes_per_wr << qp->sq.wqe_shift)) -
Eli Cohenb832be12008-04-16 21:09:27 -0700511 send_wqe_overhead(type, qp->flags)) /
512 sizeof (struct mlx4_wqe_data_seg);
Roland Dreier0e6e7412007-06-18 08:13:48 -0700513
514 qp->buf_size = (qp->rq.wqe_cnt << qp->rq.wqe_shift) +
515 (qp->sq.wqe_cnt << qp->sq.wqe_shift);
Roland Dreier225c7b12007-05-08 18:00:38 -0700516 if (qp->rq.wqe_shift > qp->sq.wqe_shift) {
517 qp->rq.offset = 0;
Roland Dreier0e6e7412007-06-18 08:13:48 -0700518 qp->sq.offset = qp->rq.wqe_cnt << qp->rq.wqe_shift;
Roland Dreier225c7b12007-05-08 18:00:38 -0700519 } else {
Roland Dreier0e6e7412007-06-18 08:13:48 -0700520 qp->rq.offset = qp->sq.wqe_cnt << qp->sq.wqe_shift;
Roland Dreier225c7b12007-05-08 18:00:38 -0700521 qp->sq.offset = 0;
522 }
523
Jack Morgensteinea54b102008-01-28 10:40:59 +0200524 cap->max_send_wr = qp->sq.max_post =
525 (qp->sq.wqe_cnt - qp->sq_spare_wqes) / qp->sq_max_wqes_per_wr;
Roland Dreiercd155c12008-05-20 14:00:02 -0700526 cap->max_send_sge = min(qp->sq.max_gs,
527 min(dev->dev->caps.max_sq_sg,
528 dev->dev->caps.max_rq_sg));
Roland Dreier54e95f82007-06-18 08:13:53 -0700529 /* We don't support inline sends for kernel QPs (yet) */
530 cap->max_inline_data = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -0700531
532 return 0;
533}
534
Jack Morgenstein83904132007-10-18 17:36:43 +0200535static int set_user_sq_size(struct mlx4_ib_dev *dev,
536 struct mlx4_ib_qp *qp,
Eli Cohen24463042007-05-17 10:32:41 +0300537 struct mlx4_ib_create_qp *ucmd)
538{
Jack Morgenstein83904132007-10-18 17:36:43 +0200539 /* Sanity check SQ size before proceeding */
540 if ((1 << ucmd->log_sq_bb_count) > dev->dev->caps.max_wqes ||
541 ucmd->log_sq_stride >
542 ilog2(roundup_pow_of_two(dev->dev->caps.max_sq_desc_sz)) ||
543 ucmd->log_sq_stride < MLX4_IB_MIN_SQ_STRIDE)
544 return -EINVAL;
545
Roland Dreier0e6e7412007-06-18 08:13:48 -0700546 qp->sq.wqe_cnt = 1 << ucmd->log_sq_bb_count;
Eli Cohen24463042007-05-17 10:32:41 +0300547 qp->sq.wqe_shift = ucmd->log_sq_stride;
548
Roland Dreier0e6e7412007-06-18 08:13:48 -0700549 qp->buf_size = (qp->rq.wqe_cnt << qp->rq.wqe_shift) +
550 (qp->sq.wqe_cnt << qp->sq.wqe_shift);
Eli Cohen24463042007-05-17 10:32:41 +0300551
552 return 0;
553}
554
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000555static int alloc_proxy_bufs(struct ib_device *dev, struct mlx4_ib_qp *qp)
556{
557 int i;
558
559 qp->sqp_proxy_rcv =
560 kmalloc(sizeof (struct mlx4_ib_buf) * qp->rq.wqe_cnt,
561 GFP_KERNEL);
562 if (!qp->sqp_proxy_rcv)
563 return -ENOMEM;
564 for (i = 0; i < qp->rq.wqe_cnt; i++) {
565 qp->sqp_proxy_rcv[i].addr =
566 kmalloc(sizeof (struct mlx4_ib_proxy_sqp_hdr),
567 GFP_KERNEL);
568 if (!qp->sqp_proxy_rcv[i].addr)
569 goto err;
570 qp->sqp_proxy_rcv[i].map =
571 ib_dma_map_single(dev, qp->sqp_proxy_rcv[i].addr,
572 sizeof (struct mlx4_ib_proxy_sqp_hdr),
573 DMA_FROM_DEVICE);
574 }
575 return 0;
576
577err:
578 while (i > 0) {
579 --i;
580 ib_dma_unmap_single(dev, qp->sqp_proxy_rcv[i].map,
581 sizeof (struct mlx4_ib_proxy_sqp_hdr),
582 DMA_FROM_DEVICE);
583 kfree(qp->sqp_proxy_rcv[i].addr);
584 }
585 kfree(qp->sqp_proxy_rcv);
586 qp->sqp_proxy_rcv = NULL;
587 return -ENOMEM;
588}
589
590static void free_proxy_bufs(struct ib_device *dev, struct mlx4_ib_qp *qp)
591{
592 int i;
593
594 for (i = 0; i < qp->rq.wqe_cnt; i++) {
595 ib_dma_unmap_single(dev, qp->sqp_proxy_rcv[i].map,
596 sizeof (struct mlx4_ib_proxy_sqp_hdr),
597 DMA_FROM_DEVICE);
598 kfree(qp->sqp_proxy_rcv[i].addr);
599 }
600 kfree(qp->sqp_proxy_rcv);
601}
602
Sean Hefty0a1405d2011-06-02 11:32:15 -0700603static int qp_has_rq(struct ib_qp_init_attr *attr)
604{
605 if (attr->qp_type == IB_QPT_XRC_INI || attr->qp_type == IB_QPT_XRC_TGT)
606 return 0;
607
608 return !attr->srq;
609}
610
Jack Morgenstein99ec41d2014-05-29 16:31:03 +0300611static int qp0_enabled_vf(struct mlx4_dev *dev, int qpn)
612{
613 int i;
614 for (i = 0; i < dev->caps.num_ports; i++) {
615 if (qpn == dev->caps.qp0_proxy[i])
616 return !!dev->caps.qp0_qkey[i];
617 }
618 return 0;
619}
620
Roland Dreier225c7b12007-05-08 18:00:38 -0700621static int create_qp_common(struct mlx4_ib_dev *dev, struct ib_pd *pd,
622 struct ib_qp_init_attr *init_attr,
Jiri Kosina40f22872014-05-11 15:15:12 +0300623 struct ib_udata *udata, int sqpn, struct mlx4_ib_qp **caller_qp,
624 gfp_t gfp)
Roland Dreier225c7b12007-05-08 18:00:38 -0700625{
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700626 int qpn;
Roland Dreier225c7b12007-05-08 18:00:38 -0700627 int err;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000628 struct mlx4_ib_sqp *sqp;
629 struct mlx4_ib_qp *qp;
630 enum mlx4_ib_qp_type qp_type = (enum mlx4_ib_qp_type) init_attr->qp_type;
631
632 /* When tunneling special qps, we use a plain UD qp */
633 if (sqpn) {
634 if (mlx4_is_mfunc(dev->dev) &&
635 (!mlx4_is_master(dev->dev) ||
636 !(init_attr->create_flags & MLX4_IB_SRIOV_SQP))) {
637 if (init_attr->qp_type == IB_QPT_GSI)
638 qp_type = MLX4_IB_QPT_PROXY_GSI;
Jack Morgenstein99ec41d2014-05-29 16:31:03 +0300639 else {
640 if (mlx4_is_master(dev->dev) ||
641 qp0_enabled_vf(dev->dev, sqpn))
642 qp_type = MLX4_IB_QPT_PROXY_SMI_OWNER;
643 else
644 qp_type = MLX4_IB_QPT_PROXY_SMI;
645 }
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000646 }
647 qpn = sqpn;
648 /* add extra sg entry for tunneling */
649 init_attr->cap.max_recv_sge++;
650 } else if (init_attr->create_flags & MLX4_IB_SRIOV_TUNNEL_QP) {
651 struct mlx4_ib_qp_tunnel_init_attr *tnl_init =
652 container_of(init_attr,
653 struct mlx4_ib_qp_tunnel_init_attr, init_attr);
654 if ((tnl_init->proxy_qp_type != IB_QPT_SMI &&
655 tnl_init->proxy_qp_type != IB_QPT_GSI) ||
656 !mlx4_is_master(dev->dev))
657 return -EINVAL;
658 if (tnl_init->proxy_qp_type == IB_QPT_GSI)
659 qp_type = MLX4_IB_QPT_TUN_GSI;
Jack Morgenstein99ec41d2014-05-29 16:31:03 +0300660 else if (tnl_init->slave == mlx4_master_func_num(dev->dev) ||
661 mlx4_vf_smi_enabled(dev->dev, tnl_init->slave,
662 tnl_init->port))
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000663 qp_type = MLX4_IB_QPT_TUN_SMI_OWNER;
664 else
665 qp_type = MLX4_IB_QPT_TUN_SMI;
Jack Morgenstein47605df2012-08-03 08:40:57 +0000666 /* we are definitely in the PPF here, since we are creating
667 * tunnel QPs. base_tunnel_sqpn is therefore valid. */
668 qpn = dev->dev->phys_caps.base_tunnel_sqpn + 8 * tnl_init->slave
669 + tnl_init->proxy_qp_type * 2 + tnl_init->port - 1;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000670 sqpn = qpn;
671 }
672
673 if (!*caller_qp) {
674 if (qp_type == MLX4_IB_QPT_SMI || qp_type == MLX4_IB_QPT_GSI ||
675 (qp_type & (MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_SMI_OWNER |
676 MLX4_IB_QPT_PROXY_GSI | MLX4_IB_QPT_TUN_SMI_OWNER))) {
Jiri Kosina6fcd8d02014-06-09 16:36:33 +0200677 sqp = kzalloc(sizeof (struct mlx4_ib_sqp), gfp);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000678 if (!sqp)
679 return -ENOMEM;
680 qp = &sqp->qp;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200681 qp->pri.vid = 0xFFFF;
682 qp->alt.vid = 0xFFFF;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000683 } else {
Jiri Kosina6fcd8d02014-06-09 16:36:33 +0200684 qp = kzalloc(sizeof (struct mlx4_ib_qp), gfp);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000685 if (!qp)
686 return -ENOMEM;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200687 qp->pri.vid = 0xFFFF;
688 qp->alt.vid = 0xFFFF;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000689 }
690 } else
691 qp = *caller_qp;
692
693 qp->mlx4_ib_qp_type = qp_type;
Roland Dreier225c7b12007-05-08 18:00:38 -0700694
695 mutex_init(&qp->mutex);
696 spin_lock_init(&qp->sq.lock);
697 spin_lock_init(&qp->rq.lock);
Eli Cohenfa417f72010-10-24 21:08:52 -0700698 INIT_LIST_HEAD(&qp->gid_list);
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +0000699 INIT_LIST_HEAD(&qp->steering_rules);
Roland Dreier225c7b12007-05-08 18:00:38 -0700700
701 qp->state = IB_QPS_RESET;
Jack Morgensteinea54b102008-01-28 10:40:59 +0200702 if (init_attr->sq_sig_type == IB_SIGNAL_ALL_WR)
703 qp->sq_signal_bits = cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
Roland Dreier225c7b12007-05-08 18:00:38 -0700704
Sean Hefty0a1405d2011-06-02 11:32:15 -0700705 err = set_rq_size(dev, &init_attr->cap, !!pd->uobject, qp_has_rq(init_attr), qp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700706 if (err)
707 goto err;
708
709 if (pd->uobject) {
710 struct mlx4_ib_create_qp ucmd;
711
712 if (ib_copy_from_udata(&ucmd, udata, sizeof ucmd)) {
713 err = -EFAULT;
714 goto err;
715 }
716
Roland Dreier0e6e7412007-06-18 08:13:48 -0700717 qp->sq_no_prefetch = ucmd.sq_no_prefetch;
718
Jack Morgenstein83904132007-10-18 17:36:43 +0200719 err = set_user_sq_size(dev, qp, &ucmd);
Eli Cohen24463042007-05-17 10:32:41 +0300720 if (err)
721 goto err;
722
Roland Dreier225c7b12007-05-08 18:00:38 -0700723 qp->umem = ib_umem_get(pd->uobject->context, ucmd.buf_addr,
Arthur Kepnercb9fbc52008-04-29 01:00:34 -0700724 qp->buf_size, 0, 0);
Roland Dreier225c7b12007-05-08 18:00:38 -0700725 if (IS_ERR(qp->umem)) {
726 err = PTR_ERR(qp->umem);
727 goto err;
728 }
729
730 err = mlx4_mtt_init(dev->dev, ib_umem_page_count(qp->umem),
731 ilog2(qp->umem->page_size), &qp->mtt);
732 if (err)
733 goto err_buf;
734
735 err = mlx4_ib_umem_write_mtt(dev, &qp->mtt, qp->umem);
736 if (err)
737 goto err_mtt;
738
Sean Hefty0a1405d2011-06-02 11:32:15 -0700739 if (qp_has_rq(init_attr)) {
Roland Dreier02d89b82007-05-23 15:16:08 -0700740 err = mlx4_ib_db_map_user(to_mucontext(pd->uobject->context),
741 ucmd.db_addr, &qp->db);
742 if (err)
743 goto err_mtt;
744 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700745 } else {
Roland Dreier0e6e7412007-06-18 08:13:48 -0700746 qp->sq_no_prefetch = 0;
747
Ron Livne521e5752008-07-14 23:48:48 -0700748 if (init_attr->create_flags & IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK)
749 qp->flags |= MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK;
750
Eli Cohenb832be12008-04-16 21:09:27 -0700751 if (init_attr->create_flags & IB_QP_CREATE_IPOIB_UD_LSO)
752 qp->flags |= MLX4_IB_QP_LSO;
753
Matan Barakc1c98502013-11-07 15:25:17 +0200754 if (init_attr->create_flags & IB_QP_CREATE_NETIF_QP) {
755 if (dev->steering_support ==
756 MLX4_STEERING_MODE_DEVICE_MANAGED)
757 qp->flags |= MLX4_IB_QP_NETIF;
758 else
759 goto err;
760 }
761
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000762 err = set_kernel_sq_size(dev, &init_attr->cap, qp_type, qp);
Eli Cohen24463042007-05-17 10:32:41 +0300763 if (err)
764 goto err;
765
Sean Hefty0a1405d2011-06-02 11:32:15 -0700766 if (qp_has_rq(init_attr)) {
Jiri Kosina40f22872014-05-11 15:15:12 +0300767 err = mlx4_db_alloc(dev->dev, &qp->db, 0, gfp);
Roland Dreier02d89b82007-05-23 15:16:08 -0700768 if (err)
769 goto err;
Roland Dreier225c7b12007-05-08 18:00:38 -0700770
Roland Dreier02d89b82007-05-23 15:16:08 -0700771 *qp->db.db = 0;
772 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700773
Jiri Kosina40f22872014-05-11 15:15:12 +0300774 if (mlx4_buf_alloc(dev->dev, qp->buf_size, PAGE_SIZE * 2, &qp->buf, gfp)) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700775 err = -ENOMEM;
776 goto err_db;
777 }
778
779 err = mlx4_mtt_init(dev->dev, qp->buf.npages, qp->buf.page_shift,
780 &qp->mtt);
781 if (err)
782 goto err_buf;
783
Jiri Kosina40f22872014-05-11 15:15:12 +0300784 err = mlx4_buf_write_mtt(dev->dev, &qp->mtt, &qp->buf, gfp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700785 if (err)
786 goto err_mtt;
787
Jiri Kosina40f22872014-05-11 15:15:12 +0300788 qp->sq.wrid = kmalloc(qp->sq.wqe_cnt * sizeof (u64), gfp);
789 qp->rq.wrid = kmalloc(qp->rq.wqe_cnt * sizeof (u64), gfp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700790 if (!qp->sq.wrid || !qp->rq.wrid) {
791 err = -ENOMEM;
792 goto err_wrid;
793 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700794 }
795
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700796 if (sqpn) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000797 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
798 MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI)) {
799 if (alloc_proxy_bufs(pd->device, qp)) {
800 err = -ENOMEM;
801 goto err_wrid;
802 }
803 }
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700804 } else {
Eugenia Emantayevddae0342014-12-11 10:57:54 +0200805 /* Raw packet QPNs may not have bits 6,7 set in their qp_num;
806 * otherwise, the WQE BlueFlame setup flow wrongly causes
807 * VLAN insertion. */
Or Gerlitz3987a2d2012-01-17 13:39:07 +0200808 if (init_attr->qp_type == IB_QPT_RAW_PACKET)
Eugenia Emantayevddae0342014-12-11 10:57:54 +0200809 err = mlx4_qp_reserve_range(dev->dev, 1, 1, &qpn,
Matan Barakd57febe2014-12-11 10:57:57 +0200810 (init_attr->cap.max_send_wr ?
811 MLX4_RESERVE_ETH_BF_QP : 0) |
812 (init_attr->cap.max_recv_wr ?
813 MLX4_RESERVE_A0_QP : 0));
Or Gerlitz3987a2d2012-01-17 13:39:07 +0200814 else
Matan Barakc1c98502013-11-07 15:25:17 +0200815 if (qp->flags & MLX4_IB_QP_NETIF)
816 err = mlx4_ib_steer_qp_alloc(dev, 1, &qpn);
817 else
818 err = mlx4_qp_reserve_range(dev->dev, 1, 1,
Eugenia Emantayevddae0342014-12-11 10:57:54 +0200819 &qpn, 0);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700820 if (err)
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000821 goto err_proxy;
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700822 }
823
Jiri Kosina40f22872014-05-11 15:15:12 +0300824 err = mlx4_qp_alloc(dev->dev, qpn, &qp->mqp, gfp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700825 if (err)
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700826 goto err_qpn;
Roland Dreier225c7b12007-05-08 18:00:38 -0700827
Sean Hefty0a1405d2011-06-02 11:32:15 -0700828 if (init_attr->qp_type == IB_QPT_XRC_TGT)
829 qp->mqp.qpn |= (1 << 23);
830
Roland Dreier225c7b12007-05-08 18:00:38 -0700831 /*
832 * Hardware wants QPN written in big-endian order (after
833 * shifting) for send doorbell. Precompute this value to save
834 * a little bit when posting sends.
835 */
836 qp->doorbell_qpn = swab32(qp->mqp.qpn << 8);
837
Roland Dreier225c7b12007-05-08 18:00:38 -0700838 qp->mqp.event = mlx4_ib_qp_event;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000839 if (!*caller_qp)
840 *caller_qp = qp;
Roland Dreier225c7b12007-05-08 18:00:38 -0700841 return 0;
842
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700843err_qpn:
Matan Barakc1c98502013-11-07 15:25:17 +0200844 if (!sqpn) {
845 if (qp->flags & MLX4_IB_QP_NETIF)
846 mlx4_ib_steer_qp_free(dev, qpn, 1);
847 else
848 mlx4_qp_release_range(dev->dev, qpn, 1);
849 }
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000850err_proxy:
851 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI)
852 free_proxy_bufs(pd->device, qp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700853err_wrid:
Roland Dreier23f1b382007-07-20 21:19:43 -0700854 if (pd->uobject) {
Sean Hefty0a1405d2011-06-02 11:32:15 -0700855 if (qp_has_rq(init_attr))
856 mlx4_ib_db_unmap_user(to_mucontext(pd->uobject->context), &qp->db);
Roland Dreier23f1b382007-07-20 21:19:43 -0700857 } else {
Roland Dreier225c7b12007-05-08 18:00:38 -0700858 kfree(qp->sq.wrid);
859 kfree(qp->rq.wrid);
860 }
861
862err_mtt:
863 mlx4_mtt_cleanup(dev->dev, &qp->mtt);
864
865err_buf:
866 if (pd->uobject)
867 ib_umem_release(qp->umem);
868 else
869 mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
870
871err_db:
Sean Hefty0a1405d2011-06-02 11:32:15 -0700872 if (!pd->uobject && qp_has_rq(init_attr))
Yevgeny Petrilin62968832008-04-23 11:55:45 -0700873 mlx4_db_free(dev->dev, &qp->db);
Roland Dreier225c7b12007-05-08 18:00:38 -0700874
875err:
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000876 if (!*caller_qp)
877 kfree(qp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700878 return err;
879}
880
881static enum mlx4_qp_state to_mlx4_state(enum ib_qp_state state)
882{
883 switch (state) {
884 case IB_QPS_RESET: return MLX4_QP_STATE_RST;
885 case IB_QPS_INIT: return MLX4_QP_STATE_INIT;
886 case IB_QPS_RTR: return MLX4_QP_STATE_RTR;
887 case IB_QPS_RTS: return MLX4_QP_STATE_RTS;
888 case IB_QPS_SQD: return MLX4_QP_STATE_SQD;
889 case IB_QPS_SQE: return MLX4_QP_STATE_SQER;
890 case IB_QPS_ERR: return MLX4_QP_STATE_ERR;
891 default: return -1;
892 }
893}
894
895static void mlx4_ib_lock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
Roland Dreier338a8fa2009-09-05 20:24:49 -0700896 __acquires(&send_cq->lock) __acquires(&recv_cq->lock)
Roland Dreier225c7b12007-05-08 18:00:38 -0700897{
Roland Dreier338a8fa2009-09-05 20:24:49 -0700898 if (send_cq == recv_cq) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700899 spin_lock_irq(&send_cq->lock);
Roland Dreier338a8fa2009-09-05 20:24:49 -0700900 __acquire(&recv_cq->lock);
901 } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700902 spin_lock_irq(&send_cq->lock);
903 spin_lock_nested(&recv_cq->lock, SINGLE_DEPTH_NESTING);
904 } else {
905 spin_lock_irq(&recv_cq->lock);
906 spin_lock_nested(&send_cq->lock, SINGLE_DEPTH_NESTING);
907 }
908}
909
910static void mlx4_ib_unlock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
Roland Dreier338a8fa2009-09-05 20:24:49 -0700911 __releases(&send_cq->lock) __releases(&recv_cq->lock)
Roland Dreier225c7b12007-05-08 18:00:38 -0700912{
Roland Dreier338a8fa2009-09-05 20:24:49 -0700913 if (send_cq == recv_cq) {
914 __release(&recv_cq->lock);
Roland Dreier225c7b12007-05-08 18:00:38 -0700915 spin_unlock_irq(&send_cq->lock);
Roland Dreier338a8fa2009-09-05 20:24:49 -0700916 } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700917 spin_unlock(&recv_cq->lock);
918 spin_unlock_irq(&send_cq->lock);
919 } else {
920 spin_unlock(&send_cq->lock);
921 spin_unlock_irq(&recv_cq->lock);
922 }
923}
924
Eli Cohenfa417f72010-10-24 21:08:52 -0700925static void del_gid_entries(struct mlx4_ib_qp *qp)
926{
927 struct mlx4_ib_gid_entry *ge, *tmp;
928
929 list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
930 list_del(&ge->list);
931 kfree(ge);
932 }
933}
934
Sean Hefty0a1405d2011-06-02 11:32:15 -0700935static struct mlx4_ib_pd *get_pd(struct mlx4_ib_qp *qp)
936{
937 if (qp->ibqp.qp_type == IB_QPT_XRC_TGT)
938 return to_mpd(to_mxrcd(qp->ibqp.xrcd)->pd);
939 else
940 return to_mpd(qp->ibqp.pd);
941}
942
943static void get_cqs(struct mlx4_ib_qp *qp,
944 struct mlx4_ib_cq **send_cq, struct mlx4_ib_cq **recv_cq)
945{
946 switch (qp->ibqp.qp_type) {
947 case IB_QPT_XRC_TGT:
948 *send_cq = to_mcq(to_mxrcd(qp->ibqp.xrcd)->cq);
949 *recv_cq = *send_cq;
950 break;
951 case IB_QPT_XRC_INI:
952 *send_cq = to_mcq(qp->ibqp.send_cq);
953 *recv_cq = *send_cq;
954 break;
955 default:
956 *send_cq = to_mcq(qp->ibqp.send_cq);
957 *recv_cq = to_mcq(qp->ibqp.recv_cq);
958 break;
959 }
960}
961
Roland Dreier225c7b12007-05-08 18:00:38 -0700962static void destroy_qp_common(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp,
963 int is_user)
964{
965 struct mlx4_ib_cq *send_cq, *recv_cq;
966
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200967 if (qp->state != IB_QPS_RESET) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700968 if (mlx4_qp_modify(dev->dev, NULL, to_mlx4_state(qp->state),
969 MLX4_QP_STATE_RST, NULL, 0, 0, &qp->mqp))
Shlomo Pongratz987c8f82012-04-29 17:04:26 +0300970 pr_warn("modify QP %06x to RESET failed.\n",
Roland Dreier225c7b12007-05-08 18:00:38 -0700971 qp->mqp.qpn);
Jack Morgenstein25476b02014-09-11 14:11:20 +0300972 if (qp->pri.smac || (!qp->pri.smac && qp->pri.smac_port)) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200973 mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
974 qp->pri.smac = 0;
Jack Morgenstein25476b02014-09-11 14:11:20 +0300975 qp->pri.smac_port = 0;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200976 }
977 if (qp->alt.smac) {
978 mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
979 qp->alt.smac = 0;
980 }
981 if (qp->pri.vid < 0x1000) {
982 mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port, qp->pri.vid);
983 qp->pri.vid = 0xFFFF;
984 qp->pri.candidate_vid = 0xFFFF;
985 qp->pri.update_vid = 0;
986 }
987 if (qp->alt.vid < 0x1000) {
988 mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port, qp->alt.vid);
989 qp->alt.vid = 0xFFFF;
990 qp->alt.candidate_vid = 0xFFFF;
991 qp->alt.update_vid = 0;
992 }
993 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700994
Sean Hefty0a1405d2011-06-02 11:32:15 -0700995 get_cqs(qp, &send_cq, &recv_cq);
Roland Dreier225c7b12007-05-08 18:00:38 -0700996
997 mlx4_ib_lock_cqs(send_cq, recv_cq);
998
999 if (!is_user) {
1000 __mlx4_ib_cq_clean(recv_cq, qp->mqp.qpn,
1001 qp->ibqp.srq ? to_msrq(qp->ibqp.srq): NULL);
1002 if (send_cq != recv_cq)
1003 __mlx4_ib_cq_clean(send_cq, qp->mqp.qpn, NULL);
1004 }
1005
1006 mlx4_qp_remove(dev->dev, &qp->mqp);
1007
1008 mlx4_ib_unlock_cqs(send_cq, recv_cq);
1009
1010 mlx4_qp_free(dev->dev, &qp->mqp);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -07001011
Matan Barakc1c98502013-11-07 15:25:17 +02001012 if (!is_sqp(dev, qp) && !is_tunnel_qp(dev, qp)) {
1013 if (qp->flags & MLX4_IB_QP_NETIF)
1014 mlx4_ib_steer_qp_free(dev, qp->mqp.qpn, 1);
1015 else
1016 mlx4_qp_release_range(dev->dev, qp->mqp.qpn, 1);
1017 }
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -07001018
Roland Dreier225c7b12007-05-08 18:00:38 -07001019 mlx4_mtt_cleanup(dev->dev, &qp->mtt);
1020
1021 if (is_user) {
Sean Hefty0a1405d2011-06-02 11:32:15 -07001022 if (qp->rq.wqe_cnt)
Roland Dreier02d89b82007-05-23 15:16:08 -07001023 mlx4_ib_db_unmap_user(to_mucontext(qp->ibqp.uobject->context),
1024 &qp->db);
Roland Dreier225c7b12007-05-08 18:00:38 -07001025 ib_umem_release(qp->umem);
1026 } else {
1027 kfree(qp->sq.wrid);
1028 kfree(qp->rq.wrid);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001029 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
1030 MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI))
1031 free_proxy_bufs(&dev->ib_dev, qp);
Roland Dreier225c7b12007-05-08 18:00:38 -07001032 mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001033 if (qp->rq.wqe_cnt)
Yevgeny Petrilin62968832008-04-23 11:55:45 -07001034 mlx4_db_free(dev->dev, &qp->db);
Roland Dreier225c7b12007-05-08 18:00:38 -07001035 }
Eli Cohenfa417f72010-10-24 21:08:52 -07001036
1037 del_gid_entries(qp);
Roland Dreier225c7b12007-05-08 18:00:38 -07001038}
1039
Jack Morgenstein47605df2012-08-03 08:40:57 +00001040static u32 get_sqp_num(struct mlx4_ib_dev *dev, struct ib_qp_init_attr *attr)
1041{
1042 /* Native or PPF */
1043 if (!mlx4_is_mfunc(dev->dev) ||
1044 (mlx4_is_master(dev->dev) &&
1045 attr->create_flags & MLX4_IB_SRIOV_SQP)) {
1046 return dev->dev->phys_caps.base_sqpn +
1047 (attr->qp_type == IB_QPT_SMI ? 0 : 2) +
1048 attr->port_num - 1;
1049 }
1050 /* PF or VF -- creating proxies */
1051 if (attr->qp_type == IB_QPT_SMI)
1052 return dev->dev->caps.qp0_proxy[attr->port_num - 1];
1053 else
1054 return dev->dev->caps.qp1_proxy[attr->port_num - 1];
1055}
1056
Roland Dreier225c7b12007-05-08 18:00:38 -07001057struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
1058 struct ib_qp_init_attr *init_attr,
1059 struct ib_udata *udata)
1060{
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001061 struct mlx4_ib_qp *qp = NULL;
Roland Dreier225c7b12007-05-08 18:00:38 -07001062 int err;
Sean Hefty0a1405d2011-06-02 11:32:15 -07001063 u16 xrcdn = 0;
Jiri Kosina40f22872014-05-11 15:15:12 +03001064 gfp_t gfp;
Roland Dreier225c7b12007-05-08 18:00:38 -07001065
Jiri Kosina40f22872014-05-11 15:15:12 +03001066 gfp = (init_attr->create_flags & MLX4_IB_QP_CREATE_USE_GFP_NOIO) ?
1067 GFP_NOIO : GFP_KERNEL;
Ron Livne521e5752008-07-14 23:48:48 -07001068 /*
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001069 * We only support LSO, vendor flag1, and multicast loopback blocking,
1070 * and only for kernel UD QPs.
Ron Livne521e5752008-07-14 23:48:48 -07001071 */
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001072 if (init_attr->create_flags & ~(MLX4_IB_QP_LSO |
1073 MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK |
Matan Barakc1c98502013-11-07 15:25:17 +02001074 MLX4_IB_SRIOV_TUNNEL_QP |
1075 MLX4_IB_SRIOV_SQP |
Jiri Kosina40f22872014-05-11 15:15:12 +03001076 MLX4_IB_QP_NETIF |
1077 MLX4_IB_QP_CREATE_USE_GFP_NOIO))
Eli Cohenb832be12008-04-16 21:09:27 -07001078 return ERR_PTR(-EINVAL);
Ron Livne521e5752008-07-14 23:48:48 -07001079
Matan Barakc1c98502013-11-07 15:25:17 +02001080 if (init_attr->create_flags & IB_QP_CREATE_NETIF_QP) {
1081 if (init_attr->qp_type != IB_QPT_UD)
1082 return ERR_PTR(-EINVAL);
1083 }
1084
Ron Livne521e5752008-07-14 23:48:48 -07001085 if (init_attr->create_flags &&
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001086 (udata ||
Jiri Kosina40f22872014-05-11 15:15:12 +03001087 ((init_attr->create_flags & ~(MLX4_IB_SRIOV_SQP | MLX4_IB_QP_CREATE_USE_GFP_NOIO)) &&
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001088 init_attr->qp_type != IB_QPT_UD) ||
1089 ((init_attr->create_flags & MLX4_IB_SRIOV_SQP) &&
1090 init_attr->qp_type > IB_QPT_GSI)))
Eli Cohenb846f252008-04-16 21:09:27 -07001091 return ERR_PTR(-EINVAL);
1092
Roland Dreier225c7b12007-05-08 18:00:38 -07001093 switch (init_attr->qp_type) {
Sean Hefty0a1405d2011-06-02 11:32:15 -07001094 case IB_QPT_XRC_TGT:
1095 pd = to_mxrcd(init_attr->xrcd)->pd;
1096 xrcdn = to_mxrcd(init_attr->xrcd)->xrcdn;
1097 init_attr->send_cq = to_mxrcd(init_attr->xrcd)->cq;
1098 /* fall through */
1099 case IB_QPT_XRC_INI:
1100 if (!(to_mdev(pd->device)->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC))
1101 return ERR_PTR(-ENOSYS);
1102 init_attr->recv_cq = init_attr->send_cq;
1103 /* fall through */
Roland Dreier225c7b12007-05-08 18:00:38 -07001104 case IB_QPT_RC:
1105 case IB_QPT_UC:
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001106 case IB_QPT_RAW_PACKET:
Jiri Kosina40f22872014-05-11 15:15:12 +03001107 qp = kzalloc(sizeof *qp, gfp);
Roland Dreier225c7b12007-05-08 18:00:38 -07001108 if (!qp)
1109 return ERR_PTR(-ENOMEM);
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001110 qp->pri.vid = 0xFFFF;
1111 qp->alt.vid = 0xFFFF;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001112 /* fall through */
1113 case IB_QPT_UD:
1114 {
1115 err = create_qp_common(to_mdev(pd->device), pd, init_attr,
Jiri Kosina40f22872014-05-11 15:15:12 +03001116 udata, 0, &qp, gfp);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001117 if (err)
Roland Dreier225c7b12007-05-08 18:00:38 -07001118 return ERR_PTR(err);
Roland Dreier225c7b12007-05-08 18:00:38 -07001119
1120 qp->ibqp.qp_num = qp->mqp.qpn;
Sean Hefty0a1405d2011-06-02 11:32:15 -07001121 qp->xrcdn = xrcdn;
Roland Dreier225c7b12007-05-08 18:00:38 -07001122
1123 break;
1124 }
1125 case IB_QPT_SMI:
1126 case IB_QPT_GSI:
1127 {
1128 /* Userspace is not allowed to create special QPs: */
Sean Hefty0a1405d2011-06-02 11:32:15 -07001129 if (udata)
Roland Dreier225c7b12007-05-08 18:00:38 -07001130 return ERR_PTR(-EINVAL);
1131
Sean Hefty0a1405d2011-06-02 11:32:15 -07001132 err = create_qp_common(to_mdev(pd->device), pd, init_attr, udata,
Jack Morgenstein47605df2012-08-03 08:40:57 +00001133 get_sqp_num(to_mdev(pd->device), init_attr),
Jiri Kosina40f22872014-05-11 15:15:12 +03001134 &qp, gfp);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001135 if (err)
Roland Dreier225c7b12007-05-08 18:00:38 -07001136 return ERR_PTR(err);
Roland Dreier225c7b12007-05-08 18:00:38 -07001137
1138 qp->port = init_attr->port_num;
1139 qp->ibqp.qp_num = init_attr->qp_type == IB_QPT_SMI ? 0 : 1;
1140
1141 break;
1142 }
1143 default:
1144 /* Don't support raw QPs */
1145 return ERR_PTR(-EINVAL);
1146 }
1147
1148 return &qp->ibqp;
1149}
1150
1151int mlx4_ib_destroy_qp(struct ib_qp *qp)
1152{
1153 struct mlx4_ib_dev *dev = to_mdev(qp->device);
1154 struct mlx4_ib_qp *mqp = to_mqp(qp);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001155 struct mlx4_ib_pd *pd;
Roland Dreier225c7b12007-05-08 18:00:38 -07001156
1157 if (is_qp0(dev, mqp))
1158 mlx4_CLOSE_PORT(dev->dev, mqp->port);
1159
Matan Barak9433c182014-05-15 15:29:28 +03001160 if (dev->qp1_proxy[mqp->port - 1] == mqp) {
1161 mutex_lock(&dev->qp1_proxy_lock[mqp->port - 1]);
1162 dev->qp1_proxy[mqp->port - 1] = NULL;
1163 mutex_unlock(&dev->qp1_proxy_lock[mqp->port - 1]);
1164 }
1165
Sean Hefty0a1405d2011-06-02 11:32:15 -07001166 pd = get_pd(mqp);
1167 destroy_qp_common(dev, mqp, !!pd->ibpd.uobject);
Roland Dreier225c7b12007-05-08 18:00:38 -07001168
1169 if (is_sqp(dev, mqp))
1170 kfree(to_msqp(mqp));
1171 else
1172 kfree(mqp);
1173
1174 return 0;
1175}
1176
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001177static int to_mlx4_st(struct mlx4_ib_dev *dev, enum mlx4_ib_qp_type type)
Roland Dreier225c7b12007-05-08 18:00:38 -07001178{
1179 switch (type) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001180 case MLX4_IB_QPT_RC: return MLX4_QP_ST_RC;
1181 case MLX4_IB_QPT_UC: return MLX4_QP_ST_UC;
1182 case MLX4_IB_QPT_UD: return MLX4_QP_ST_UD;
1183 case MLX4_IB_QPT_XRC_INI:
1184 case MLX4_IB_QPT_XRC_TGT: return MLX4_QP_ST_XRC;
1185 case MLX4_IB_QPT_SMI:
1186 case MLX4_IB_QPT_GSI:
1187 case MLX4_IB_QPT_RAW_PACKET: return MLX4_QP_ST_MLX;
1188
1189 case MLX4_IB_QPT_PROXY_SMI_OWNER:
1190 case MLX4_IB_QPT_TUN_SMI_OWNER: return (mlx4_is_mfunc(dev->dev) ?
1191 MLX4_QP_ST_MLX : -1);
1192 case MLX4_IB_QPT_PROXY_SMI:
1193 case MLX4_IB_QPT_TUN_SMI:
1194 case MLX4_IB_QPT_PROXY_GSI:
1195 case MLX4_IB_QPT_TUN_GSI: return (mlx4_is_mfunc(dev->dev) ?
1196 MLX4_QP_ST_UD : -1);
1197 default: return -1;
Roland Dreier225c7b12007-05-08 18:00:38 -07001198 }
1199}
1200
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001201static __be32 to_mlx4_access_flags(struct mlx4_ib_qp *qp, const struct ib_qp_attr *attr,
Roland Dreier225c7b12007-05-08 18:00:38 -07001202 int attr_mask)
1203{
1204 u8 dest_rd_atomic;
1205 u32 access_flags;
1206 u32 hw_access_flags = 0;
1207
1208 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
1209 dest_rd_atomic = attr->max_dest_rd_atomic;
1210 else
1211 dest_rd_atomic = qp->resp_depth;
1212
1213 if (attr_mask & IB_QP_ACCESS_FLAGS)
1214 access_flags = attr->qp_access_flags;
1215 else
1216 access_flags = qp->atomic_rd_en;
1217
1218 if (!dest_rd_atomic)
1219 access_flags &= IB_ACCESS_REMOTE_WRITE;
1220
1221 if (access_flags & IB_ACCESS_REMOTE_READ)
1222 hw_access_flags |= MLX4_QP_BIT_RRE;
1223 if (access_flags & IB_ACCESS_REMOTE_ATOMIC)
1224 hw_access_flags |= MLX4_QP_BIT_RAE;
1225 if (access_flags & IB_ACCESS_REMOTE_WRITE)
1226 hw_access_flags |= MLX4_QP_BIT_RWE;
1227
1228 return cpu_to_be32(hw_access_flags);
1229}
1230
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001231static void store_sqp_attrs(struct mlx4_ib_sqp *sqp, const struct ib_qp_attr *attr,
Roland Dreier225c7b12007-05-08 18:00:38 -07001232 int attr_mask)
1233{
1234 if (attr_mask & IB_QP_PKEY_INDEX)
1235 sqp->pkey_index = attr->pkey_index;
1236 if (attr_mask & IB_QP_QKEY)
1237 sqp->qkey = attr->qkey;
1238 if (attr_mask & IB_QP_SQ_PSN)
1239 sqp->send_psn = attr->sq_psn;
1240}
1241
1242static void mlx4_set_sched(struct mlx4_qp_path *path, u8 port)
1243{
1244 path->sched_queue = (path->sched_queue & 0xbf) | ((port - 1) << 6);
1245}
1246
Moni Shoua297e0da2013-12-12 18:03:14 +02001247static int _mlx4_set_path(struct mlx4_ib_dev *dev, const struct ib_ah_attr *ah,
1248 u64 smac, u16 vlan_tag, struct mlx4_qp_path *path,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001249 struct mlx4_roce_smac_vlan_info *smac_info, u8 port)
Roland Dreier225c7b12007-05-08 18:00:38 -07001250{
Eli Cohenfa417f72010-10-24 21:08:52 -07001251 int is_eth = rdma_port_get_link_layer(&dev->ib_dev, port) ==
1252 IB_LINK_LAYER_ETHERNET;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001253 int vidx;
Moni Shoua297e0da2013-12-12 18:03:14 +02001254 int smac_index;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001255 int err;
Moni Shoua297e0da2013-12-12 18:03:14 +02001256
Eli Cohenfa417f72010-10-24 21:08:52 -07001257
Roland Dreier225c7b12007-05-08 18:00:38 -07001258 path->grh_mylmc = ah->src_path_bits & 0x7f;
1259 path->rlid = cpu_to_be16(ah->dlid);
1260 if (ah->static_rate) {
1261 path->static_rate = ah->static_rate + MLX4_STAT_RATE_OFFSET;
1262 while (path->static_rate > IB_RATE_2_5_GBPS + MLX4_STAT_RATE_OFFSET &&
1263 !(1 << path->static_rate & dev->dev->caps.stat_rate_support))
1264 --path->static_rate;
1265 } else
1266 path->static_rate = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001267
1268 if (ah->ah_flags & IB_AH_GRH) {
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001269 if (ah->grh.sgid_index >= dev->dev->caps.gid_table_len[port]) {
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001270 pr_err("sgid_index (%u) too large. max is %d\n",
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001271 ah->grh.sgid_index, dev->dev->caps.gid_table_len[port] - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07001272 return -1;
1273 }
1274
1275 path->grh_mylmc |= 1 << 7;
1276 path->mgid_index = ah->grh.sgid_index;
1277 path->hop_limit = ah->grh.hop_limit;
1278 path->tclass_flowlabel =
1279 cpu_to_be32((ah->grh.traffic_class << 20) |
1280 (ah->grh.flow_label));
1281 memcpy(path->rgid, ah->grh.dgid.raw, 16);
1282 }
1283
Eli Cohenfa417f72010-10-24 21:08:52 -07001284 if (is_eth) {
1285 if (!(ah->ah_flags & IB_AH_GRH))
1286 return -1;
1287
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001288 path->sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE |
1289 ((port - 1) << 6) | ((ah->sl & 7) << 3);
Moni Shoua297e0da2013-12-12 18:03:14 +02001290
1291 path->feup |= MLX4_FEUP_FORCE_ETH_UP;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001292 if (vlan_tag < 0x1000) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001293 if (smac_info->vid < 0x1000) {
1294 /* both valid vlan ids */
1295 if (smac_info->vid != vlan_tag) {
1296 /* different VIDs. unreg old and reg new */
1297 err = mlx4_register_vlan(dev->dev, port, vlan_tag, &vidx);
1298 if (err)
1299 return err;
1300 smac_info->candidate_vid = vlan_tag;
1301 smac_info->candidate_vlan_index = vidx;
1302 smac_info->candidate_vlan_port = port;
1303 smac_info->update_vid = 1;
1304 path->vlan_index = vidx;
1305 } else {
1306 path->vlan_index = smac_info->vlan_index;
1307 }
1308 } else {
1309 /* no current vlan tag in qp */
1310 err = mlx4_register_vlan(dev->dev, port, vlan_tag, &vidx);
1311 if (err)
1312 return err;
1313 smac_info->candidate_vid = vlan_tag;
1314 smac_info->candidate_vlan_index = vidx;
1315 smac_info->candidate_vlan_port = port;
1316 smac_info->update_vid = 1;
1317 path->vlan_index = vidx;
1318 }
Moni Shoua297e0da2013-12-12 18:03:14 +02001319 path->feup |= MLX4_FVL_FORCE_ETH_VLAN;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001320 path->fl = 1 << 6;
1321 } else {
1322 /* have current vlan tag. unregister it at modify-qp success */
1323 if (smac_info->vid < 0x1000) {
1324 smac_info->candidate_vid = 0xFFFF;
1325 smac_info->update_vid = 1;
1326 }
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001327 }
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001328
1329 /* get smac_index for RoCE use.
1330 * If no smac was yet assigned, register one.
1331 * If one was already assigned, but the new mac differs,
1332 * unregister the old one and register the new one.
1333 */
Jack Morgenstein25476b02014-09-11 14:11:20 +03001334 if ((!smac_info->smac && !smac_info->smac_port) ||
1335 smac_info->smac != smac) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001336 /* register candidate now, unreg if needed, after success */
1337 smac_index = mlx4_register_mac(dev->dev, port, smac);
1338 if (smac_index >= 0) {
1339 smac_info->candidate_smac_index = smac_index;
1340 smac_info->candidate_smac = smac;
1341 smac_info->candidate_smac_port = port;
1342 } else {
1343 return -EINVAL;
1344 }
1345 } else {
1346 smac_index = smac_info->smac_index;
1347 }
1348
1349 memcpy(path->dmac, ah->dmac, 6);
1350 path->ackto = MLX4_IB_LINK_TYPE_ETH;
1351 /* put MAC table smac index for IBoE */
1352 path->grh_mylmc = (u8) (smac_index) | 0x80;
1353 } else {
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001354 path->sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE |
1355 ((port - 1) << 6) | ((ah->sl & 0xf) << 2);
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001356 }
Eli Cohenfa417f72010-10-24 21:08:52 -07001357
Roland Dreier225c7b12007-05-08 18:00:38 -07001358 return 0;
1359}
1360
Moni Shoua297e0da2013-12-12 18:03:14 +02001361static int mlx4_set_path(struct mlx4_ib_dev *dev, const struct ib_qp_attr *qp,
1362 enum ib_qp_attr_mask qp_attr_mask,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001363 struct mlx4_ib_qp *mqp,
Moni Shoua297e0da2013-12-12 18:03:14 +02001364 struct mlx4_qp_path *path, u8 port)
1365{
1366 return _mlx4_set_path(dev, &qp->ah_attr,
1367 mlx4_mac_to_u64((u8 *)qp->smac),
1368 (qp_attr_mask & IB_QP_VID) ? qp->vlan_id : 0xffff,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001369 path, &mqp->pri, port);
Moni Shoua297e0da2013-12-12 18:03:14 +02001370}
1371
1372static int mlx4_set_alt_path(struct mlx4_ib_dev *dev,
1373 const struct ib_qp_attr *qp,
1374 enum ib_qp_attr_mask qp_attr_mask,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001375 struct mlx4_ib_qp *mqp,
Moni Shoua297e0da2013-12-12 18:03:14 +02001376 struct mlx4_qp_path *path, u8 port)
1377{
1378 return _mlx4_set_path(dev, &qp->alt_ah_attr,
1379 mlx4_mac_to_u64((u8 *)qp->alt_smac),
1380 (qp_attr_mask & IB_QP_ALT_VID) ?
1381 qp->alt_vlan_id : 0xffff,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001382 path, &mqp->alt, port);
Moni Shoua297e0da2013-12-12 18:03:14 +02001383}
1384
Eli Cohenfa417f72010-10-24 21:08:52 -07001385static void update_mcg_macs(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
1386{
1387 struct mlx4_ib_gid_entry *ge, *tmp;
1388
1389 list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
1390 if (!ge->added && mlx4_ib_add_mc(dev, qp, &ge->gid)) {
1391 ge->added = 1;
1392 ge->port = qp->port;
1393 }
1394 }
1395}
1396
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001397static int handle_eth_ud_smac_index(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp, u8 *smac,
1398 struct mlx4_qp_context *context)
1399{
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001400 u64 u64_mac;
1401 int smac_index;
1402
Jack Morgenstein3e0629c2014-09-11 14:11:17 +03001403 u64_mac = atomic64_read(&dev->iboe.mac[qp->port - 1]);
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001404
1405 context->pri_path.sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE | ((qp->port - 1) << 6);
Jack Morgenstein25476b02014-09-11 14:11:20 +03001406 if (!qp->pri.smac && !qp->pri.smac_port) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001407 smac_index = mlx4_register_mac(dev->dev, qp->port, u64_mac);
1408 if (smac_index >= 0) {
1409 qp->pri.candidate_smac_index = smac_index;
1410 qp->pri.candidate_smac = u64_mac;
1411 qp->pri.candidate_smac_port = qp->port;
1412 context->pri_path.grh_mylmc = 0x80 | (u8) smac_index;
1413 } else {
1414 return -ENOENT;
1415 }
1416 }
1417 return 0;
1418}
1419
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001420static int __mlx4_ib_modify_qp(struct ib_qp *ibqp,
1421 const struct ib_qp_attr *attr, int attr_mask,
1422 enum ib_qp_state cur_state, enum ib_qp_state new_state)
Roland Dreier225c7b12007-05-08 18:00:38 -07001423{
1424 struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
1425 struct mlx4_ib_qp *qp = to_mqp(ibqp);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001426 struct mlx4_ib_pd *pd;
1427 struct mlx4_ib_cq *send_cq, *recv_cq;
Roland Dreier225c7b12007-05-08 18:00:38 -07001428 struct mlx4_qp_context *context;
1429 enum mlx4_qp_optpar optpar = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001430 int sqd_event;
Matan Barakc1c98502013-11-07 15:25:17 +02001431 int steer_qp = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001432 int err = -EINVAL;
1433
Jack Morgenstein3dec4872014-09-11 14:11:19 +03001434 /* APM is not supported under RoCE */
1435 if (attr_mask & IB_QP_ALT_PATH &&
1436 rdma_port_get_link_layer(&dev->ib_dev, qp->port) ==
1437 IB_LINK_LAYER_ETHERNET)
1438 return -ENOTSUPP;
1439
Roland Dreier225c7b12007-05-08 18:00:38 -07001440 context = kzalloc(sizeof *context, GFP_KERNEL);
1441 if (!context)
1442 return -ENOMEM;
1443
Roland Dreier225c7b12007-05-08 18:00:38 -07001444 context->flags = cpu_to_be32((to_mlx4_state(new_state) << 28) |
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001445 (to_mlx4_st(dev, qp->mlx4_ib_qp_type) << 16));
Roland Dreier225c7b12007-05-08 18:00:38 -07001446
1447 if (!(attr_mask & IB_QP_PATH_MIG_STATE))
1448 context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
1449 else {
1450 optpar |= MLX4_QP_OPTPAR_PM_STATE;
1451 switch (attr->path_mig_state) {
1452 case IB_MIG_MIGRATED:
1453 context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
1454 break;
1455 case IB_MIG_REARM:
1456 context->flags |= cpu_to_be32(MLX4_QP_PM_REARM << 11);
1457 break;
1458 case IB_MIG_ARMED:
1459 context->flags |= cpu_to_be32(MLX4_QP_PM_ARMED << 11);
1460 break;
1461 }
1462 }
1463
Eli Cohenb832be12008-04-16 21:09:27 -07001464 if (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI)
Roland Dreier225c7b12007-05-08 18:00:38 -07001465 context->mtu_msgmax = (IB_MTU_4096 << 5) | 11;
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001466 else if (ibqp->qp_type == IB_QPT_RAW_PACKET)
1467 context->mtu_msgmax = (MLX4_RAW_QP_MTU << 5) | MLX4_RAW_QP_MSGMAX;
Eli Cohenb832be12008-04-16 21:09:27 -07001468 else if (ibqp->qp_type == IB_QPT_UD) {
1469 if (qp->flags & MLX4_IB_QP_LSO)
1470 context->mtu_msgmax = (IB_MTU_4096 << 5) |
1471 ilog2(dev->dev->caps.max_gso_sz);
1472 else
Alex Naslednikov6e0d7332008-08-07 14:06:50 -07001473 context->mtu_msgmax = (IB_MTU_4096 << 5) | 12;
Eli Cohenb832be12008-04-16 21:09:27 -07001474 } else if (attr_mask & IB_QP_PATH_MTU) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001475 if (attr->path_mtu < IB_MTU_256 || attr->path_mtu > IB_MTU_4096) {
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001476 pr_err("path MTU (%u) is invalid\n",
Roland Dreier225c7b12007-05-08 18:00:38 -07001477 attr->path_mtu);
Florin Malitaf5b40432007-07-19 15:58:09 -04001478 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001479 }
Eli Cohend1f2cd82008-07-14 23:48:45 -07001480 context->mtu_msgmax = (attr->path_mtu << 5) |
1481 ilog2(dev->dev->caps.max_msg_sz);
Roland Dreier225c7b12007-05-08 18:00:38 -07001482 }
1483
Roland Dreier0e6e7412007-06-18 08:13:48 -07001484 if (qp->rq.wqe_cnt)
1485 context->rq_size_stride = ilog2(qp->rq.wqe_cnt) << 3;
Roland Dreier225c7b12007-05-08 18:00:38 -07001486 context->rq_size_stride |= qp->rq.wqe_shift - 4;
1487
Roland Dreier0e6e7412007-06-18 08:13:48 -07001488 if (qp->sq.wqe_cnt)
1489 context->sq_size_stride = ilog2(qp->sq.wqe_cnt) << 3;
Roland Dreier225c7b12007-05-08 18:00:38 -07001490 context->sq_size_stride |= qp->sq.wqe_shift - 4;
1491
Sean Hefty0a1405d2011-06-02 11:32:15 -07001492 if (cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT) {
Roland Dreier0e6e7412007-06-18 08:13:48 -07001493 context->sq_size_stride |= !!qp->sq_no_prefetch << 7;
Sean Hefty0a1405d2011-06-02 11:32:15 -07001494 context->xrcd = cpu_to_be32((u32) qp->xrcdn);
Dotan Barak02d7ef62013-04-21 15:10:00 +00001495 if (ibqp->qp_type == IB_QPT_RAW_PACKET)
1496 context->param3 |= cpu_to_be32(1 << 30);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001497 }
Roland Dreier0e6e7412007-06-18 08:13:48 -07001498
Roland Dreier225c7b12007-05-08 18:00:38 -07001499 if (qp->ibqp.uobject)
1500 context->usr_page = cpu_to_be32(to_mucontext(ibqp->uobject->context)->uar.index);
1501 else
1502 context->usr_page = cpu_to_be32(dev->priv_uar.index);
1503
1504 if (attr_mask & IB_QP_DEST_QPN)
1505 context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
1506
1507 if (attr_mask & IB_QP_PORT) {
1508 if (cur_state == IB_QPS_SQD && new_state == IB_QPS_SQD &&
1509 !(attr_mask & IB_QP_AV)) {
1510 mlx4_set_sched(&context->pri_path, attr->port_num);
1511 optpar |= MLX4_QP_OPTPAR_SCHED_QUEUE;
1512 }
1513 }
1514
Or Gerlitzcfcde112011-06-15 14:49:57 +00001515 if (cur_state == IB_QPS_INIT && new_state == IB_QPS_RTR) {
1516 if (dev->counters[qp->port - 1] != -1) {
1517 context->pri_path.counter_index =
1518 dev->counters[qp->port - 1];
1519 optpar |= MLX4_QP_OPTPAR_COUNTER_INDEX;
1520 } else
1521 context->pri_path.counter_index = 0xff;
Matan Barakc1c98502013-11-07 15:25:17 +02001522
1523 if (qp->flags & MLX4_IB_QP_NETIF) {
1524 mlx4_ib_steer_qp_reg(dev, qp, 1);
1525 steer_qp = 1;
1526 }
Or Gerlitzcfcde112011-06-15 14:49:57 +00001527 }
1528
Roland Dreier225c7b12007-05-08 18:00:38 -07001529 if (attr_mask & IB_QP_PKEY_INDEX) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001530 if (qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV)
1531 context->pri_path.disable_pkey_check = 0x40;
Roland Dreier225c7b12007-05-08 18:00:38 -07001532 context->pri_path.pkey_index = attr->pkey_index;
1533 optpar |= MLX4_QP_OPTPAR_PKEY_INDEX;
1534 }
1535
Roland Dreier225c7b12007-05-08 18:00:38 -07001536 if (attr_mask & IB_QP_AV) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001537 if (mlx4_set_path(dev, attr, attr_mask, qp, &context->pri_path,
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001538 attr_mask & IB_QP_PORT ?
1539 attr->port_num : qp->port))
Roland Dreier225c7b12007-05-08 18:00:38 -07001540 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001541
1542 optpar |= (MLX4_QP_OPTPAR_PRIMARY_ADDR_PATH |
1543 MLX4_QP_OPTPAR_SCHED_QUEUE);
1544 }
1545
1546 if (attr_mask & IB_QP_TIMEOUT) {
Eli Cohenfa417f72010-10-24 21:08:52 -07001547 context->pri_path.ackto |= attr->timeout << 3;
Roland Dreier225c7b12007-05-08 18:00:38 -07001548 optpar |= MLX4_QP_OPTPAR_ACK_TIMEOUT;
1549 }
1550
1551 if (attr_mask & IB_QP_ALT_PATH) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001552 if (attr->alt_port_num == 0 ||
1553 attr->alt_port_num > dev->dev->caps.num_ports)
Florin Malitaf5b40432007-07-19 15:58:09 -04001554 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001555
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001556 if (attr->alt_pkey_index >=
1557 dev->dev->caps.pkey_table_len[attr->alt_port_num])
Florin Malitaf5b40432007-07-19 15:58:09 -04001558 goto out;
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001559
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001560 if (mlx4_set_alt_path(dev, attr, attr_mask, qp,
1561 &context->alt_path,
Moni Shoua297e0da2013-12-12 18:03:14 +02001562 attr->alt_port_num))
Florin Malitaf5b40432007-07-19 15:58:09 -04001563 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001564
1565 context->alt_path.pkey_index = attr->alt_pkey_index;
1566 context->alt_path.ackto = attr->alt_timeout << 3;
1567 optpar |= MLX4_QP_OPTPAR_ALT_ADDR_PATH;
1568 }
1569
Sean Hefty0a1405d2011-06-02 11:32:15 -07001570 pd = get_pd(qp);
1571 get_cqs(qp, &send_cq, &recv_cq);
1572 context->pd = cpu_to_be32(pd->pdn);
1573 context->cqn_send = cpu_to_be32(send_cq->mcq.cqn);
1574 context->cqn_recv = cpu_to_be32(recv_cq->mcq.cqn);
1575 context->params1 = cpu_to_be32(MLX4_IB_ACK_REQ_FREQ << 28);
Jack Morgenstein57f01b52007-06-06 19:35:04 +03001576
Roland Dreier95d04f02008-07-23 08:12:26 -07001577 /* Set "fast registration enabled" for all kernel QPs */
1578 if (!qp->ibqp.uobject)
1579 context->params1 |= cpu_to_be32(1 << 11);
1580
Jack Morgenstein57f01b52007-06-06 19:35:04 +03001581 if (attr_mask & IB_QP_RNR_RETRY) {
1582 context->params1 |= cpu_to_be32(attr->rnr_retry << 13);
1583 optpar |= MLX4_QP_OPTPAR_RNR_RETRY;
1584 }
1585
Roland Dreier225c7b12007-05-08 18:00:38 -07001586 if (attr_mask & IB_QP_RETRY_CNT) {
1587 context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
1588 optpar |= MLX4_QP_OPTPAR_RETRY_COUNT;
1589 }
1590
1591 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
1592 if (attr->max_rd_atomic)
1593 context->params1 |=
1594 cpu_to_be32(fls(attr->max_rd_atomic - 1) << 21);
1595 optpar |= MLX4_QP_OPTPAR_SRA_MAX;
1596 }
1597
1598 if (attr_mask & IB_QP_SQ_PSN)
1599 context->next_send_psn = cpu_to_be32(attr->sq_psn);
1600
Roland Dreier225c7b12007-05-08 18:00:38 -07001601 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
1602 if (attr->max_dest_rd_atomic)
1603 context->params2 |=
1604 cpu_to_be32(fls(attr->max_dest_rd_atomic - 1) << 21);
1605 optpar |= MLX4_QP_OPTPAR_RRA_MAX;
1606 }
1607
1608 if (attr_mask & (IB_QP_ACCESS_FLAGS | IB_QP_MAX_DEST_RD_ATOMIC)) {
1609 context->params2 |= to_mlx4_access_flags(qp, attr, attr_mask);
1610 optpar |= MLX4_QP_OPTPAR_RWE | MLX4_QP_OPTPAR_RRE | MLX4_QP_OPTPAR_RAE;
1611 }
1612
1613 if (ibqp->srq)
1614 context->params2 |= cpu_to_be32(MLX4_QP_BIT_RIC);
1615
1616 if (attr_mask & IB_QP_MIN_RNR_TIMER) {
1617 context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
1618 optpar |= MLX4_QP_OPTPAR_RNR_TIMEOUT;
1619 }
1620 if (attr_mask & IB_QP_RQ_PSN)
1621 context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
1622
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001623 /* proxy and tunnel qp qkeys will be changed in modify-qp wrappers */
Roland Dreier225c7b12007-05-08 18:00:38 -07001624 if (attr_mask & IB_QP_QKEY) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001625 if (qp->mlx4_ib_qp_type &
1626 (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER))
1627 context->qkey = cpu_to_be32(IB_QP_SET_QKEY);
1628 else {
1629 if (mlx4_is_mfunc(dev->dev) &&
1630 !(qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV) &&
1631 (attr->qkey & MLX4_RESERVED_QKEY_MASK) ==
1632 MLX4_RESERVED_QKEY_BASE) {
1633 pr_err("Cannot use reserved QKEY"
1634 " 0x%x (range 0xffff0000..0xffffffff"
1635 " is reserved)\n", attr->qkey);
1636 err = -EINVAL;
1637 goto out;
1638 }
1639 context->qkey = cpu_to_be32(attr->qkey);
1640 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001641 optpar |= MLX4_QP_OPTPAR_Q_KEY;
1642 }
1643
1644 if (ibqp->srq)
1645 context->srqn = cpu_to_be32(1 << 24 | to_msrq(ibqp->srq)->msrq.srqn);
1646
Sean Hefty0a1405d2011-06-02 11:32:15 -07001647 if (qp->rq.wqe_cnt && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
Roland Dreier225c7b12007-05-08 18:00:38 -07001648 context->db_rec_addr = cpu_to_be64(qp->db.dma);
1649
1650 if (cur_state == IB_QPS_INIT &&
1651 new_state == IB_QPS_RTR &&
1652 (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI ||
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001653 ibqp->qp_type == IB_QPT_UD ||
1654 ibqp->qp_type == IB_QPT_RAW_PACKET)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001655 context->pri_path.sched_queue = (qp->port - 1) << 6;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001656 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_SMI ||
1657 qp->mlx4_ib_qp_type &
1658 (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001659 context->pri_path.sched_queue |= MLX4_IB_DEFAULT_QP0_SCHED_QUEUE;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001660 if (qp->mlx4_ib_qp_type != MLX4_IB_QPT_SMI)
1661 context->pri_path.fl = 0x80;
1662 } else {
1663 if (qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV)
1664 context->pri_path.fl = 0x80;
Roland Dreier225c7b12007-05-08 18:00:38 -07001665 context->pri_path.sched_queue |= MLX4_IB_DEFAULT_SCHED_QUEUE;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001666 }
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001667 if (rdma_port_get_link_layer(&dev->ib_dev, qp->port) ==
1668 IB_LINK_LAYER_ETHERNET) {
1669 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_TUN_GSI ||
1670 qp->mlx4_ib_qp_type == MLX4_IB_QPT_GSI)
1671 context->pri_path.feup = 1 << 7; /* don't fsm */
1672 /* handle smac_index */
1673 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_UD ||
1674 qp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI ||
1675 qp->mlx4_ib_qp_type == MLX4_IB_QPT_TUN_GSI) {
1676 err = handle_eth_ud_smac_index(dev, qp, (u8 *)attr->smac, context);
Majd Dibbinybede98e2015-01-29 10:41:41 +02001677 if (err) {
1678 err = -EINVAL;
1679 goto out;
1680 }
Matan Barak9433c182014-05-15 15:29:28 +03001681 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI)
1682 dev->qp1_proxy[qp->port - 1] = qp;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001683 }
1684 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001685 }
1686
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001687 if (qp->ibqp.qp_type == IB_QPT_RAW_PACKET) {
Eli Cohen3528f692013-04-21 15:10:01 +00001688 context->pri_path.ackto = (context->pri_path.ackto & 0xf8) |
1689 MLX4_IB_LINK_TYPE_ETH;
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001690 if (dev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) {
1691 /* set QP to receive both tunneled & non-tunneled packets */
Or Gerlitz8e1a03b2014-09-10 17:15:11 +03001692 if (!(context->flags & cpu_to_be32(1 << MLX4_RSS_QPC_FLAG_OFFSET)))
Or Gerlitzd2fce8a2014-08-27 16:47:49 +03001693 context->srqn = cpu_to_be32(7 << 28);
1694 }
1695 }
Eli Cohen3528f692013-04-21 15:10:01 +00001696
Moni Shoua297e0da2013-12-12 18:03:14 +02001697 if (ibqp->qp_type == IB_QPT_UD && (new_state == IB_QPS_RTR)) {
1698 int is_eth = rdma_port_get_link_layer(
1699 &dev->ib_dev, qp->port) ==
1700 IB_LINK_LAYER_ETHERNET;
1701 if (is_eth) {
1702 context->pri_path.ackto = MLX4_IB_LINK_TYPE_ETH;
1703 optpar |= MLX4_QP_OPTPAR_PRIMARY_ADDR_PATH;
1704 }
1705 }
1706
1707
Roland Dreier225c7b12007-05-08 18:00:38 -07001708 if (cur_state == IB_QPS_RTS && new_state == IB_QPS_SQD &&
1709 attr_mask & IB_QP_EN_SQD_ASYNC_NOTIFY && attr->en_sqd_async_notify)
1710 sqd_event = 1;
1711 else
1712 sqd_event = 0;
1713
Vladimir Sokolovskyd57f5f72008-10-08 20:09:01 -07001714 if (!ibqp->uobject && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
1715 context->rlkey |= (1 << 4);
1716
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001717 /*
1718 * Before passing a kernel QP to the HW, make sure that the
Roland Dreier0e6e7412007-06-18 08:13:48 -07001719 * ownership bits of the send queue are set and the SQ
1720 * headroom is stamped so that the hardware doesn't start
1721 * processing stale work requests.
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001722 */
1723 if (!ibqp->uobject && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT) {
1724 struct mlx4_wqe_ctrl_seg *ctrl;
1725 int i;
1726
Roland Dreier0e6e7412007-06-18 08:13:48 -07001727 for (i = 0; i < qp->sq.wqe_cnt; ++i) {
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001728 ctrl = get_send_wqe(qp, i);
1729 ctrl->owner_opcode = cpu_to_be32(1 << 31);
Eli Cohen9670e552008-07-14 23:48:44 -07001730 if (qp->sq_max_wqes_per_wr == 1)
1731 ctrl->fence_size = 1 << (qp->sq.wqe_shift - 4);
Roland Dreier0e6e7412007-06-18 08:13:48 -07001732
Jack Morgensteinea54b102008-01-28 10:40:59 +02001733 stamp_send_wqe(qp, i, 1 << qp->sq.wqe_shift);
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001734 }
1735 }
1736
Roland Dreier225c7b12007-05-08 18:00:38 -07001737 err = mlx4_qp_modify(dev->dev, &qp->mtt, to_mlx4_state(cur_state),
1738 to_mlx4_state(new_state), context, optpar,
1739 sqd_event, &qp->mqp);
1740 if (err)
1741 goto out;
1742
1743 qp->state = new_state;
1744
1745 if (attr_mask & IB_QP_ACCESS_FLAGS)
1746 qp->atomic_rd_en = attr->qp_access_flags;
1747 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
1748 qp->resp_depth = attr->max_dest_rd_atomic;
Eli Cohenfa417f72010-10-24 21:08:52 -07001749 if (attr_mask & IB_QP_PORT) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001750 qp->port = attr->port_num;
Eli Cohenfa417f72010-10-24 21:08:52 -07001751 update_mcg_macs(dev, qp);
1752 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001753 if (attr_mask & IB_QP_ALT_PATH)
1754 qp->alt_port = attr->alt_port_num;
1755
1756 if (is_sqp(dev, qp))
1757 store_sqp_attrs(to_msqp(qp), attr, attr_mask);
1758
1759 /*
1760 * If we moved QP0 to RTR, bring the IB link up; if we moved
1761 * QP0 to RESET or ERROR, bring the link back down.
1762 */
1763 if (is_qp0(dev, qp)) {
1764 if (cur_state != IB_QPS_RTR && new_state == IB_QPS_RTR)
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001765 if (mlx4_INIT_PORT(dev->dev, qp->port))
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001766 pr_warn("INIT_PORT failed for port %d\n",
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001767 qp->port);
Roland Dreier225c7b12007-05-08 18:00:38 -07001768
1769 if (cur_state != IB_QPS_RESET && cur_state != IB_QPS_ERR &&
1770 (new_state == IB_QPS_RESET || new_state == IB_QPS_ERR))
1771 mlx4_CLOSE_PORT(dev->dev, qp->port);
1772 }
1773
1774 /*
1775 * If we moved a kernel QP to RESET, clean up all old CQ
1776 * entries and reinitialize the QP.
1777 */
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001778 if (new_state == IB_QPS_RESET) {
1779 if (!ibqp->uobject) {
1780 mlx4_ib_cq_clean(recv_cq, qp->mqp.qpn,
1781 ibqp->srq ? to_msrq(ibqp->srq) : NULL);
1782 if (send_cq != recv_cq)
1783 mlx4_ib_cq_clean(send_cq, qp->mqp.qpn, NULL);
Roland Dreier225c7b12007-05-08 18:00:38 -07001784
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001785 qp->rq.head = 0;
1786 qp->rq.tail = 0;
1787 qp->sq.head = 0;
1788 qp->sq.tail = 0;
1789 qp->sq_next_wqe = 0;
1790 if (qp->rq.wqe_cnt)
1791 *qp->db.db = 0;
Matan Barakc1c98502013-11-07 15:25:17 +02001792
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001793 if (qp->flags & MLX4_IB_QP_NETIF)
1794 mlx4_ib_steer_qp_reg(dev, qp, 0);
1795 }
Jack Morgenstein25476b02014-09-11 14:11:20 +03001796 if (qp->pri.smac || (!qp->pri.smac && qp->pri.smac_port)) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001797 mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
1798 qp->pri.smac = 0;
Jack Morgenstein25476b02014-09-11 14:11:20 +03001799 qp->pri.smac_port = 0;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001800 }
1801 if (qp->alt.smac) {
1802 mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
1803 qp->alt.smac = 0;
1804 }
1805 if (qp->pri.vid < 0x1000) {
1806 mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port, qp->pri.vid);
1807 qp->pri.vid = 0xFFFF;
1808 qp->pri.candidate_vid = 0xFFFF;
1809 qp->pri.update_vid = 0;
1810 }
1811
1812 if (qp->alt.vid < 0x1000) {
1813 mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port, qp->alt.vid);
1814 qp->alt.vid = 0xFFFF;
1815 qp->alt.candidate_vid = 0xFFFF;
1816 qp->alt.update_vid = 0;
1817 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001818 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001819out:
Matan Barakc1c98502013-11-07 15:25:17 +02001820 if (err && steer_qp)
1821 mlx4_ib_steer_qp_reg(dev, qp, 0);
Roland Dreier225c7b12007-05-08 18:00:38 -07001822 kfree(context);
Jack Morgenstein25476b02014-09-11 14:11:20 +03001823 if (qp->pri.candidate_smac ||
1824 (!qp->pri.candidate_smac && qp->pri.candidate_smac_port)) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001825 if (err) {
1826 mlx4_unregister_mac(dev->dev, qp->pri.candidate_smac_port, qp->pri.candidate_smac);
1827 } else {
Jack Morgenstein25476b02014-09-11 14:11:20 +03001828 if (qp->pri.smac || (!qp->pri.smac && qp->pri.smac_port))
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001829 mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
1830 qp->pri.smac = qp->pri.candidate_smac;
1831 qp->pri.smac_index = qp->pri.candidate_smac_index;
1832 qp->pri.smac_port = qp->pri.candidate_smac_port;
1833 }
1834 qp->pri.candidate_smac = 0;
1835 qp->pri.candidate_smac_index = 0;
1836 qp->pri.candidate_smac_port = 0;
1837 }
1838 if (qp->alt.candidate_smac) {
1839 if (err) {
1840 mlx4_unregister_mac(dev->dev, qp->alt.candidate_smac_port, qp->alt.candidate_smac);
1841 } else {
1842 if (qp->alt.smac)
1843 mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
1844 qp->alt.smac = qp->alt.candidate_smac;
1845 qp->alt.smac_index = qp->alt.candidate_smac_index;
1846 qp->alt.smac_port = qp->alt.candidate_smac_port;
1847 }
1848 qp->alt.candidate_smac = 0;
1849 qp->alt.candidate_smac_index = 0;
1850 qp->alt.candidate_smac_port = 0;
1851 }
1852
1853 if (qp->pri.update_vid) {
1854 if (err) {
1855 if (qp->pri.candidate_vid < 0x1000)
1856 mlx4_unregister_vlan(dev->dev, qp->pri.candidate_vlan_port,
1857 qp->pri.candidate_vid);
1858 } else {
1859 if (qp->pri.vid < 0x1000)
1860 mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port,
1861 qp->pri.vid);
1862 qp->pri.vid = qp->pri.candidate_vid;
1863 qp->pri.vlan_port = qp->pri.candidate_vlan_port;
1864 qp->pri.vlan_index = qp->pri.candidate_vlan_index;
1865 }
1866 qp->pri.candidate_vid = 0xFFFF;
1867 qp->pri.update_vid = 0;
1868 }
1869
1870 if (qp->alt.update_vid) {
1871 if (err) {
1872 if (qp->alt.candidate_vid < 0x1000)
1873 mlx4_unregister_vlan(dev->dev, qp->alt.candidate_vlan_port,
1874 qp->alt.candidate_vid);
1875 } else {
1876 if (qp->alt.vid < 0x1000)
1877 mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port,
1878 qp->alt.vid);
1879 qp->alt.vid = qp->alt.candidate_vid;
1880 qp->alt.vlan_port = qp->alt.candidate_vlan_port;
1881 qp->alt.vlan_index = qp->alt.candidate_vlan_index;
1882 }
1883 qp->alt.candidate_vid = 0xFFFF;
1884 qp->alt.update_vid = 0;
1885 }
1886
Roland Dreier225c7b12007-05-08 18:00:38 -07001887 return err;
1888}
1889
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001890int mlx4_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1891 int attr_mask, struct ib_udata *udata)
1892{
1893 struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
1894 struct mlx4_ib_qp *qp = to_mqp(ibqp);
1895 enum ib_qp_state cur_state, new_state;
1896 int err = -EINVAL;
Moni Shoua297e0da2013-12-12 18:03:14 +02001897 int ll;
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001898 mutex_lock(&qp->mutex);
1899
1900 cur_state = attr_mask & IB_QP_CUR_STATE ? attr->cur_qp_state : qp->state;
1901 new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state;
1902
Moni Shoua297e0da2013-12-12 18:03:14 +02001903 if (cur_state == new_state && cur_state == IB_QPS_RESET) {
1904 ll = IB_LINK_LAYER_UNSPECIFIED;
1905 } else {
1906 int port = attr_mask & IB_QP_PORT ? attr->port_num : qp->port;
1907 ll = rdma_port_get_link_layer(&dev->ib_dev, port);
1908 }
Matan Barakdd5f03b2013-12-12 18:03:11 +02001909
1910 if (!ib_modify_qp_is_ok(cur_state, new_state, ibqp->qp_type,
Moni Shoua297e0da2013-12-12 18:03:14 +02001911 attr_mask, ll)) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001912 pr_debug("qpn 0x%x: invalid attribute mask specified "
1913 "for transition %d to %d. qp_type %d,"
1914 " attr_mask 0x%x\n",
1915 ibqp->qp_num, cur_state, new_state,
1916 ibqp->qp_type, attr_mask);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001917 goto out;
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001918 }
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001919
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001920 if ((attr_mask & IB_QP_PORT) &&
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001921 (attr->port_num == 0 || attr->port_num > dev->num_ports)) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001922 pr_debug("qpn 0x%x: invalid port number (%d) specified "
1923 "for transition %d to %d. qp_type %d\n",
1924 ibqp->qp_num, attr->port_num, cur_state,
1925 new_state, ibqp->qp_type);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001926 goto out;
1927 }
1928
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001929 if ((attr_mask & IB_QP_PORT) && (ibqp->qp_type == IB_QPT_RAW_PACKET) &&
1930 (rdma_port_get_link_layer(&dev->ib_dev, attr->port_num) !=
1931 IB_LINK_LAYER_ETHERNET))
1932 goto out;
1933
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001934 if (attr_mask & IB_QP_PKEY_INDEX) {
1935 int p = attr_mask & IB_QP_PORT ? attr->port_num : qp->port;
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001936 if (attr->pkey_index >= dev->dev->caps.pkey_table_len[p]) {
1937 pr_debug("qpn 0x%x: invalid pkey index (%d) specified "
1938 "for transition %d to %d. qp_type %d\n",
1939 ibqp->qp_num, attr->pkey_index, cur_state,
1940 new_state, ibqp->qp_type);
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001941 goto out;
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001942 }
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001943 }
1944
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001945 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC &&
1946 attr->max_rd_atomic > dev->dev->caps.max_qp_init_rdma) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001947 pr_debug("qpn 0x%x: max_rd_atomic (%d) too large. "
1948 "Transition %d to %d. qp_type %d\n",
1949 ibqp->qp_num, attr->max_rd_atomic, cur_state,
1950 new_state, ibqp->qp_type);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001951 goto out;
1952 }
1953
1954 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC &&
1955 attr->max_dest_rd_atomic > dev->dev->caps.max_qp_dest_rdma) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001956 pr_debug("qpn 0x%x: max_dest_rd_atomic (%d) too large. "
1957 "Transition %d to %d. qp_type %d\n",
1958 ibqp->qp_num, attr->max_dest_rd_atomic, cur_state,
1959 new_state, ibqp->qp_type);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001960 goto out;
1961 }
1962
1963 if (cur_state == new_state && cur_state == IB_QPS_RESET) {
1964 err = 0;
1965 goto out;
1966 }
1967
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001968 err = __mlx4_ib_modify_qp(ibqp, attr, attr_mask, cur_state, new_state);
1969
1970out:
1971 mutex_unlock(&qp->mutex);
1972 return err;
1973}
1974
Jack Morgenstein99ec41d2014-05-29 16:31:03 +03001975static int vf_get_qp0_qkey(struct mlx4_dev *dev, int qpn, u32 *qkey)
1976{
1977 int i;
1978 for (i = 0; i < dev->caps.num_ports; i++) {
1979 if (qpn == dev->caps.qp0_proxy[i] ||
1980 qpn == dev->caps.qp0_tunnel[i]) {
1981 *qkey = dev->caps.qp0_qkey[i];
1982 return 0;
1983 }
1984 }
1985 return -EINVAL;
1986}
1987
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001988static int build_sriov_qp0_header(struct mlx4_ib_sqp *sqp,
1989 struct ib_send_wr *wr,
1990 void *wqe, unsigned *mlx_seg_len)
1991{
1992 struct mlx4_ib_dev *mdev = to_mdev(sqp->qp.ibqp.device);
1993 struct ib_device *ib_dev = &mdev->ib_dev;
1994 struct mlx4_wqe_mlx_seg *mlx = wqe;
1995 struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
1996 struct mlx4_ib_ah *ah = to_mah(wr->wr.ud.ah);
1997 u16 pkey;
1998 u32 qkey;
1999 int send_size;
2000 int header_size;
2001 int spc;
2002 int i;
2003
2004 if (wr->opcode != IB_WR_SEND)
2005 return -EINVAL;
2006
2007 send_size = 0;
2008
2009 for (i = 0; i < wr->num_sge; ++i)
2010 send_size += wr->sg_list[i].length;
2011
2012 /* for proxy-qp0 sends, need to add in size of tunnel header */
2013 /* for tunnel-qp0 sends, tunnel header is already in s/g list */
2014 if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_SMI_OWNER)
2015 send_size += sizeof (struct mlx4_ib_tunnel_header);
2016
2017 ib_ud_header_init(send_size, 1, 0, 0, 0, 0, &sqp->ud_header);
2018
2019 if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_SMI_OWNER) {
2020 sqp->ud_header.lrh.service_level =
2021 be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 28;
2022 sqp->ud_header.lrh.destination_lid =
2023 cpu_to_be16(ah->av.ib.g_slid & 0x7f);
2024 sqp->ud_header.lrh.source_lid =
2025 cpu_to_be16(ah->av.ib.g_slid & 0x7f);
2026 }
2027
2028 mlx->flags &= cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
2029
2030 /* force loopback */
2031 mlx->flags |= cpu_to_be32(MLX4_WQE_MLX_VL15 | 0x1 | MLX4_WQE_MLX_SLR);
2032 mlx->rlid = sqp->ud_header.lrh.destination_lid;
2033
2034 sqp->ud_header.lrh.virtual_lane = 0;
2035 sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
2036 ib_get_cached_pkey(ib_dev, sqp->qp.port, 0, &pkey);
2037 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
2038 if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_TUN_SMI_OWNER)
2039 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
2040 else
2041 sqp->ud_header.bth.destination_qpn =
Jack Morgenstein47605df2012-08-03 08:40:57 +00002042 cpu_to_be32(mdev->dev->caps.qp0_tunnel[sqp->qp.port - 1]);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002043
2044 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
Jack Morgenstein99ec41d2014-05-29 16:31:03 +03002045 if (mlx4_is_master(mdev->dev)) {
2046 if (mlx4_get_parav_qkey(mdev->dev, sqp->qp.mqp.qpn, &qkey))
2047 return -EINVAL;
2048 } else {
2049 if (vf_get_qp0_qkey(mdev->dev, sqp->qp.mqp.qpn, &qkey))
2050 return -EINVAL;
2051 }
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002052 sqp->ud_header.deth.qkey = cpu_to_be32(qkey);
2053 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.mqp.qpn);
2054
2055 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
2056 sqp->ud_header.immediate_present = 0;
2057
2058 header_size = ib_ud_header_pack(&sqp->ud_header, sqp->header_buf);
2059
2060 /*
2061 * Inline data segments may not cross a 64 byte boundary. If
2062 * our UD header is bigger than the space available up to the
2063 * next 64 byte boundary in the WQE, use two inline data
2064 * segments to hold the UD header.
2065 */
2066 spc = MLX4_INLINE_ALIGN -
2067 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2068 if (header_size <= spc) {
2069 inl->byte_count = cpu_to_be32(1 << 31 | header_size);
2070 memcpy(inl + 1, sqp->header_buf, header_size);
2071 i = 1;
2072 } else {
2073 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2074 memcpy(inl + 1, sqp->header_buf, spc);
2075
2076 inl = (void *) (inl + 1) + spc;
2077 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
2078 /*
2079 * Need a barrier here to make sure all the data is
2080 * visible before the byte_count field is set.
2081 * Otherwise the HCA prefetcher could grab the 64-byte
2082 * chunk with this inline segment and get a valid (!=
2083 * 0xffffffff) byte count but stale data, and end up
2084 * generating a packet with bad headers.
2085 *
2086 * The first inline segment's byte_count field doesn't
2087 * need a barrier, because it comes after a
2088 * control/MLX segment and therefore is at an offset
2089 * of 16 mod 64.
2090 */
2091 wmb();
2092 inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc));
2093 i = 2;
2094 }
2095
2096 *mlx_seg_len =
2097 ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + header_size, 16);
2098 return 0;
2099}
2100
Jack Morgenstein3e0629c2014-09-11 14:11:17 +03002101static void mlx4_u64_to_smac(u8 *dst_mac, u64 src_mac)
2102{
2103 int i;
2104
2105 for (i = ETH_ALEN; i; i--) {
2106 dst_mac[i - 1] = src_mac & 0xff;
2107 src_mac >>= 8;
2108 }
2109}
2110
Roland Dreier225c7b12007-05-08 18:00:38 -07002111static int build_mlx_header(struct mlx4_ib_sqp *sqp, struct ib_send_wr *wr,
Roland Dreierf4380002008-04-16 21:09:28 -07002112 void *wqe, unsigned *mlx_seg_len)
Roland Dreier225c7b12007-05-08 18:00:38 -07002113{
Eli Cohena4788682010-01-27 13:57:03 +00002114 struct ib_device *ib_dev = sqp->qp.ibqp.device;
Roland Dreier225c7b12007-05-08 18:00:38 -07002115 struct mlx4_wqe_mlx_seg *mlx = wqe;
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002116 struct mlx4_wqe_ctrl_seg *ctrl = wqe;
Roland Dreier225c7b12007-05-08 18:00:38 -07002117 struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
2118 struct mlx4_ib_ah *ah = to_mah(wr->wr.ud.ah);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002119 union ib_gid sgid;
Roland Dreier225c7b12007-05-08 18:00:38 -07002120 u16 pkey;
2121 int send_size;
2122 int header_size;
Roland Dreiere61ef242007-06-18 09:23:47 -07002123 int spc;
Roland Dreier225c7b12007-05-08 18:00:38 -07002124 int i;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002125 int err = 0;
Paul Bolle57d88cf2013-02-25 09:17:13 -08002126 u16 vlan = 0xffff;
Roland Dreiera29bec12013-02-25 09:02:03 -08002127 bool is_eth;
2128 bool is_vlan = false;
2129 bool is_grh;
Roland Dreier225c7b12007-05-08 18:00:38 -07002130
2131 send_size = 0;
2132 for (i = 0; i < wr->num_sge; ++i)
2133 send_size += wr->sg_list[i].length;
2134
Eli Cohenfa417f72010-10-24 21:08:52 -07002135 is_eth = rdma_port_get_link_layer(sqp->qp.ibqp.device, sqp->qp.port) == IB_LINK_LAYER_ETHERNET;
2136 is_grh = mlx4_ib_ah_grh_present(ah);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002137 if (is_eth) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002138 if (mlx4_is_mfunc(to_mdev(ib_dev)->dev)) {
2139 /* When multi-function is enabled, the ib_core gid
2140 * indexes don't necessarily match the hw ones, so
2141 * we must use our own cache */
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002142 err = mlx4_get_roce_gid_from_slave(to_mdev(ib_dev)->dev,
2143 be32_to_cpu(ah->av.ib.port_pd) >> 24,
2144 ah->av.ib.gid_index, &sgid.raw[0]);
2145 if (err)
2146 return err;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002147 } else {
2148 err = ib_get_cached_gid(ib_dev,
2149 be32_to_cpu(ah->av.ib.port_pd) >> 24,
2150 ah->av.ib.gid_index, &sgid);
2151 if (err)
2152 return err;
2153 }
2154
Bart Van Assche0e9855d2014-03-10 10:33:05 +01002155 if (ah->av.eth.vlan != cpu_to_be16(0xffff)) {
Moni Shoua297e0da2013-12-12 18:03:14 +02002156 vlan = be16_to_cpu(ah->av.eth.vlan) & 0x0fff;
2157 is_vlan = 1;
2158 }
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002159 }
2160 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 -07002161
Eli Cohenfa417f72010-10-24 21:08:52 -07002162 if (!is_eth) {
2163 sqp->ud_header.lrh.service_level =
2164 be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 28;
2165 sqp->ud_header.lrh.destination_lid = ah->av.ib.dlid;
2166 sqp->ud_header.lrh.source_lid = cpu_to_be16(ah->av.ib.g_slid & 0x7f);
2167 }
2168
2169 if (is_grh) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002170 sqp->ud_header.grh.traffic_class =
Eli Cohenfa417f72010-10-24 21:08:52 -07002171 (be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 20) & 0xff;
Roland Dreier225c7b12007-05-08 18:00:38 -07002172 sqp->ud_header.grh.flow_label =
Eli Cohenfa417f72010-10-24 21:08:52 -07002173 ah->av.ib.sl_tclass_flowlabel & cpu_to_be32(0xfffff);
2174 sqp->ud_header.grh.hop_limit = ah->av.ib.hop_limit;
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002175 if (is_eth)
2176 memcpy(sqp->ud_header.grh.source_gid.raw, sgid.raw, 16);
2177 else {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002178 if (mlx4_is_mfunc(to_mdev(ib_dev)->dev)) {
2179 /* When multi-function is enabled, the ib_core gid
2180 * indexes don't necessarily match the hw ones, so
2181 * we must use our own cache */
2182 sqp->ud_header.grh.source_gid.global.subnet_prefix =
2183 to_mdev(ib_dev)->sriov.demux[sqp->qp.port - 1].
2184 subnet_prefix;
2185 sqp->ud_header.grh.source_gid.global.interface_id =
2186 to_mdev(ib_dev)->sriov.demux[sqp->qp.port - 1].
2187 guid_cache[ah->av.ib.gid_index];
2188 } else
2189 ib_get_cached_gid(ib_dev,
2190 be32_to_cpu(ah->av.ib.port_pd) >> 24,
2191 ah->av.ib.gid_index,
2192 &sqp->ud_header.grh.source_gid);
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002193 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002194 memcpy(sqp->ud_header.grh.destination_gid.raw,
Eli Cohenfa417f72010-10-24 21:08:52 -07002195 ah->av.ib.dgid, 16);
Roland Dreier225c7b12007-05-08 18:00:38 -07002196 }
2197
2198 mlx->flags &= cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
Eli Cohenfa417f72010-10-24 21:08:52 -07002199
2200 if (!is_eth) {
2201 mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MLX4_WQE_MLX_VL15 : 0) |
2202 (sqp->ud_header.lrh.destination_lid ==
2203 IB_LID_PERMISSIVE ? MLX4_WQE_MLX_SLR : 0) |
2204 (sqp->ud_header.lrh.service_level << 8));
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002205 if (ah->av.ib.port_pd & cpu_to_be32(0x80000000))
2206 mlx->flags |= cpu_to_be32(0x1); /* force loopback */
Eli Cohenfa417f72010-10-24 21:08:52 -07002207 mlx->rlid = sqp->ud_header.lrh.destination_lid;
2208 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002209
2210 switch (wr->opcode) {
2211 case IB_WR_SEND:
2212 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
2213 sqp->ud_header.immediate_present = 0;
2214 break;
2215 case IB_WR_SEND_WITH_IMM:
2216 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
2217 sqp->ud_header.immediate_present = 1;
Roland Dreier0f39cf32008-04-16 21:09:32 -07002218 sqp->ud_header.immediate_data = wr->ex.imm_data;
Roland Dreier225c7b12007-05-08 18:00:38 -07002219 break;
2220 default:
2221 return -EINVAL;
2222 }
2223
Eli Cohenfa417f72010-10-24 21:08:52 -07002224 if (is_eth) {
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002225 struct in6_addr in6;
2226
Oren Duerc0c1d3d72012-04-29 17:04:24 +03002227 u16 pcp = (be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 29) << 13;
2228
2229 mlx->sched_prio = cpu_to_be16(pcp);
Eli Cohenfa417f72010-10-24 21:08:52 -07002230
2231 memcpy(sqp->ud_header.eth.dmac_h, ah->av.eth.mac, 6);
2232 /* FIXME: cache smac value? */
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002233 memcpy(&ctrl->srcrb_flags16[0], ah->av.eth.mac, 2);
2234 memcpy(&ctrl->imm, ah->av.eth.mac + 2, 4);
2235 memcpy(&in6, sgid.raw, sizeof(in6));
Jack Morgenstein5ea8bbf2014-03-12 12:00:41 +02002236
Jack Morgenstein3e0629c2014-09-11 14:11:17 +03002237 if (!mlx4_is_mfunc(to_mdev(ib_dev)->dev)) {
2238 u64 mac = atomic64_read(&to_mdev(ib_dev)->iboe.mac[sqp->qp.port - 1]);
2239 u8 smac[ETH_ALEN];
2240
2241 mlx4_u64_to_smac(smac, mac);
2242 memcpy(sqp->ud_header.eth.smac_h, smac, ETH_ALEN);
2243 } else {
2244 /* use the src mac of the tunnel */
2245 memcpy(sqp->ud_header.eth.smac_h, ah->av.eth.s_mac, ETH_ALEN);
2246 }
2247
Eli Cohenfa417f72010-10-24 21:08:52 -07002248 if (!memcmp(sqp->ud_header.eth.smac_h, sqp->ud_header.eth.dmac_h, 6))
2249 mlx->flags |= cpu_to_be32(MLX4_WQE_CTRL_FORCE_LOOPBACK);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002250 if (!is_vlan) {
2251 sqp->ud_header.eth.type = cpu_to_be16(MLX4_IB_IBOE_ETHERTYPE);
2252 } else {
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002253 sqp->ud_header.vlan.type = cpu_to_be16(MLX4_IB_IBOE_ETHERTYPE);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002254 sqp->ud_header.vlan.tag = cpu_to_be16(vlan | pcp);
2255 }
Eli Cohenfa417f72010-10-24 21:08:52 -07002256 } else {
2257 sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0;
2258 if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE)
2259 sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE;
2260 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002261 sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
2262 if (!sqp->qp.ibqp.qp_num)
2263 ib_get_cached_pkey(ib_dev, sqp->qp.port, sqp->pkey_index, &pkey);
2264 else
2265 ib_get_cached_pkey(ib_dev, sqp->qp.port, wr->wr.ud.pkey_index, &pkey);
2266 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
2267 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
2268 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
2269 sqp->ud_header.deth.qkey = cpu_to_be32(wr->wr.ud.remote_qkey & 0x80000000 ?
2270 sqp->qkey : wr->wr.ud.remote_qkey);
2271 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
2272
2273 header_size = ib_ud_header_pack(&sqp->ud_header, sqp->header_buf);
2274
2275 if (0) {
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002276 pr_err("built UD header of size %d:\n", header_size);
Roland Dreier225c7b12007-05-08 18:00:38 -07002277 for (i = 0; i < header_size / 4; ++i) {
2278 if (i % 8 == 0)
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002279 pr_err(" [%02x] ", i * 4);
2280 pr_cont(" %08x",
2281 be32_to_cpu(((__be32 *) sqp->header_buf)[i]));
Roland Dreier225c7b12007-05-08 18:00:38 -07002282 if ((i + 1) % 8 == 0)
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002283 pr_cont("\n");
Roland Dreier225c7b12007-05-08 18:00:38 -07002284 }
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002285 pr_err("\n");
Roland Dreier225c7b12007-05-08 18:00:38 -07002286 }
2287
Roland Dreiere61ef242007-06-18 09:23:47 -07002288 /*
2289 * Inline data segments may not cross a 64 byte boundary. If
2290 * our UD header is bigger than the space available up to the
2291 * next 64 byte boundary in the WQE, use two inline data
2292 * segments to hold the UD header.
2293 */
2294 spc = MLX4_INLINE_ALIGN -
2295 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2296 if (header_size <= spc) {
2297 inl->byte_count = cpu_to_be32(1 << 31 | header_size);
2298 memcpy(inl + 1, sqp->header_buf, header_size);
2299 i = 1;
2300 } else {
2301 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2302 memcpy(inl + 1, sqp->header_buf, spc);
Roland Dreier225c7b12007-05-08 18:00:38 -07002303
Roland Dreiere61ef242007-06-18 09:23:47 -07002304 inl = (void *) (inl + 1) + spc;
2305 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
2306 /*
2307 * Need a barrier here to make sure all the data is
2308 * visible before the byte_count field is set.
2309 * Otherwise the HCA prefetcher could grab the 64-byte
2310 * chunk with this inline segment and get a valid (!=
2311 * 0xffffffff) byte count but stale data, and end up
2312 * generating a packet with bad headers.
2313 *
2314 * The first inline segment's byte_count field doesn't
2315 * need a barrier, because it comes after a
2316 * control/MLX segment and therefore is at an offset
2317 * of 16 mod 64.
2318 */
2319 wmb();
2320 inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc));
2321 i = 2;
2322 }
2323
Roland Dreierf4380002008-04-16 21:09:28 -07002324 *mlx_seg_len =
2325 ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + header_size, 16);
2326 return 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07002327}
2328
2329static int mlx4_wq_overflow(struct mlx4_ib_wq *wq, int nreq, struct ib_cq *ib_cq)
2330{
2331 unsigned cur;
2332 struct mlx4_ib_cq *cq;
2333
2334 cur = wq->head - wq->tail;
Roland Dreier0e6e7412007-06-18 08:13:48 -07002335 if (likely(cur + nreq < wq->max_post))
Roland Dreier225c7b12007-05-08 18:00:38 -07002336 return 0;
2337
2338 cq = to_mcq(ib_cq);
2339 spin_lock(&cq->lock);
2340 cur = wq->head - wq->tail;
2341 spin_unlock(&cq->lock);
2342
Roland Dreier0e6e7412007-06-18 08:13:48 -07002343 return cur + nreq >= wq->max_post;
Roland Dreier225c7b12007-05-08 18:00:38 -07002344}
2345
Roland Dreier95d04f02008-07-23 08:12:26 -07002346static __be32 convert_access(int acc)
2347{
Shani Michaeli6ff63e12013-02-06 16:19:15 +00002348 return (acc & IB_ACCESS_REMOTE_ATOMIC ?
2349 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_ATOMIC) : 0) |
2350 (acc & IB_ACCESS_REMOTE_WRITE ?
2351 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_WRITE) : 0) |
2352 (acc & IB_ACCESS_REMOTE_READ ?
2353 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_READ) : 0) |
Roland Dreier95d04f02008-07-23 08:12:26 -07002354 (acc & IB_ACCESS_LOCAL_WRITE ? cpu_to_be32(MLX4_WQE_FMR_PERM_LOCAL_WRITE) : 0) |
2355 cpu_to_be32(MLX4_WQE_FMR_PERM_LOCAL_READ);
2356}
2357
2358static void set_fmr_seg(struct mlx4_wqe_fmr_seg *fseg, struct ib_send_wr *wr)
2359{
2360 struct mlx4_ib_fast_reg_page_list *mfrpl = to_mfrpl(wr->wr.fast_reg.page_list);
Vladimir Sokolovsky29bdc882008-09-15 14:25:23 -07002361 int i;
2362
2363 for (i = 0; i < wr->wr.fast_reg.page_list_len; ++i)
Jack Morgenstein2b6b7d42009-05-07 21:35:13 -07002364 mfrpl->mapped_page_list[i] =
Vladimir Sokolovsky29bdc882008-09-15 14:25:23 -07002365 cpu_to_be64(wr->wr.fast_reg.page_list->page_list[i] |
2366 MLX4_MTT_FLAG_PRESENT);
Roland Dreier95d04f02008-07-23 08:12:26 -07002367
2368 fseg->flags = convert_access(wr->wr.fast_reg.access_flags);
2369 fseg->mem_key = cpu_to_be32(wr->wr.fast_reg.rkey);
2370 fseg->buf_list = cpu_to_be64(mfrpl->map);
2371 fseg->start_addr = cpu_to_be64(wr->wr.fast_reg.iova_start);
2372 fseg->reg_len = cpu_to_be64(wr->wr.fast_reg.length);
2373 fseg->offset = 0; /* XXX -- is this just for ZBVA? */
2374 fseg->page_size = cpu_to_be32(wr->wr.fast_reg.page_shift);
2375 fseg->reserved[0] = 0;
2376 fseg->reserved[1] = 0;
2377}
2378
Shani Michaeli6ff63e12013-02-06 16:19:15 +00002379static void set_bind_seg(struct mlx4_wqe_bind_seg *bseg, struct ib_send_wr *wr)
2380{
2381 bseg->flags1 =
2382 convert_access(wr->wr.bind_mw.bind_info.mw_access_flags) &
2383 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_READ |
2384 MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_WRITE |
2385 MLX4_WQE_FMR_AND_BIND_PERM_ATOMIC);
2386 bseg->flags2 = 0;
2387 if (wr->wr.bind_mw.mw->type == IB_MW_TYPE_2)
2388 bseg->flags2 |= cpu_to_be32(MLX4_WQE_BIND_TYPE_2);
2389 if (wr->wr.bind_mw.bind_info.mw_access_flags & IB_ZERO_BASED)
2390 bseg->flags2 |= cpu_to_be32(MLX4_WQE_BIND_ZERO_BASED);
2391 bseg->new_rkey = cpu_to_be32(wr->wr.bind_mw.rkey);
2392 bseg->lkey = cpu_to_be32(wr->wr.bind_mw.bind_info.mr->lkey);
2393 bseg->addr = cpu_to_be64(wr->wr.bind_mw.bind_info.addr);
2394 bseg->length = cpu_to_be64(wr->wr.bind_mw.bind_info.length);
2395}
2396
Roland Dreier95d04f02008-07-23 08:12:26 -07002397static void set_local_inv_seg(struct mlx4_wqe_local_inval_seg *iseg, u32 rkey)
2398{
Shani Michaeliaee38fa2013-02-06 16:19:07 +00002399 memset(iseg, 0, sizeof(*iseg));
2400 iseg->mem_key = cpu_to_be32(rkey);
Roland Dreier95d04f02008-07-23 08:12:26 -07002401}
2402
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002403static __always_inline void set_raddr_seg(struct mlx4_wqe_raddr_seg *rseg,
2404 u64 remote_addr, u32 rkey)
2405{
2406 rseg->raddr = cpu_to_be64(remote_addr);
2407 rseg->rkey = cpu_to_be32(rkey);
2408 rseg->reserved = 0;
2409}
2410
2411static void set_atomic_seg(struct mlx4_wqe_atomic_seg *aseg, struct ib_send_wr *wr)
2412{
2413 if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
2414 aseg->swap_add = cpu_to_be64(wr->wr.atomic.swap);
2415 aseg->compare = cpu_to_be64(wr->wr.atomic.compare_add);
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002416 } else if (wr->opcode == IB_WR_MASKED_ATOMIC_FETCH_AND_ADD) {
2417 aseg->swap_add = cpu_to_be64(wr->wr.atomic.compare_add);
2418 aseg->compare = cpu_to_be64(wr->wr.atomic.compare_add_mask);
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002419 } else {
2420 aseg->swap_add = cpu_to_be64(wr->wr.atomic.compare_add);
2421 aseg->compare = 0;
2422 }
2423
2424}
2425
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002426static void set_masked_atomic_seg(struct mlx4_wqe_masked_atomic_seg *aseg,
2427 struct ib_send_wr *wr)
2428{
2429 aseg->swap_add = cpu_to_be64(wr->wr.atomic.swap);
2430 aseg->swap_add_mask = cpu_to_be64(wr->wr.atomic.swap_mask);
2431 aseg->compare = cpu_to_be64(wr->wr.atomic.compare_add);
2432 aseg->compare_mask = cpu_to_be64(wr->wr.atomic.compare_add_mask);
2433}
2434
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002435static void set_datagram_seg(struct mlx4_wqe_datagram_seg *dseg,
Or Gerlitz80a2dcd2011-10-10 10:54:42 +02002436 struct ib_send_wr *wr)
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002437{
2438 memcpy(dseg->av, &to_mah(wr->wr.ud.ah)->av, sizeof (struct mlx4_av));
2439 dseg->dqpn = cpu_to_be32(wr->wr.ud.remote_qpn);
2440 dseg->qkey = cpu_to_be32(wr->wr.ud.remote_qkey);
Eli Cohenfa417f72010-10-24 21:08:52 -07002441 dseg->vlan = to_mah(wr->wr.ud.ah)->av.eth.vlan;
2442 memcpy(dseg->mac, to_mah(wr->wr.ud.ah)->av.eth.mac, 6);
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002443}
2444
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002445static void set_tunnel_datagram_seg(struct mlx4_ib_dev *dev,
2446 struct mlx4_wqe_datagram_seg *dseg,
Jack Morgenstein97982f52014-05-29 16:31:02 +03002447 struct ib_send_wr *wr,
2448 enum mlx4_ib_qp_type qpt)
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002449{
2450 union mlx4_ext_av *av = &to_mah(wr->wr.ud.ah)->av;
2451 struct mlx4_av sqp_av = {0};
2452 int port = *((u8 *) &av->ib.port_pd) & 0x3;
2453
2454 /* force loopback */
2455 sqp_av.port_pd = av->ib.port_pd | cpu_to_be32(0x80000000);
2456 sqp_av.g_slid = av->ib.g_slid & 0x7f; /* no GRH */
2457 sqp_av.sl_tclass_flowlabel = av->ib.sl_tclass_flowlabel &
2458 cpu_to_be32(0xf0000000);
2459
2460 memcpy(dseg->av, &sqp_av, sizeof (struct mlx4_av));
Jack Morgenstein97982f52014-05-29 16:31:02 +03002461 if (qpt == MLX4_IB_QPT_PROXY_GSI)
2462 dseg->dqpn = cpu_to_be32(dev->dev->caps.qp1_tunnel[port - 1]);
2463 else
2464 dseg->dqpn = cpu_to_be32(dev->dev->caps.qp0_tunnel[port - 1]);
Jack Morgenstein47605df2012-08-03 08:40:57 +00002465 /* Use QKEY from the QP context, which is set by master */
2466 dseg->qkey = cpu_to_be32(IB_QP_SET_QKEY);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002467}
2468
2469static void build_tunnel_header(struct ib_send_wr *wr, void *wqe, unsigned *mlx_seg_len)
2470{
2471 struct mlx4_wqe_inline_seg *inl = wqe;
2472 struct mlx4_ib_tunnel_header hdr;
2473 struct mlx4_ib_ah *ah = to_mah(wr->wr.ud.ah);
2474 int spc;
2475 int i;
2476
2477 memcpy(&hdr.av, &ah->av, sizeof hdr.av);
2478 hdr.remote_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
2479 hdr.pkey_index = cpu_to_be16(wr->wr.ud.pkey_index);
2480 hdr.qkey = cpu_to_be32(wr->wr.ud.remote_qkey);
Jack Morgenstein5ea8bbf2014-03-12 12:00:41 +02002481 memcpy(hdr.mac, ah->av.eth.mac, 6);
2482 hdr.vlan = ah->av.eth.vlan;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002483
2484 spc = MLX4_INLINE_ALIGN -
2485 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2486 if (sizeof (hdr) <= spc) {
2487 memcpy(inl + 1, &hdr, sizeof (hdr));
2488 wmb();
2489 inl->byte_count = cpu_to_be32(1 << 31 | sizeof (hdr));
2490 i = 1;
2491 } else {
2492 memcpy(inl + 1, &hdr, spc);
2493 wmb();
2494 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2495
2496 inl = (void *) (inl + 1) + spc;
2497 memcpy(inl + 1, (void *) &hdr + spc, sizeof (hdr) - spc);
2498 wmb();
2499 inl->byte_count = cpu_to_be32(1 << 31 | (sizeof (hdr) - spc));
2500 i = 2;
2501 }
2502
2503 *mlx_seg_len =
2504 ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + sizeof (hdr), 16);
2505}
2506
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002507static void set_mlx_icrc_seg(void *dseg)
Roland Dreierd420d9e2007-07-18 11:46:27 -07002508{
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002509 u32 *t = dseg;
2510 struct mlx4_wqe_inline_seg *iseg = dseg;
2511
2512 t[1] = 0;
2513
2514 /*
2515 * Need a barrier here before writing the byte_count field to
2516 * make sure that all the data is visible before the
2517 * byte_count field is set. Otherwise, if the segment begins
2518 * a new cacheline, the HCA prefetcher could grab the 64-byte
2519 * chunk and get a valid (!= * 0xffffffff) byte count but
2520 * stale data, and end up sending the wrong data.
2521 */
2522 wmb();
2523
2524 iseg->byte_count = cpu_to_be32((1 << 31) | 4);
2525}
2526
2527static void set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg)
2528{
Roland Dreierd420d9e2007-07-18 11:46:27 -07002529 dseg->lkey = cpu_to_be32(sg->lkey);
2530 dseg->addr = cpu_to_be64(sg->addr);
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002531
2532 /*
2533 * Need a barrier here before writing the byte_count field to
2534 * make sure that all the data is visible before the
2535 * byte_count field is set. Otherwise, if the segment begins
2536 * a new cacheline, the HCA prefetcher could grab the 64-byte
2537 * chunk and get a valid (!= * 0xffffffff) byte count but
2538 * stale data, and end up sending the wrong data.
2539 */
2540 wmb();
2541
2542 dseg->byte_count = cpu_to_be32(sg->length);
Roland Dreierd420d9e2007-07-18 11:46:27 -07002543}
2544
Roland Dreier2242fa42007-10-09 19:59:05 -07002545static void __set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg)
2546{
2547 dseg->byte_count = cpu_to_be32(sg->length);
2548 dseg->lkey = cpu_to_be32(sg->lkey);
2549 dseg->addr = cpu_to_be64(sg->addr);
2550}
2551
Roland Dreier47b37472008-07-22 14:19:39 -07002552static int build_lso_seg(struct mlx4_wqe_lso_seg *wqe, struct ib_send_wr *wr,
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002553 struct mlx4_ib_qp *qp, unsigned *lso_seg_len,
Eli Cohen417608c2009-11-12 11:19:44 -08002554 __be32 *lso_hdr_sz, __be32 *blh)
Eli Cohenb832be12008-04-16 21:09:27 -07002555{
2556 unsigned halign = ALIGN(sizeof *wqe + wr->wr.ud.hlen, 16);
2557
Eli Cohen417608c2009-11-12 11:19:44 -08002558 if (unlikely(halign > MLX4_IB_CACHE_LINE_SIZE))
2559 *blh = cpu_to_be32(1 << 6);
Eli Cohenb832be12008-04-16 21:09:27 -07002560
2561 if (unlikely(!(qp->flags & MLX4_IB_QP_LSO) &&
2562 wr->num_sge > qp->sq.max_gs - (halign >> 4)))
2563 return -EINVAL;
2564
2565 memcpy(wqe->header, wr->wr.ud.header, wr->wr.ud.hlen);
2566
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002567 *lso_hdr_sz = cpu_to_be32((wr->wr.ud.mss - wr->wr.ud.hlen) << 16 |
2568 wr->wr.ud.hlen);
Eli Cohenb832be12008-04-16 21:09:27 -07002569 *lso_seg_len = halign;
2570 return 0;
2571}
2572
Roland Dreier95d04f02008-07-23 08:12:26 -07002573static __be32 send_ieth(struct ib_send_wr *wr)
2574{
2575 switch (wr->opcode) {
2576 case IB_WR_SEND_WITH_IMM:
2577 case IB_WR_RDMA_WRITE_WITH_IMM:
2578 return wr->ex.imm_data;
2579
2580 case IB_WR_SEND_WITH_INV:
2581 return cpu_to_be32(wr->ex.invalidate_rkey);
2582
2583 default:
2584 return 0;
2585 }
2586}
2587
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002588static void add_zero_len_inline(void *wqe)
2589{
2590 struct mlx4_wqe_inline_seg *inl = wqe;
2591 memset(wqe, 0, 16);
2592 inl->byte_count = cpu_to_be32(1 << 31);
2593}
2594
Roland Dreier225c7b12007-05-08 18:00:38 -07002595int mlx4_ib_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
2596 struct ib_send_wr **bad_wr)
2597{
2598 struct mlx4_ib_qp *qp = to_mqp(ibqp);
2599 void *wqe;
2600 struct mlx4_wqe_ctrl_seg *ctrl;
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002601 struct mlx4_wqe_data_seg *dseg;
Roland Dreier225c7b12007-05-08 18:00:38 -07002602 unsigned long flags;
2603 int nreq;
2604 int err = 0;
Jack Morgensteinea54b102008-01-28 10:40:59 +02002605 unsigned ind;
2606 int uninitialized_var(stamp);
2607 int uninitialized_var(size);
Andrew Mortona3d8e152008-05-16 14:28:30 -07002608 unsigned uninitialized_var(seglen);
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002609 __be32 dummy;
2610 __be32 *lso_wqe;
2611 __be32 uninitialized_var(lso_hdr_sz);
Eli Cohen417608c2009-11-12 11:19:44 -08002612 __be32 blh;
Roland Dreier225c7b12007-05-08 18:00:38 -07002613 int i;
2614
Roland Dreier96db0e02007-10-30 10:53:54 -07002615 spin_lock_irqsave(&qp->sq.lock, flags);
Roland Dreier225c7b12007-05-08 18:00:38 -07002616
Jack Morgensteinea54b102008-01-28 10:40:59 +02002617 ind = qp->sq_next_wqe;
Roland Dreier225c7b12007-05-08 18:00:38 -07002618
2619 for (nreq = 0; wr; ++nreq, wr = wr->next) {
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002620 lso_wqe = &dummy;
Eli Cohen417608c2009-11-12 11:19:44 -08002621 blh = 0;
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002622
Roland Dreier225c7b12007-05-08 18:00:38 -07002623 if (mlx4_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
2624 err = -ENOMEM;
2625 *bad_wr = wr;
2626 goto out;
2627 }
2628
2629 if (unlikely(wr->num_sge > qp->sq.max_gs)) {
2630 err = -EINVAL;
2631 *bad_wr = wr;
2632 goto out;
2633 }
2634
Roland Dreier0e6e7412007-06-18 08:13:48 -07002635 ctrl = wqe = get_send_wqe(qp, ind & (qp->sq.wqe_cnt - 1));
Jack Morgensteinea54b102008-01-28 10:40:59 +02002636 qp->sq.wrid[(qp->sq.head + nreq) & (qp->sq.wqe_cnt - 1)] = wr->wr_id;
Roland Dreier225c7b12007-05-08 18:00:38 -07002637
2638 ctrl->srcrb_flags =
2639 (wr->send_flags & IB_SEND_SIGNALED ?
2640 cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE) : 0) |
2641 (wr->send_flags & IB_SEND_SOLICITED ?
2642 cpu_to_be32(MLX4_WQE_CTRL_SOLICITED) : 0) |
Eli Cohen8ff095e2008-04-16 21:01:10 -07002643 ((wr->send_flags & IB_SEND_IP_CSUM) ?
2644 cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM |
2645 MLX4_WQE_CTRL_TCP_UDP_CSUM) : 0) |
Roland Dreier225c7b12007-05-08 18:00:38 -07002646 qp->sq_signal_bits;
2647
Roland Dreier95d04f02008-07-23 08:12:26 -07002648 ctrl->imm = send_ieth(wr);
Roland Dreier225c7b12007-05-08 18:00:38 -07002649
2650 wqe += sizeof *ctrl;
2651 size = sizeof *ctrl / 16;
2652
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002653 switch (qp->mlx4_ib_qp_type) {
2654 case MLX4_IB_QPT_RC:
2655 case MLX4_IB_QPT_UC:
Roland Dreier225c7b12007-05-08 18:00:38 -07002656 switch (wr->opcode) {
2657 case IB_WR_ATOMIC_CMP_AND_SWP:
2658 case IB_WR_ATOMIC_FETCH_AND_ADD:
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002659 case IB_WR_MASKED_ATOMIC_FETCH_AND_ADD:
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002660 set_raddr_seg(wqe, wr->wr.atomic.remote_addr,
2661 wr->wr.atomic.rkey);
Roland Dreier225c7b12007-05-08 18:00:38 -07002662 wqe += sizeof (struct mlx4_wqe_raddr_seg);
2663
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002664 set_atomic_seg(wqe, wr);
Roland Dreier225c7b12007-05-08 18:00:38 -07002665 wqe += sizeof (struct mlx4_wqe_atomic_seg);
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002666
Roland Dreier225c7b12007-05-08 18:00:38 -07002667 size += (sizeof (struct mlx4_wqe_raddr_seg) +
2668 sizeof (struct mlx4_wqe_atomic_seg)) / 16;
2669
2670 break;
2671
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002672 case IB_WR_MASKED_ATOMIC_CMP_AND_SWP:
2673 set_raddr_seg(wqe, wr->wr.atomic.remote_addr,
2674 wr->wr.atomic.rkey);
2675 wqe += sizeof (struct mlx4_wqe_raddr_seg);
2676
2677 set_masked_atomic_seg(wqe, wr);
2678 wqe += sizeof (struct mlx4_wqe_masked_atomic_seg);
2679
2680 size += (sizeof (struct mlx4_wqe_raddr_seg) +
2681 sizeof (struct mlx4_wqe_masked_atomic_seg)) / 16;
2682
2683 break;
2684
Roland Dreier225c7b12007-05-08 18:00:38 -07002685 case IB_WR_RDMA_READ:
2686 case IB_WR_RDMA_WRITE:
2687 case IB_WR_RDMA_WRITE_WITH_IMM:
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002688 set_raddr_seg(wqe, wr->wr.rdma.remote_addr,
2689 wr->wr.rdma.rkey);
Roland Dreier225c7b12007-05-08 18:00:38 -07002690 wqe += sizeof (struct mlx4_wqe_raddr_seg);
2691 size += sizeof (struct mlx4_wqe_raddr_seg) / 16;
Roland Dreier225c7b12007-05-08 18:00:38 -07002692 break;
2693
Roland Dreier95d04f02008-07-23 08:12:26 -07002694 case IB_WR_LOCAL_INV:
Jack Morgenstein2ac6bf42009-06-05 10:36:24 -07002695 ctrl->srcrb_flags |=
2696 cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
Roland Dreier95d04f02008-07-23 08:12:26 -07002697 set_local_inv_seg(wqe, wr->ex.invalidate_rkey);
2698 wqe += sizeof (struct mlx4_wqe_local_inval_seg);
2699 size += sizeof (struct mlx4_wqe_local_inval_seg) / 16;
2700 break;
2701
2702 case IB_WR_FAST_REG_MR:
Jack Morgenstein2ac6bf42009-06-05 10:36:24 -07002703 ctrl->srcrb_flags |=
2704 cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
Roland Dreier95d04f02008-07-23 08:12:26 -07002705 set_fmr_seg(wqe, wr);
2706 wqe += sizeof (struct mlx4_wqe_fmr_seg);
2707 size += sizeof (struct mlx4_wqe_fmr_seg) / 16;
2708 break;
2709
Shani Michaeli6ff63e12013-02-06 16:19:15 +00002710 case IB_WR_BIND_MW:
2711 ctrl->srcrb_flags |=
2712 cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
2713 set_bind_seg(wqe, wr);
2714 wqe += sizeof(struct mlx4_wqe_bind_seg);
2715 size += sizeof(struct mlx4_wqe_bind_seg) / 16;
2716 break;
Roland Dreier225c7b12007-05-08 18:00:38 -07002717 default:
2718 /* No extra segments required for sends */
2719 break;
2720 }
2721 break;
2722
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002723 case MLX4_IB_QPT_TUN_SMI_OWNER:
2724 err = build_sriov_qp0_header(to_msqp(qp), wr, ctrl, &seglen);
2725 if (unlikely(err)) {
2726 *bad_wr = wr;
2727 goto out;
2728 }
2729 wqe += seglen;
2730 size += seglen / 16;
2731 break;
2732 case MLX4_IB_QPT_TUN_SMI:
2733 case MLX4_IB_QPT_TUN_GSI:
2734 /* this is a UD qp used in MAD responses to slaves. */
2735 set_datagram_seg(wqe, wr);
2736 /* set the forced-loopback bit in the data seg av */
2737 *(__be32 *) wqe |= cpu_to_be32(0x80000000);
2738 wqe += sizeof (struct mlx4_wqe_datagram_seg);
2739 size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
2740 break;
2741 case MLX4_IB_QPT_UD:
Or Gerlitz80a2dcd2011-10-10 10:54:42 +02002742 set_datagram_seg(wqe, wr);
Roland Dreier225c7b12007-05-08 18:00:38 -07002743 wqe += sizeof (struct mlx4_wqe_datagram_seg);
2744 size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
Eli Cohenb832be12008-04-16 21:09:27 -07002745
2746 if (wr->opcode == IB_WR_LSO) {
Eli Cohen417608c2009-11-12 11:19:44 -08002747 err = build_lso_seg(wqe, wr, qp, &seglen, &lso_hdr_sz, &blh);
Eli Cohenb832be12008-04-16 21:09:27 -07002748 if (unlikely(err)) {
2749 *bad_wr = wr;
2750 goto out;
2751 }
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002752 lso_wqe = (__be32 *) wqe;
Eli Cohenb832be12008-04-16 21:09:27 -07002753 wqe += seglen;
2754 size += seglen / 16;
2755 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002756 break;
2757
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002758 case MLX4_IB_QPT_PROXY_SMI_OWNER:
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002759 err = build_sriov_qp0_header(to_msqp(qp), wr, ctrl, &seglen);
2760 if (unlikely(err)) {
2761 *bad_wr = wr;
2762 goto out;
2763 }
2764 wqe += seglen;
2765 size += seglen / 16;
2766 /* to start tunnel header on a cache-line boundary */
2767 add_zero_len_inline(wqe);
2768 wqe += 16;
2769 size++;
2770 build_tunnel_header(wr, wqe, &seglen);
2771 wqe += seglen;
2772 size += seglen / 16;
2773 break;
2774 case MLX4_IB_QPT_PROXY_SMI:
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002775 case MLX4_IB_QPT_PROXY_GSI:
2776 /* If we are tunneling special qps, this is a UD qp.
2777 * In this case we first add a UD segment targeting
2778 * the tunnel qp, and then add a header with address
2779 * information */
Jack Morgenstein97982f52014-05-29 16:31:02 +03002780 set_tunnel_datagram_seg(to_mdev(ibqp->device), wqe, wr,
2781 qp->mlx4_ib_qp_type);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002782 wqe += sizeof (struct mlx4_wqe_datagram_seg);
2783 size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
2784 build_tunnel_header(wr, wqe, &seglen);
2785 wqe += seglen;
2786 size += seglen / 16;
2787 break;
2788
2789 case MLX4_IB_QPT_SMI:
2790 case MLX4_IB_QPT_GSI:
Roland Dreierf4380002008-04-16 21:09:28 -07002791 err = build_mlx_header(to_msqp(qp), wr, ctrl, &seglen);
2792 if (unlikely(err)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002793 *bad_wr = wr;
2794 goto out;
2795 }
Roland Dreierf4380002008-04-16 21:09:28 -07002796 wqe += seglen;
2797 size += seglen / 16;
Roland Dreier225c7b12007-05-08 18:00:38 -07002798 break;
2799
2800 default:
2801 break;
2802 }
2803
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002804 /*
2805 * Write data segments in reverse order, so as to
2806 * overwrite cacheline stamp last within each
2807 * cacheline. This avoids issues with WQE
2808 * prefetching.
2809 */
Roland Dreier225c7b12007-05-08 18:00:38 -07002810
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002811 dseg = wqe;
2812 dseg += wr->num_sge - 1;
2813 size += wr->num_sge * (sizeof (struct mlx4_wqe_data_seg) / 16);
Roland Dreier225c7b12007-05-08 18:00:38 -07002814
2815 /* Add one more inline data segment for ICRC for MLX sends */
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002816 if (unlikely(qp->mlx4_ib_qp_type == MLX4_IB_QPT_SMI ||
2817 qp->mlx4_ib_qp_type == MLX4_IB_QPT_GSI ||
2818 qp->mlx4_ib_qp_type &
2819 (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER))) {
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002820 set_mlx_icrc_seg(dseg + 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07002821 size += sizeof (struct mlx4_wqe_data_seg) / 16;
2822 }
2823
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002824 for (i = wr->num_sge - 1; i >= 0; --i, --dseg)
2825 set_data_seg(dseg, wr->sg_list + i);
2826
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002827 /*
2828 * Possibly overwrite stamping in cacheline with LSO
2829 * segment only after making sure all data segments
2830 * are written.
2831 */
2832 wmb();
2833 *lso_wqe = lso_hdr_sz;
2834
Roland Dreier225c7b12007-05-08 18:00:38 -07002835 ctrl->fence_size = (wr->send_flags & IB_SEND_FENCE ?
2836 MLX4_WQE_CTRL_FENCE : 0) | size;
2837
2838 /*
2839 * Make sure descriptor is fully written before
2840 * setting ownership bit (because HW can start
2841 * executing as soon as we do).
2842 */
2843 wmb();
2844
Roland Dreier59b0ed122007-05-19 08:51:58 -07002845 if (wr->opcode < 0 || wr->opcode >= ARRAY_SIZE(mlx4_ib_opcode)) {
Eli Cohen4ba6b8e2012-02-09 18:52:50 +02002846 *bad_wr = wr;
Roland Dreier225c7b12007-05-08 18:00:38 -07002847 err = -EINVAL;
2848 goto out;
2849 }
2850
2851 ctrl->owner_opcode = mlx4_ib_opcode[wr->opcode] |
Eli Cohen417608c2009-11-12 11:19:44 -08002852 (ind & qp->sq.wqe_cnt ? cpu_to_be32(1 << 31) : 0) | blh;
Roland Dreier0e6e7412007-06-18 08:13:48 -07002853
Jack Morgensteinea54b102008-01-28 10:40:59 +02002854 stamp = ind + qp->sq_spare_wqes;
2855 ind += DIV_ROUND_UP(size * 16, 1U << qp->sq.wqe_shift);
2856
Roland Dreier0e6e7412007-06-18 08:13:48 -07002857 /*
2858 * We can improve latency by not stamping the last
2859 * send queue WQE until after ringing the doorbell, so
2860 * only stamp here if there are still more WQEs to post.
Jack Morgensteinea54b102008-01-28 10:40:59 +02002861 *
2862 * Same optimization applies to padding with NOP wqe
2863 * in case of WQE shrinking (used to prevent wrap-around
2864 * in the middle of WR).
Roland Dreier0e6e7412007-06-18 08:13:48 -07002865 */
Jack Morgensteinea54b102008-01-28 10:40:59 +02002866 if (wr->next) {
2867 stamp_send_wqe(qp, stamp, size * 16);
2868 ind = pad_wraparound(qp, ind);
2869 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002870 }
2871
2872out:
2873 if (likely(nreq)) {
2874 qp->sq.head += nreq;
2875
2876 /*
2877 * Make sure that descriptors are written before
2878 * doorbell record.
2879 */
2880 wmb();
2881
2882 writel(qp->doorbell_qpn,
2883 to_mdev(ibqp->device)->uar_map + MLX4_SEND_DOORBELL);
2884
2885 /*
2886 * Make sure doorbells don't leak out of SQ spinlock
2887 * and reach the HCA out of order.
2888 */
2889 mmiowb();
Roland Dreier0e6e7412007-06-18 08:13:48 -07002890
Jack Morgensteinea54b102008-01-28 10:40:59 +02002891 stamp_send_wqe(qp, stamp, size * 16);
2892
2893 ind = pad_wraparound(qp, ind);
2894 qp->sq_next_wqe = ind;
Roland Dreier225c7b12007-05-08 18:00:38 -07002895 }
2896
Roland Dreier96db0e02007-10-30 10:53:54 -07002897 spin_unlock_irqrestore(&qp->sq.lock, flags);
Roland Dreier225c7b12007-05-08 18:00:38 -07002898
2899 return err;
2900}
2901
2902int mlx4_ib_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr,
2903 struct ib_recv_wr **bad_wr)
2904{
2905 struct mlx4_ib_qp *qp = to_mqp(ibqp);
2906 struct mlx4_wqe_data_seg *scat;
2907 unsigned long flags;
2908 int err = 0;
2909 int nreq;
2910 int ind;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002911 int max_gs;
Roland Dreier225c7b12007-05-08 18:00:38 -07002912 int i;
2913
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002914 max_gs = qp->rq.max_gs;
Roland Dreier225c7b12007-05-08 18:00:38 -07002915 spin_lock_irqsave(&qp->rq.lock, flags);
2916
Roland Dreier0e6e7412007-06-18 08:13:48 -07002917 ind = qp->rq.head & (qp->rq.wqe_cnt - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07002918
2919 for (nreq = 0; wr; ++nreq, wr = wr->next) {
Or Gerlitz2b946072010-01-06 12:51:30 -08002920 if (mlx4_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002921 err = -ENOMEM;
2922 *bad_wr = wr;
2923 goto out;
2924 }
2925
2926 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
2927 err = -EINVAL;
2928 *bad_wr = wr;
2929 goto out;
2930 }
2931
2932 scat = get_recv_wqe(qp, ind);
2933
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002934 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
2935 MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI)) {
2936 ib_dma_sync_single_for_device(ibqp->device,
2937 qp->sqp_proxy_rcv[ind].map,
2938 sizeof (struct mlx4_ib_proxy_sqp_hdr),
2939 DMA_FROM_DEVICE);
2940 scat->byte_count =
2941 cpu_to_be32(sizeof (struct mlx4_ib_proxy_sqp_hdr));
2942 /* use dma lkey from upper layer entry */
2943 scat->lkey = cpu_to_be32(wr->sg_list->lkey);
2944 scat->addr = cpu_to_be64(qp->sqp_proxy_rcv[ind].map);
2945 scat++;
2946 max_gs--;
2947 }
2948
Roland Dreier2242fa42007-10-09 19:59:05 -07002949 for (i = 0; i < wr->num_sge; ++i)
2950 __set_data_seg(scat + i, wr->sg_list + i);
Roland Dreier225c7b12007-05-08 18:00:38 -07002951
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002952 if (i < max_gs) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002953 scat[i].byte_count = 0;
2954 scat[i].lkey = cpu_to_be32(MLX4_INVALID_LKEY);
2955 scat[i].addr = 0;
2956 }
2957
2958 qp->rq.wrid[ind] = wr->wr_id;
2959
Roland Dreier0e6e7412007-06-18 08:13:48 -07002960 ind = (ind + 1) & (qp->rq.wqe_cnt - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07002961 }
2962
2963out:
2964 if (likely(nreq)) {
2965 qp->rq.head += nreq;
2966
2967 /*
2968 * Make sure that descriptors are written before
2969 * doorbell record.
2970 */
2971 wmb();
2972
2973 *qp->db.db = cpu_to_be32(qp->rq.head & 0xffff);
2974 }
2975
2976 spin_unlock_irqrestore(&qp->rq.lock, flags);
2977
2978 return err;
2979}
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002980
2981static inline enum ib_qp_state to_ib_qp_state(enum mlx4_qp_state mlx4_state)
2982{
2983 switch (mlx4_state) {
2984 case MLX4_QP_STATE_RST: return IB_QPS_RESET;
2985 case MLX4_QP_STATE_INIT: return IB_QPS_INIT;
2986 case MLX4_QP_STATE_RTR: return IB_QPS_RTR;
2987 case MLX4_QP_STATE_RTS: return IB_QPS_RTS;
2988 case MLX4_QP_STATE_SQ_DRAINING:
2989 case MLX4_QP_STATE_SQD: return IB_QPS_SQD;
2990 case MLX4_QP_STATE_SQER: return IB_QPS_SQE;
2991 case MLX4_QP_STATE_ERR: return IB_QPS_ERR;
2992 default: return -1;
2993 }
2994}
2995
2996static inline enum ib_mig_state to_ib_mig_state(int mlx4_mig_state)
2997{
2998 switch (mlx4_mig_state) {
2999 case MLX4_QP_PM_ARMED: return IB_MIG_ARMED;
3000 case MLX4_QP_PM_REARM: return IB_MIG_REARM;
3001 case MLX4_QP_PM_MIGRATED: return IB_MIG_MIGRATED;
3002 default: return -1;
3003 }
3004}
3005
3006static int to_ib_qp_access_flags(int mlx4_flags)
3007{
3008 int ib_flags = 0;
3009
3010 if (mlx4_flags & MLX4_QP_BIT_RRE)
3011 ib_flags |= IB_ACCESS_REMOTE_READ;
3012 if (mlx4_flags & MLX4_QP_BIT_RWE)
3013 ib_flags |= IB_ACCESS_REMOTE_WRITE;
3014 if (mlx4_flags & MLX4_QP_BIT_RAE)
3015 ib_flags |= IB_ACCESS_REMOTE_ATOMIC;
3016
3017 return ib_flags;
3018}
3019
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03003020static void to_ib_ah_attr(struct mlx4_ib_dev *ibdev, struct ib_ah_attr *ib_ah_attr,
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003021 struct mlx4_qp_path *path)
3022{
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03003023 struct mlx4_dev *dev = ibdev->dev;
3024 int is_eth;
3025
Dotan Barak8fcea952007-07-15 15:00:09 +03003026 memset(ib_ah_attr, 0, sizeof *ib_ah_attr);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003027 ib_ah_attr->port_num = path->sched_queue & 0x40 ? 2 : 1;
3028
3029 if (ib_ah_attr->port_num == 0 || ib_ah_attr->port_num > dev->caps.num_ports)
3030 return;
3031
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03003032 is_eth = rdma_port_get_link_layer(&ibdev->ib_dev, ib_ah_attr->port_num) ==
3033 IB_LINK_LAYER_ETHERNET;
3034 if (is_eth)
3035 ib_ah_attr->sl = ((path->sched_queue >> 3) & 0x7) |
3036 ((path->sched_queue & 4) << 1);
3037 else
3038 ib_ah_attr->sl = (path->sched_queue >> 2) & 0xf;
3039
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003040 ib_ah_attr->dlid = be16_to_cpu(path->rlid);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003041 ib_ah_attr->src_path_bits = path->grh_mylmc & 0x7f;
3042 ib_ah_attr->static_rate = path->static_rate ? path->static_rate - 5 : 0;
3043 ib_ah_attr->ah_flags = (path->grh_mylmc & (1 << 7)) ? IB_AH_GRH : 0;
3044 if (ib_ah_attr->ah_flags) {
3045 ib_ah_attr->grh.sgid_index = path->mgid_index;
3046 ib_ah_attr->grh.hop_limit = path->hop_limit;
3047 ib_ah_attr->grh.traffic_class =
3048 (be32_to_cpu(path->tclass_flowlabel) >> 20) & 0xff;
3049 ib_ah_attr->grh.flow_label =
Jack Morgenstein586bb582007-07-17 18:37:38 -07003050 be32_to_cpu(path->tclass_flowlabel) & 0xfffff;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003051 memcpy(ib_ah_attr->grh.dgid.raw,
3052 path->rgid, sizeof ib_ah_attr->grh.dgid.raw);
3053 }
3054}
3055
3056int mlx4_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask,
3057 struct ib_qp_init_attr *qp_init_attr)
3058{
3059 struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
3060 struct mlx4_ib_qp *qp = to_mqp(ibqp);
3061 struct mlx4_qp_context context;
3062 int mlx4_state;
Dotan Barak0df670302008-04-16 21:09:34 -07003063 int err = 0;
3064
3065 mutex_lock(&qp->mutex);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003066
3067 if (qp->state == IB_QPS_RESET) {
3068 qp_attr->qp_state = IB_QPS_RESET;
3069 goto done;
3070 }
3071
3072 err = mlx4_qp_query(dev->dev, &qp->mqp, &context);
Dotan Barak0df670302008-04-16 21:09:34 -07003073 if (err) {
3074 err = -EINVAL;
3075 goto out;
3076 }
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003077
3078 mlx4_state = be32_to_cpu(context.flags) >> 28;
3079
Dotan Barak0df670302008-04-16 21:09:34 -07003080 qp->state = to_ib_qp_state(mlx4_state);
3081 qp_attr->qp_state = qp->state;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003082 qp_attr->path_mtu = context.mtu_msgmax >> 5;
3083 qp_attr->path_mig_state =
3084 to_ib_mig_state((be32_to_cpu(context.flags) >> 11) & 0x3);
3085 qp_attr->qkey = be32_to_cpu(context.qkey);
3086 qp_attr->rq_psn = be32_to_cpu(context.rnr_nextrecvpsn) & 0xffffff;
3087 qp_attr->sq_psn = be32_to_cpu(context.next_send_psn) & 0xffffff;
3088 qp_attr->dest_qp_num = be32_to_cpu(context.remote_qpn) & 0xffffff;
3089 qp_attr->qp_access_flags =
3090 to_ib_qp_access_flags(be32_to_cpu(context.params2));
3091
3092 if (qp->ibqp.qp_type == IB_QPT_RC || qp->ibqp.qp_type == IB_QPT_UC) {
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03003093 to_ib_ah_attr(dev, &qp_attr->ah_attr, &context.pri_path);
3094 to_ib_ah_attr(dev, &qp_attr->alt_ah_attr, &context.alt_path);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003095 qp_attr->alt_pkey_index = context.alt_path.pkey_index & 0x7f;
3096 qp_attr->alt_port_num = qp_attr->alt_ah_attr.port_num;
3097 }
3098
3099 qp_attr->pkey_index = context.pri_path.pkey_index & 0x7f;
Jack Morgenstein1c27cb72007-07-17 18:37:38 -07003100 if (qp_attr->qp_state == IB_QPS_INIT)
3101 qp_attr->port_num = qp->port;
3102 else
3103 qp_attr->port_num = context.pri_path.sched_queue & 0x40 ? 2 : 1;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003104
3105 /* qp_attr->en_sqd_async_notify is only applicable in modify qp */
3106 qp_attr->sq_draining = mlx4_state == MLX4_QP_STATE_SQ_DRAINING;
3107
3108 qp_attr->max_rd_atomic = 1 << ((be32_to_cpu(context.params1) >> 21) & 0x7);
3109
3110 qp_attr->max_dest_rd_atomic =
3111 1 << ((be32_to_cpu(context.params2) >> 21) & 0x7);
3112 qp_attr->min_rnr_timer =
3113 (be32_to_cpu(context.rnr_nextrecvpsn) >> 24) & 0x1f;
3114 qp_attr->timeout = context.pri_path.ackto >> 3;
3115 qp_attr->retry_cnt = (be32_to_cpu(context.params1) >> 16) & 0x7;
3116 qp_attr->rnr_retry = (be32_to_cpu(context.params1) >> 13) & 0x7;
3117 qp_attr->alt_timeout = context.alt_path.ackto >> 3;
3118
3119done:
3120 qp_attr->cur_qp_state = qp_attr->qp_state;
Roland Dreier7f5eb9b2007-07-17 20:59:02 -07003121 qp_attr->cap.max_recv_wr = qp->rq.wqe_cnt;
3122 qp_attr->cap.max_recv_sge = qp->rq.max_gs;
3123
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003124 if (!ibqp->uobject) {
Roland Dreier7f5eb9b2007-07-17 20:59:02 -07003125 qp_attr->cap.max_send_wr = qp->sq.wqe_cnt;
3126 qp_attr->cap.max_send_sge = qp->sq.max_gs;
3127 } else {
3128 qp_attr->cap.max_send_wr = 0;
3129 qp_attr->cap.max_send_sge = 0;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003130 }
3131
Roland Dreier7f5eb9b2007-07-17 20:59:02 -07003132 /*
3133 * We don't support inline sends for kernel QPs (yet), and we
3134 * don't know what userspace's value should be.
3135 */
3136 qp_attr->cap.max_inline_data = 0;
3137
3138 qp_init_attr->cap = qp_attr->cap;
3139
Ron Livne521e5752008-07-14 23:48:48 -07003140 qp_init_attr->create_flags = 0;
3141 if (qp->flags & MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK)
3142 qp_init_attr->create_flags |= IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK;
3143
3144 if (qp->flags & MLX4_IB_QP_LSO)
3145 qp_init_attr->create_flags |= IB_QP_CREATE_IPOIB_UD_LSO;
3146
Matan Barakc1c98502013-11-07 15:25:17 +02003147 if (qp->flags & MLX4_IB_QP_NETIF)
3148 qp_init_attr->create_flags |= IB_QP_CREATE_NETIF_QP;
3149
Dotan Barak46db5672012-08-23 14:09:03 +00003150 qp_init_attr->sq_sig_type =
3151 qp->sq_signal_bits == cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE) ?
3152 IB_SIGNAL_ALL_WR : IB_SIGNAL_REQ_WR;
3153
Dotan Barak0df670302008-04-16 21:09:34 -07003154out:
3155 mutex_unlock(&qp->mutex);
3156 return err;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003157}
3158