blob: 11332f07402319fc066bca487e696e2d6046ed07 [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
Roland Dreier225c7b12007-05-08 18:00:38 -0700611static int create_qp_common(struct mlx4_ib_dev *dev, struct ib_pd *pd,
612 struct ib_qp_init_attr *init_attr,
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000613 struct ib_udata *udata, int sqpn, struct mlx4_ib_qp **caller_qp)
Roland Dreier225c7b12007-05-08 18:00:38 -0700614{
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700615 int qpn;
Roland Dreier225c7b12007-05-08 18:00:38 -0700616 int err;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000617 struct mlx4_ib_sqp *sqp;
618 struct mlx4_ib_qp *qp;
619 enum mlx4_ib_qp_type qp_type = (enum mlx4_ib_qp_type) init_attr->qp_type;
620
621 /* When tunneling special qps, we use a plain UD qp */
622 if (sqpn) {
623 if (mlx4_is_mfunc(dev->dev) &&
624 (!mlx4_is_master(dev->dev) ||
625 !(init_attr->create_flags & MLX4_IB_SRIOV_SQP))) {
626 if (init_attr->qp_type == IB_QPT_GSI)
627 qp_type = MLX4_IB_QPT_PROXY_GSI;
628 else if (mlx4_is_master(dev->dev))
629 qp_type = MLX4_IB_QPT_PROXY_SMI_OWNER;
630 else
631 qp_type = MLX4_IB_QPT_PROXY_SMI;
632 }
633 qpn = sqpn;
634 /* add extra sg entry for tunneling */
635 init_attr->cap.max_recv_sge++;
636 } else if (init_attr->create_flags & MLX4_IB_SRIOV_TUNNEL_QP) {
637 struct mlx4_ib_qp_tunnel_init_attr *tnl_init =
638 container_of(init_attr,
639 struct mlx4_ib_qp_tunnel_init_attr, init_attr);
640 if ((tnl_init->proxy_qp_type != IB_QPT_SMI &&
641 tnl_init->proxy_qp_type != IB_QPT_GSI) ||
642 !mlx4_is_master(dev->dev))
643 return -EINVAL;
644 if (tnl_init->proxy_qp_type == IB_QPT_GSI)
645 qp_type = MLX4_IB_QPT_TUN_GSI;
646 else if (tnl_init->slave == mlx4_master_func_num(dev->dev))
647 qp_type = MLX4_IB_QPT_TUN_SMI_OWNER;
648 else
649 qp_type = MLX4_IB_QPT_TUN_SMI;
Jack Morgenstein47605df2012-08-03 08:40:57 +0000650 /* we are definitely in the PPF here, since we are creating
651 * tunnel QPs. base_tunnel_sqpn is therefore valid. */
652 qpn = dev->dev->phys_caps.base_tunnel_sqpn + 8 * tnl_init->slave
653 + tnl_init->proxy_qp_type * 2 + tnl_init->port - 1;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000654 sqpn = qpn;
655 }
656
657 if (!*caller_qp) {
658 if (qp_type == MLX4_IB_QPT_SMI || qp_type == MLX4_IB_QPT_GSI ||
659 (qp_type & (MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_SMI_OWNER |
660 MLX4_IB_QPT_PROXY_GSI | MLX4_IB_QPT_TUN_SMI_OWNER))) {
661 sqp = kzalloc(sizeof (struct mlx4_ib_sqp), GFP_KERNEL);
662 if (!sqp)
663 return -ENOMEM;
664 qp = &sqp->qp;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200665 qp->pri.vid = 0xFFFF;
666 qp->alt.vid = 0xFFFF;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000667 } else {
668 qp = kzalloc(sizeof (struct mlx4_ib_qp), GFP_KERNEL);
669 if (!qp)
670 return -ENOMEM;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200671 qp->pri.vid = 0xFFFF;
672 qp->alt.vid = 0xFFFF;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000673 }
674 } else
675 qp = *caller_qp;
676
677 qp->mlx4_ib_qp_type = qp_type;
Roland Dreier225c7b12007-05-08 18:00:38 -0700678
679 mutex_init(&qp->mutex);
680 spin_lock_init(&qp->sq.lock);
681 spin_lock_init(&qp->rq.lock);
Eli Cohenfa417f72010-10-24 21:08:52 -0700682 INIT_LIST_HEAD(&qp->gid_list);
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +0000683 INIT_LIST_HEAD(&qp->steering_rules);
Roland Dreier225c7b12007-05-08 18:00:38 -0700684
685 qp->state = IB_QPS_RESET;
Jack Morgensteinea54b102008-01-28 10:40:59 +0200686 if (init_attr->sq_sig_type == IB_SIGNAL_ALL_WR)
687 qp->sq_signal_bits = cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
Roland Dreier225c7b12007-05-08 18:00:38 -0700688
Sean Hefty0a1405d2011-06-02 11:32:15 -0700689 err = set_rq_size(dev, &init_attr->cap, !!pd->uobject, qp_has_rq(init_attr), qp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700690 if (err)
691 goto err;
692
693 if (pd->uobject) {
694 struct mlx4_ib_create_qp ucmd;
695
696 if (ib_copy_from_udata(&ucmd, udata, sizeof ucmd)) {
697 err = -EFAULT;
698 goto err;
699 }
700
Roland Dreier0e6e7412007-06-18 08:13:48 -0700701 qp->sq_no_prefetch = ucmd.sq_no_prefetch;
702
Jack Morgenstein83904132007-10-18 17:36:43 +0200703 err = set_user_sq_size(dev, qp, &ucmd);
Eli Cohen24463042007-05-17 10:32:41 +0300704 if (err)
705 goto err;
706
Roland Dreier225c7b12007-05-08 18:00:38 -0700707 qp->umem = ib_umem_get(pd->uobject->context, ucmd.buf_addr,
Arthur Kepnercb9fbc52008-04-29 01:00:34 -0700708 qp->buf_size, 0, 0);
Roland Dreier225c7b12007-05-08 18:00:38 -0700709 if (IS_ERR(qp->umem)) {
710 err = PTR_ERR(qp->umem);
711 goto err;
712 }
713
714 err = mlx4_mtt_init(dev->dev, ib_umem_page_count(qp->umem),
715 ilog2(qp->umem->page_size), &qp->mtt);
716 if (err)
717 goto err_buf;
718
719 err = mlx4_ib_umem_write_mtt(dev, &qp->mtt, qp->umem);
720 if (err)
721 goto err_mtt;
722
Sean Hefty0a1405d2011-06-02 11:32:15 -0700723 if (qp_has_rq(init_attr)) {
Roland Dreier02d89b82007-05-23 15:16:08 -0700724 err = mlx4_ib_db_map_user(to_mucontext(pd->uobject->context),
725 ucmd.db_addr, &qp->db);
726 if (err)
727 goto err_mtt;
728 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700729 } else {
Roland Dreier0e6e7412007-06-18 08:13:48 -0700730 qp->sq_no_prefetch = 0;
731
Ron Livne521e5752008-07-14 23:48:48 -0700732 if (init_attr->create_flags & IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK)
733 qp->flags |= MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK;
734
Eli Cohenb832be12008-04-16 21:09:27 -0700735 if (init_attr->create_flags & IB_QP_CREATE_IPOIB_UD_LSO)
736 qp->flags |= MLX4_IB_QP_LSO;
737
Matan Barakc1c98502013-11-07 15:25:17 +0200738 if (init_attr->create_flags & IB_QP_CREATE_NETIF_QP) {
739 if (dev->steering_support ==
740 MLX4_STEERING_MODE_DEVICE_MANAGED)
741 qp->flags |= MLX4_IB_QP_NETIF;
742 else
743 goto err;
744 }
745
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000746 err = set_kernel_sq_size(dev, &init_attr->cap, qp_type, qp);
Eli Cohen24463042007-05-17 10:32:41 +0300747 if (err)
748 goto err;
749
Sean Hefty0a1405d2011-06-02 11:32:15 -0700750 if (qp_has_rq(init_attr)) {
Yevgeny Petrilin62968832008-04-23 11:55:45 -0700751 err = mlx4_db_alloc(dev->dev, &qp->db, 0);
Roland Dreier02d89b82007-05-23 15:16:08 -0700752 if (err)
753 goto err;
Roland Dreier225c7b12007-05-08 18:00:38 -0700754
Roland Dreier02d89b82007-05-23 15:16:08 -0700755 *qp->db.db = 0;
756 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700757
758 if (mlx4_buf_alloc(dev->dev, qp->buf_size, PAGE_SIZE * 2, &qp->buf)) {
759 err = -ENOMEM;
760 goto err_db;
761 }
762
763 err = mlx4_mtt_init(dev->dev, qp->buf.npages, qp->buf.page_shift,
764 &qp->mtt);
765 if (err)
766 goto err_buf;
767
768 err = mlx4_buf_write_mtt(dev->dev, &qp->mtt, &qp->buf);
769 if (err)
770 goto err_mtt;
771
Roland Dreier0e6e7412007-06-18 08:13:48 -0700772 qp->sq.wrid = kmalloc(qp->sq.wqe_cnt * sizeof (u64), GFP_KERNEL);
773 qp->rq.wrid = kmalloc(qp->rq.wqe_cnt * sizeof (u64), GFP_KERNEL);
Roland Dreier225c7b12007-05-08 18:00:38 -0700774
775 if (!qp->sq.wrid || !qp->rq.wrid) {
776 err = -ENOMEM;
777 goto err_wrid;
778 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700779 }
780
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700781 if (sqpn) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000782 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
783 MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI)) {
784 if (alloc_proxy_bufs(pd->device, qp)) {
785 err = -ENOMEM;
786 goto err_wrid;
787 }
788 }
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700789 } else {
Or Gerlitz3987a2d2012-01-17 13:39:07 +0200790 /* Raw packet QPNs must be aligned to 8 bits. If not, the WQE
791 * BlueFlame setup flow wrongly causes VLAN insertion. */
792 if (init_attr->qp_type == IB_QPT_RAW_PACKET)
793 err = mlx4_qp_reserve_range(dev->dev, 1, 1 << 8, &qpn);
794 else
Matan Barakc1c98502013-11-07 15:25:17 +0200795 if (qp->flags & MLX4_IB_QP_NETIF)
796 err = mlx4_ib_steer_qp_alloc(dev, 1, &qpn);
797 else
798 err = mlx4_qp_reserve_range(dev->dev, 1, 1,
799 &qpn);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700800 if (err)
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000801 goto err_proxy;
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700802 }
803
804 err = mlx4_qp_alloc(dev->dev, qpn, &qp->mqp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700805 if (err)
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700806 goto err_qpn;
Roland Dreier225c7b12007-05-08 18:00:38 -0700807
Sean Hefty0a1405d2011-06-02 11:32:15 -0700808 if (init_attr->qp_type == IB_QPT_XRC_TGT)
809 qp->mqp.qpn |= (1 << 23);
810
Roland Dreier225c7b12007-05-08 18:00:38 -0700811 /*
812 * Hardware wants QPN written in big-endian order (after
813 * shifting) for send doorbell. Precompute this value to save
814 * a little bit when posting sends.
815 */
816 qp->doorbell_qpn = swab32(qp->mqp.qpn << 8);
817
Roland Dreier225c7b12007-05-08 18:00:38 -0700818 qp->mqp.event = mlx4_ib_qp_event;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000819 if (!*caller_qp)
820 *caller_qp = qp;
Roland Dreier225c7b12007-05-08 18:00:38 -0700821 return 0;
822
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700823err_qpn:
Matan Barakc1c98502013-11-07 15:25:17 +0200824 if (!sqpn) {
825 if (qp->flags & MLX4_IB_QP_NETIF)
826 mlx4_ib_steer_qp_free(dev, qpn, 1);
827 else
828 mlx4_qp_release_range(dev->dev, qpn, 1);
829 }
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000830err_proxy:
831 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI)
832 free_proxy_bufs(pd->device, qp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700833err_wrid:
Roland Dreier23f1b382007-07-20 21:19:43 -0700834 if (pd->uobject) {
Sean Hefty0a1405d2011-06-02 11:32:15 -0700835 if (qp_has_rq(init_attr))
836 mlx4_ib_db_unmap_user(to_mucontext(pd->uobject->context), &qp->db);
Roland Dreier23f1b382007-07-20 21:19:43 -0700837 } else {
Roland Dreier225c7b12007-05-08 18:00:38 -0700838 kfree(qp->sq.wrid);
839 kfree(qp->rq.wrid);
840 }
841
842err_mtt:
843 mlx4_mtt_cleanup(dev->dev, &qp->mtt);
844
845err_buf:
846 if (pd->uobject)
847 ib_umem_release(qp->umem);
848 else
849 mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
850
851err_db:
Sean Hefty0a1405d2011-06-02 11:32:15 -0700852 if (!pd->uobject && qp_has_rq(init_attr))
Yevgeny Petrilin62968832008-04-23 11:55:45 -0700853 mlx4_db_free(dev->dev, &qp->db);
Roland Dreier225c7b12007-05-08 18:00:38 -0700854
855err:
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +0000856 if (!*caller_qp)
857 kfree(qp);
Roland Dreier225c7b12007-05-08 18:00:38 -0700858 return err;
859}
860
861static enum mlx4_qp_state to_mlx4_state(enum ib_qp_state state)
862{
863 switch (state) {
864 case IB_QPS_RESET: return MLX4_QP_STATE_RST;
865 case IB_QPS_INIT: return MLX4_QP_STATE_INIT;
866 case IB_QPS_RTR: return MLX4_QP_STATE_RTR;
867 case IB_QPS_RTS: return MLX4_QP_STATE_RTS;
868 case IB_QPS_SQD: return MLX4_QP_STATE_SQD;
869 case IB_QPS_SQE: return MLX4_QP_STATE_SQER;
870 case IB_QPS_ERR: return MLX4_QP_STATE_ERR;
871 default: return -1;
872 }
873}
874
875static void mlx4_ib_lock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
Roland Dreier338a8fa2009-09-05 20:24:49 -0700876 __acquires(&send_cq->lock) __acquires(&recv_cq->lock)
Roland Dreier225c7b12007-05-08 18:00:38 -0700877{
Roland Dreier338a8fa2009-09-05 20:24:49 -0700878 if (send_cq == recv_cq) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700879 spin_lock_irq(&send_cq->lock);
Roland Dreier338a8fa2009-09-05 20:24:49 -0700880 __acquire(&recv_cq->lock);
881 } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700882 spin_lock_irq(&send_cq->lock);
883 spin_lock_nested(&recv_cq->lock, SINGLE_DEPTH_NESTING);
884 } else {
885 spin_lock_irq(&recv_cq->lock);
886 spin_lock_nested(&send_cq->lock, SINGLE_DEPTH_NESTING);
887 }
888}
889
890static void mlx4_ib_unlock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
Roland Dreier338a8fa2009-09-05 20:24:49 -0700891 __releases(&send_cq->lock) __releases(&recv_cq->lock)
Roland Dreier225c7b12007-05-08 18:00:38 -0700892{
Roland Dreier338a8fa2009-09-05 20:24:49 -0700893 if (send_cq == recv_cq) {
894 __release(&recv_cq->lock);
Roland Dreier225c7b12007-05-08 18:00:38 -0700895 spin_unlock_irq(&send_cq->lock);
Roland Dreier338a8fa2009-09-05 20:24:49 -0700896 } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700897 spin_unlock(&recv_cq->lock);
898 spin_unlock_irq(&send_cq->lock);
899 } else {
900 spin_unlock(&send_cq->lock);
901 spin_unlock_irq(&recv_cq->lock);
902 }
903}
904
Eli Cohenfa417f72010-10-24 21:08:52 -0700905static void del_gid_entries(struct mlx4_ib_qp *qp)
906{
907 struct mlx4_ib_gid_entry *ge, *tmp;
908
909 list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
910 list_del(&ge->list);
911 kfree(ge);
912 }
913}
914
Sean Hefty0a1405d2011-06-02 11:32:15 -0700915static struct mlx4_ib_pd *get_pd(struct mlx4_ib_qp *qp)
916{
917 if (qp->ibqp.qp_type == IB_QPT_XRC_TGT)
918 return to_mpd(to_mxrcd(qp->ibqp.xrcd)->pd);
919 else
920 return to_mpd(qp->ibqp.pd);
921}
922
923static void get_cqs(struct mlx4_ib_qp *qp,
924 struct mlx4_ib_cq **send_cq, struct mlx4_ib_cq **recv_cq)
925{
926 switch (qp->ibqp.qp_type) {
927 case IB_QPT_XRC_TGT:
928 *send_cq = to_mcq(to_mxrcd(qp->ibqp.xrcd)->cq);
929 *recv_cq = *send_cq;
930 break;
931 case IB_QPT_XRC_INI:
932 *send_cq = to_mcq(qp->ibqp.send_cq);
933 *recv_cq = *send_cq;
934 break;
935 default:
936 *send_cq = to_mcq(qp->ibqp.send_cq);
937 *recv_cq = to_mcq(qp->ibqp.recv_cq);
938 break;
939 }
940}
941
Roland Dreier225c7b12007-05-08 18:00:38 -0700942static void destroy_qp_common(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp,
943 int is_user)
944{
945 struct mlx4_ib_cq *send_cq, *recv_cq;
946
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200947 if (qp->state != IB_QPS_RESET) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700948 if (mlx4_qp_modify(dev->dev, NULL, to_mlx4_state(qp->state),
949 MLX4_QP_STATE_RST, NULL, 0, 0, &qp->mqp))
Shlomo Pongratz987c8f82012-04-29 17:04:26 +0300950 pr_warn("modify QP %06x to RESET failed.\n",
Roland Dreier225c7b12007-05-08 18:00:38 -0700951 qp->mqp.qpn);
Jack Morgenstein2f5bb472014-03-12 12:00:40 +0200952 if (qp->pri.smac) {
953 mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
954 qp->pri.smac = 0;
955 }
956 if (qp->alt.smac) {
957 mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
958 qp->alt.smac = 0;
959 }
960 if (qp->pri.vid < 0x1000) {
961 mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port, qp->pri.vid);
962 qp->pri.vid = 0xFFFF;
963 qp->pri.candidate_vid = 0xFFFF;
964 qp->pri.update_vid = 0;
965 }
966 if (qp->alt.vid < 0x1000) {
967 mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port, qp->alt.vid);
968 qp->alt.vid = 0xFFFF;
969 qp->alt.candidate_vid = 0xFFFF;
970 qp->alt.update_vid = 0;
971 }
972 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700973
Sean Hefty0a1405d2011-06-02 11:32:15 -0700974 get_cqs(qp, &send_cq, &recv_cq);
Roland Dreier225c7b12007-05-08 18:00:38 -0700975
976 mlx4_ib_lock_cqs(send_cq, recv_cq);
977
978 if (!is_user) {
979 __mlx4_ib_cq_clean(recv_cq, qp->mqp.qpn,
980 qp->ibqp.srq ? to_msrq(qp->ibqp.srq): NULL);
981 if (send_cq != recv_cq)
982 __mlx4_ib_cq_clean(send_cq, qp->mqp.qpn, NULL);
983 }
984
985 mlx4_qp_remove(dev->dev, &qp->mqp);
986
987 mlx4_ib_unlock_cqs(send_cq, recv_cq);
988
989 mlx4_qp_free(dev->dev, &qp->mqp);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700990
Matan Barakc1c98502013-11-07 15:25:17 +0200991 if (!is_sqp(dev, qp) && !is_tunnel_qp(dev, qp)) {
992 if (qp->flags & MLX4_IB_QP_NETIF)
993 mlx4_ib_steer_qp_free(dev, qp->mqp.qpn, 1);
994 else
995 mlx4_qp_release_range(dev->dev, qp->mqp.qpn, 1);
996 }
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700997
Roland Dreier225c7b12007-05-08 18:00:38 -0700998 mlx4_mtt_cleanup(dev->dev, &qp->mtt);
999
1000 if (is_user) {
Sean Hefty0a1405d2011-06-02 11:32:15 -07001001 if (qp->rq.wqe_cnt)
Roland Dreier02d89b82007-05-23 15:16:08 -07001002 mlx4_ib_db_unmap_user(to_mucontext(qp->ibqp.uobject->context),
1003 &qp->db);
Roland Dreier225c7b12007-05-08 18:00:38 -07001004 ib_umem_release(qp->umem);
1005 } else {
1006 kfree(qp->sq.wrid);
1007 kfree(qp->rq.wrid);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001008 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
1009 MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI))
1010 free_proxy_bufs(&dev->ib_dev, qp);
Roland Dreier225c7b12007-05-08 18:00:38 -07001011 mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001012 if (qp->rq.wqe_cnt)
Yevgeny Petrilin62968832008-04-23 11:55:45 -07001013 mlx4_db_free(dev->dev, &qp->db);
Roland Dreier225c7b12007-05-08 18:00:38 -07001014 }
Eli Cohenfa417f72010-10-24 21:08:52 -07001015
1016 del_gid_entries(qp);
Roland Dreier225c7b12007-05-08 18:00:38 -07001017}
1018
Jack Morgenstein47605df2012-08-03 08:40:57 +00001019static u32 get_sqp_num(struct mlx4_ib_dev *dev, struct ib_qp_init_attr *attr)
1020{
1021 /* Native or PPF */
1022 if (!mlx4_is_mfunc(dev->dev) ||
1023 (mlx4_is_master(dev->dev) &&
1024 attr->create_flags & MLX4_IB_SRIOV_SQP)) {
1025 return dev->dev->phys_caps.base_sqpn +
1026 (attr->qp_type == IB_QPT_SMI ? 0 : 2) +
1027 attr->port_num - 1;
1028 }
1029 /* PF or VF -- creating proxies */
1030 if (attr->qp_type == IB_QPT_SMI)
1031 return dev->dev->caps.qp0_proxy[attr->port_num - 1];
1032 else
1033 return dev->dev->caps.qp1_proxy[attr->port_num - 1];
1034}
1035
Roland Dreier225c7b12007-05-08 18:00:38 -07001036struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
1037 struct ib_qp_init_attr *init_attr,
1038 struct ib_udata *udata)
1039{
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001040 struct mlx4_ib_qp *qp = NULL;
Roland Dreier225c7b12007-05-08 18:00:38 -07001041 int err;
Sean Hefty0a1405d2011-06-02 11:32:15 -07001042 u16 xrcdn = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001043
Ron Livne521e5752008-07-14 23:48:48 -07001044 /*
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001045 * We only support LSO, vendor flag1, and multicast loopback blocking,
1046 * and only for kernel UD QPs.
Ron Livne521e5752008-07-14 23:48:48 -07001047 */
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001048 if (init_attr->create_flags & ~(MLX4_IB_QP_LSO |
1049 MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK |
Matan Barakc1c98502013-11-07 15:25:17 +02001050 MLX4_IB_SRIOV_TUNNEL_QP |
1051 MLX4_IB_SRIOV_SQP |
1052 MLX4_IB_QP_NETIF))
Eli Cohenb832be12008-04-16 21:09:27 -07001053 return ERR_PTR(-EINVAL);
Ron Livne521e5752008-07-14 23:48:48 -07001054
Matan Barakc1c98502013-11-07 15:25:17 +02001055 if (init_attr->create_flags & IB_QP_CREATE_NETIF_QP) {
1056 if (init_attr->qp_type != IB_QPT_UD)
1057 return ERR_PTR(-EINVAL);
1058 }
1059
Ron Livne521e5752008-07-14 23:48:48 -07001060 if (init_attr->create_flags &&
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001061 (udata ||
1062 ((init_attr->create_flags & ~MLX4_IB_SRIOV_SQP) &&
1063 init_attr->qp_type != IB_QPT_UD) ||
1064 ((init_attr->create_flags & MLX4_IB_SRIOV_SQP) &&
1065 init_attr->qp_type > IB_QPT_GSI)))
Eli Cohenb846f252008-04-16 21:09:27 -07001066 return ERR_PTR(-EINVAL);
1067
Roland Dreier225c7b12007-05-08 18:00:38 -07001068 switch (init_attr->qp_type) {
Sean Hefty0a1405d2011-06-02 11:32:15 -07001069 case IB_QPT_XRC_TGT:
1070 pd = to_mxrcd(init_attr->xrcd)->pd;
1071 xrcdn = to_mxrcd(init_attr->xrcd)->xrcdn;
1072 init_attr->send_cq = to_mxrcd(init_attr->xrcd)->cq;
1073 /* fall through */
1074 case IB_QPT_XRC_INI:
1075 if (!(to_mdev(pd->device)->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC))
1076 return ERR_PTR(-ENOSYS);
1077 init_attr->recv_cq = init_attr->send_cq;
1078 /* fall through */
Roland Dreier225c7b12007-05-08 18:00:38 -07001079 case IB_QPT_RC:
1080 case IB_QPT_UC:
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001081 case IB_QPT_RAW_PACKET:
Eli Cohenf507d282008-07-14 23:48:53 -07001082 qp = kzalloc(sizeof *qp, GFP_KERNEL);
Roland Dreier225c7b12007-05-08 18:00:38 -07001083 if (!qp)
1084 return ERR_PTR(-ENOMEM);
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001085 qp->pri.vid = 0xFFFF;
1086 qp->alt.vid = 0xFFFF;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001087 /* fall through */
1088 case IB_QPT_UD:
1089 {
1090 err = create_qp_common(to_mdev(pd->device), pd, init_attr,
1091 udata, 0, &qp);
1092 if (err)
Roland Dreier225c7b12007-05-08 18:00:38 -07001093 return ERR_PTR(err);
Roland Dreier225c7b12007-05-08 18:00:38 -07001094
1095 qp->ibqp.qp_num = qp->mqp.qpn;
Sean Hefty0a1405d2011-06-02 11:32:15 -07001096 qp->xrcdn = xrcdn;
Roland Dreier225c7b12007-05-08 18:00:38 -07001097
1098 break;
1099 }
1100 case IB_QPT_SMI:
1101 case IB_QPT_GSI:
1102 {
1103 /* Userspace is not allowed to create special QPs: */
Sean Hefty0a1405d2011-06-02 11:32:15 -07001104 if (udata)
Roland Dreier225c7b12007-05-08 18:00:38 -07001105 return ERR_PTR(-EINVAL);
1106
Sean Hefty0a1405d2011-06-02 11:32:15 -07001107 err = create_qp_common(to_mdev(pd->device), pd, init_attr, udata,
Jack Morgenstein47605df2012-08-03 08:40:57 +00001108 get_sqp_num(to_mdev(pd->device), init_attr),
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001109 &qp);
1110 if (err)
Roland Dreier225c7b12007-05-08 18:00:38 -07001111 return ERR_PTR(err);
Roland Dreier225c7b12007-05-08 18:00:38 -07001112
1113 qp->port = init_attr->port_num;
1114 qp->ibqp.qp_num = init_attr->qp_type == IB_QPT_SMI ? 0 : 1;
1115
1116 break;
1117 }
1118 default:
1119 /* Don't support raw QPs */
1120 return ERR_PTR(-EINVAL);
1121 }
1122
1123 return &qp->ibqp;
1124}
1125
1126int mlx4_ib_destroy_qp(struct ib_qp *qp)
1127{
1128 struct mlx4_ib_dev *dev = to_mdev(qp->device);
1129 struct mlx4_ib_qp *mqp = to_mqp(qp);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001130 struct mlx4_ib_pd *pd;
Roland Dreier225c7b12007-05-08 18:00:38 -07001131
1132 if (is_qp0(dev, mqp))
1133 mlx4_CLOSE_PORT(dev->dev, mqp->port);
1134
Sean Hefty0a1405d2011-06-02 11:32:15 -07001135 pd = get_pd(mqp);
1136 destroy_qp_common(dev, mqp, !!pd->ibpd.uobject);
Roland Dreier225c7b12007-05-08 18:00:38 -07001137
1138 if (is_sqp(dev, mqp))
1139 kfree(to_msqp(mqp));
1140 else
1141 kfree(mqp);
1142
1143 return 0;
1144}
1145
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001146static int to_mlx4_st(struct mlx4_ib_dev *dev, enum mlx4_ib_qp_type type)
Roland Dreier225c7b12007-05-08 18:00:38 -07001147{
1148 switch (type) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001149 case MLX4_IB_QPT_RC: return MLX4_QP_ST_RC;
1150 case MLX4_IB_QPT_UC: return MLX4_QP_ST_UC;
1151 case MLX4_IB_QPT_UD: return MLX4_QP_ST_UD;
1152 case MLX4_IB_QPT_XRC_INI:
1153 case MLX4_IB_QPT_XRC_TGT: return MLX4_QP_ST_XRC;
1154 case MLX4_IB_QPT_SMI:
1155 case MLX4_IB_QPT_GSI:
1156 case MLX4_IB_QPT_RAW_PACKET: return MLX4_QP_ST_MLX;
1157
1158 case MLX4_IB_QPT_PROXY_SMI_OWNER:
1159 case MLX4_IB_QPT_TUN_SMI_OWNER: return (mlx4_is_mfunc(dev->dev) ?
1160 MLX4_QP_ST_MLX : -1);
1161 case MLX4_IB_QPT_PROXY_SMI:
1162 case MLX4_IB_QPT_TUN_SMI:
1163 case MLX4_IB_QPT_PROXY_GSI:
1164 case MLX4_IB_QPT_TUN_GSI: return (mlx4_is_mfunc(dev->dev) ?
1165 MLX4_QP_ST_UD : -1);
1166 default: return -1;
Roland Dreier225c7b12007-05-08 18:00:38 -07001167 }
1168}
1169
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001170static __be32 to_mlx4_access_flags(struct mlx4_ib_qp *qp, const struct ib_qp_attr *attr,
Roland Dreier225c7b12007-05-08 18:00:38 -07001171 int attr_mask)
1172{
1173 u8 dest_rd_atomic;
1174 u32 access_flags;
1175 u32 hw_access_flags = 0;
1176
1177 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
1178 dest_rd_atomic = attr->max_dest_rd_atomic;
1179 else
1180 dest_rd_atomic = qp->resp_depth;
1181
1182 if (attr_mask & IB_QP_ACCESS_FLAGS)
1183 access_flags = attr->qp_access_flags;
1184 else
1185 access_flags = qp->atomic_rd_en;
1186
1187 if (!dest_rd_atomic)
1188 access_flags &= IB_ACCESS_REMOTE_WRITE;
1189
1190 if (access_flags & IB_ACCESS_REMOTE_READ)
1191 hw_access_flags |= MLX4_QP_BIT_RRE;
1192 if (access_flags & IB_ACCESS_REMOTE_ATOMIC)
1193 hw_access_flags |= MLX4_QP_BIT_RAE;
1194 if (access_flags & IB_ACCESS_REMOTE_WRITE)
1195 hw_access_flags |= MLX4_QP_BIT_RWE;
1196
1197 return cpu_to_be32(hw_access_flags);
1198}
1199
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001200static void store_sqp_attrs(struct mlx4_ib_sqp *sqp, const struct ib_qp_attr *attr,
Roland Dreier225c7b12007-05-08 18:00:38 -07001201 int attr_mask)
1202{
1203 if (attr_mask & IB_QP_PKEY_INDEX)
1204 sqp->pkey_index = attr->pkey_index;
1205 if (attr_mask & IB_QP_QKEY)
1206 sqp->qkey = attr->qkey;
1207 if (attr_mask & IB_QP_SQ_PSN)
1208 sqp->send_psn = attr->sq_psn;
1209}
1210
1211static void mlx4_set_sched(struct mlx4_qp_path *path, u8 port)
1212{
1213 path->sched_queue = (path->sched_queue & 0xbf) | ((port - 1) << 6);
1214}
1215
Moni Shoua297e0da2013-12-12 18:03:14 +02001216static int _mlx4_set_path(struct mlx4_ib_dev *dev, const struct ib_ah_attr *ah,
1217 u64 smac, u16 vlan_tag, struct mlx4_qp_path *path,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001218 struct mlx4_roce_smac_vlan_info *smac_info, u8 port)
Roland Dreier225c7b12007-05-08 18:00:38 -07001219{
Eli Cohenfa417f72010-10-24 21:08:52 -07001220 int is_eth = rdma_port_get_link_layer(&dev->ib_dev, port) ==
1221 IB_LINK_LAYER_ETHERNET;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001222 int vidx;
Moni Shoua297e0da2013-12-12 18:03:14 +02001223 int smac_index;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001224 int err;
Moni Shoua297e0da2013-12-12 18:03:14 +02001225
Eli Cohenfa417f72010-10-24 21:08:52 -07001226
Roland Dreier225c7b12007-05-08 18:00:38 -07001227 path->grh_mylmc = ah->src_path_bits & 0x7f;
1228 path->rlid = cpu_to_be16(ah->dlid);
1229 if (ah->static_rate) {
1230 path->static_rate = ah->static_rate + MLX4_STAT_RATE_OFFSET;
1231 while (path->static_rate > IB_RATE_2_5_GBPS + MLX4_STAT_RATE_OFFSET &&
1232 !(1 << path->static_rate & dev->dev->caps.stat_rate_support))
1233 --path->static_rate;
1234 } else
1235 path->static_rate = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001236
1237 if (ah->ah_flags & IB_AH_GRH) {
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001238 if (ah->grh.sgid_index >= dev->dev->caps.gid_table_len[port]) {
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001239 pr_err("sgid_index (%u) too large. max is %d\n",
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001240 ah->grh.sgid_index, dev->dev->caps.gid_table_len[port] - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07001241 return -1;
1242 }
1243
1244 path->grh_mylmc |= 1 << 7;
1245 path->mgid_index = ah->grh.sgid_index;
1246 path->hop_limit = ah->grh.hop_limit;
1247 path->tclass_flowlabel =
1248 cpu_to_be32((ah->grh.traffic_class << 20) |
1249 (ah->grh.flow_label));
1250 memcpy(path->rgid, ah->grh.dgid.raw, 16);
1251 }
1252
Eli Cohenfa417f72010-10-24 21:08:52 -07001253 if (is_eth) {
1254 if (!(ah->ah_flags & IB_AH_GRH))
1255 return -1;
1256
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001257 path->sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE |
1258 ((port - 1) << 6) | ((ah->sl & 7) << 3);
Moni Shoua297e0da2013-12-12 18:03:14 +02001259
1260 path->feup |= MLX4_FEUP_FORCE_ETH_UP;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001261 if (vlan_tag < 0x1000) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001262 if (smac_info->vid < 0x1000) {
1263 /* both valid vlan ids */
1264 if (smac_info->vid != vlan_tag) {
1265 /* different VIDs. unreg old and reg new */
1266 err = mlx4_register_vlan(dev->dev, port, vlan_tag, &vidx);
1267 if (err)
1268 return err;
1269 smac_info->candidate_vid = vlan_tag;
1270 smac_info->candidate_vlan_index = vidx;
1271 smac_info->candidate_vlan_port = port;
1272 smac_info->update_vid = 1;
1273 path->vlan_index = vidx;
1274 } else {
1275 path->vlan_index = smac_info->vlan_index;
1276 }
1277 } else {
1278 /* no current vlan tag in qp */
1279 err = mlx4_register_vlan(dev->dev, port, vlan_tag, &vidx);
1280 if (err)
1281 return err;
1282 smac_info->candidate_vid = vlan_tag;
1283 smac_info->candidate_vlan_index = vidx;
1284 smac_info->candidate_vlan_port = port;
1285 smac_info->update_vid = 1;
1286 path->vlan_index = vidx;
1287 }
Moni Shoua297e0da2013-12-12 18:03:14 +02001288 path->feup |= MLX4_FVL_FORCE_ETH_VLAN;
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001289 path->fl = 1 << 6;
1290 } else {
1291 /* have current vlan tag. unregister it at modify-qp success */
1292 if (smac_info->vid < 0x1000) {
1293 smac_info->candidate_vid = 0xFFFF;
1294 smac_info->update_vid = 1;
1295 }
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001296 }
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001297
1298 /* get smac_index for RoCE use.
1299 * If no smac was yet assigned, register one.
1300 * If one was already assigned, but the new mac differs,
1301 * unregister the old one and register the new one.
1302 */
1303 if (!smac_info->smac || smac_info->smac != smac) {
1304 /* register candidate now, unreg if needed, after success */
1305 smac_index = mlx4_register_mac(dev->dev, port, smac);
1306 if (smac_index >= 0) {
1307 smac_info->candidate_smac_index = smac_index;
1308 smac_info->candidate_smac = smac;
1309 smac_info->candidate_smac_port = port;
1310 } else {
1311 return -EINVAL;
1312 }
1313 } else {
1314 smac_index = smac_info->smac_index;
1315 }
1316
1317 memcpy(path->dmac, ah->dmac, 6);
1318 path->ackto = MLX4_IB_LINK_TYPE_ETH;
1319 /* put MAC table smac index for IBoE */
1320 path->grh_mylmc = (u8) (smac_index) | 0x80;
1321 } else {
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03001322 path->sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE |
1323 ((port - 1) << 6) | ((ah->sl & 0xf) << 2);
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001324 }
Eli Cohenfa417f72010-10-24 21:08:52 -07001325
Roland Dreier225c7b12007-05-08 18:00:38 -07001326 return 0;
1327}
1328
Moni Shoua297e0da2013-12-12 18:03:14 +02001329static int mlx4_set_path(struct mlx4_ib_dev *dev, const struct ib_qp_attr *qp,
1330 enum ib_qp_attr_mask qp_attr_mask,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001331 struct mlx4_ib_qp *mqp,
Moni Shoua297e0da2013-12-12 18:03:14 +02001332 struct mlx4_qp_path *path, u8 port)
1333{
1334 return _mlx4_set_path(dev, &qp->ah_attr,
1335 mlx4_mac_to_u64((u8 *)qp->smac),
1336 (qp_attr_mask & IB_QP_VID) ? qp->vlan_id : 0xffff,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001337 path, &mqp->pri, port);
Moni Shoua297e0da2013-12-12 18:03:14 +02001338}
1339
1340static int mlx4_set_alt_path(struct mlx4_ib_dev *dev,
1341 const struct ib_qp_attr *qp,
1342 enum ib_qp_attr_mask qp_attr_mask,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001343 struct mlx4_ib_qp *mqp,
Moni Shoua297e0da2013-12-12 18:03:14 +02001344 struct mlx4_qp_path *path, u8 port)
1345{
1346 return _mlx4_set_path(dev, &qp->alt_ah_attr,
1347 mlx4_mac_to_u64((u8 *)qp->alt_smac),
1348 (qp_attr_mask & IB_QP_ALT_VID) ?
1349 qp->alt_vlan_id : 0xffff,
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001350 path, &mqp->alt, port);
Moni Shoua297e0da2013-12-12 18:03:14 +02001351}
1352
Eli Cohenfa417f72010-10-24 21:08:52 -07001353static void update_mcg_macs(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
1354{
1355 struct mlx4_ib_gid_entry *ge, *tmp;
1356
1357 list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
1358 if (!ge->added && mlx4_ib_add_mc(dev, qp, &ge->gid)) {
1359 ge->added = 1;
1360 ge->port = qp->port;
1361 }
1362 }
1363}
1364
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001365static int handle_eth_ud_smac_index(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp, u8 *smac,
1366 struct mlx4_qp_context *context)
1367{
1368 struct net_device *ndev;
1369 u64 u64_mac;
1370 int smac_index;
1371
1372
1373 ndev = dev->iboe.netdevs[qp->port - 1];
1374 if (ndev) {
1375 smac = ndev->dev_addr;
1376 u64_mac = mlx4_mac_to_u64(smac);
1377 } else {
1378 u64_mac = dev->dev->caps.def_mac[qp->port];
1379 }
1380
1381 context->pri_path.sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE | ((qp->port - 1) << 6);
1382 if (!qp->pri.smac) {
1383 smac_index = mlx4_register_mac(dev->dev, qp->port, u64_mac);
1384 if (smac_index >= 0) {
1385 qp->pri.candidate_smac_index = smac_index;
1386 qp->pri.candidate_smac = u64_mac;
1387 qp->pri.candidate_smac_port = qp->port;
1388 context->pri_path.grh_mylmc = 0x80 | (u8) smac_index;
1389 } else {
1390 return -ENOENT;
1391 }
1392 }
1393 return 0;
1394}
1395
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001396static int __mlx4_ib_modify_qp(struct ib_qp *ibqp,
1397 const struct ib_qp_attr *attr, int attr_mask,
1398 enum ib_qp_state cur_state, enum ib_qp_state new_state)
Roland Dreier225c7b12007-05-08 18:00:38 -07001399{
1400 struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
1401 struct mlx4_ib_qp *qp = to_mqp(ibqp);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001402 struct mlx4_ib_pd *pd;
1403 struct mlx4_ib_cq *send_cq, *recv_cq;
Roland Dreier225c7b12007-05-08 18:00:38 -07001404 struct mlx4_qp_context *context;
1405 enum mlx4_qp_optpar optpar = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001406 int sqd_event;
Matan Barakc1c98502013-11-07 15:25:17 +02001407 int steer_qp = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001408 int err = -EINVAL;
1409
1410 context = kzalloc(sizeof *context, GFP_KERNEL);
1411 if (!context)
1412 return -ENOMEM;
1413
Roland Dreier225c7b12007-05-08 18:00:38 -07001414 context->flags = cpu_to_be32((to_mlx4_state(new_state) << 28) |
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001415 (to_mlx4_st(dev, qp->mlx4_ib_qp_type) << 16));
Roland Dreier225c7b12007-05-08 18:00:38 -07001416
1417 if (!(attr_mask & IB_QP_PATH_MIG_STATE))
1418 context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
1419 else {
1420 optpar |= MLX4_QP_OPTPAR_PM_STATE;
1421 switch (attr->path_mig_state) {
1422 case IB_MIG_MIGRATED:
1423 context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
1424 break;
1425 case IB_MIG_REARM:
1426 context->flags |= cpu_to_be32(MLX4_QP_PM_REARM << 11);
1427 break;
1428 case IB_MIG_ARMED:
1429 context->flags |= cpu_to_be32(MLX4_QP_PM_ARMED << 11);
1430 break;
1431 }
1432 }
1433
Eli Cohenb832be12008-04-16 21:09:27 -07001434 if (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI)
Roland Dreier225c7b12007-05-08 18:00:38 -07001435 context->mtu_msgmax = (IB_MTU_4096 << 5) | 11;
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001436 else if (ibqp->qp_type == IB_QPT_RAW_PACKET)
1437 context->mtu_msgmax = (MLX4_RAW_QP_MTU << 5) | MLX4_RAW_QP_MSGMAX;
Eli Cohenb832be12008-04-16 21:09:27 -07001438 else if (ibqp->qp_type == IB_QPT_UD) {
1439 if (qp->flags & MLX4_IB_QP_LSO)
1440 context->mtu_msgmax = (IB_MTU_4096 << 5) |
1441 ilog2(dev->dev->caps.max_gso_sz);
1442 else
Alex Naslednikov6e0d7332008-08-07 14:06:50 -07001443 context->mtu_msgmax = (IB_MTU_4096 << 5) | 12;
Eli Cohenb832be12008-04-16 21:09:27 -07001444 } else if (attr_mask & IB_QP_PATH_MTU) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001445 if (attr->path_mtu < IB_MTU_256 || attr->path_mtu > IB_MTU_4096) {
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001446 pr_err("path MTU (%u) is invalid\n",
Roland Dreier225c7b12007-05-08 18:00:38 -07001447 attr->path_mtu);
Florin Malitaf5b40432007-07-19 15:58:09 -04001448 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001449 }
Eli Cohend1f2cd82008-07-14 23:48:45 -07001450 context->mtu_msgmax = (attr->path_mtu << 5) |
1451 ilog2(dev->dev->caps.max_msg_sz);
Roland Dreier225c7b12007-05-08 18:00:38 -07001452 }
1453
Roland Dreier0e6e7412007-06-18 08:13:48 -07001454 if (qp->rq.wqe_cnt)
1455 context->rq_size_stride = ilog2(qp->rq.wqe_cnt) << 3;
Roland Dreier225c7b12007-05-08 18:00:38 -07001456 context->rq_size_stride |= qp->rq.wqe_shift - 4;
1457
Roland Dreier0e6e7412007-06-18 08:13:48 -07001458 if (qp->sq.wqe_cnt)
1459 context->sq_size_stride = ilog2(qp->sq.wqe_cnt) << 3;
Roland Dreier225c7b12007-05-08 18:00:38 -07001460 context->sq_size_stride |= qp->sq.wqe_shift - 4;
1461
Sean Hefty0a1405d2011-06-02 11:32:15 -07001462 if (cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT) {
Roland Dreier0e6e7412007-06-18 08:13:48 -07001463 context->sq_size_stride |= !!qp->sq_no_prefetch << 7;
Sean Hefty0a1405d2011-06-02 11:32:15 -07001464 context->xrcd = cpu_to_be32((u32) qp->xrcdn);
Dotan Barak02d7ef62013-04-21 15:10:00 +00001465 if (ibqp->qp_type == IB_QPT_RAW_PACKET)
1466 context->param3 |= cpu_to_be32(1 << 30);
Sean Hefty0a1405d2011-06-02 11:32:15 -07001467 }
Roland Dreier0e6e7412007-06-18 08:13:48 -07001468
Roland Dreier225c7b12007-05-08 18:00:38 -07001469 if (qp->ibqp.uobject)
1470 context->usr_page = cpu_to_be32(to_mucontext(ibqp->uobject->context)->uar.index);
1471 else
1472 context->usr_page = cpu_to_be32(dev->priv_uar.index);
1473
1474 if (attr_mask & IB_QP_DEST_QPN)
1475 context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
1476
1477 if (attr_mask & IB_QP_PORT) {
1478 if (cur_state == IB_QPS_SQD && new_state == IB_QPS_SQD &&
1479 !(attr_mask & IB_QP_AV)) {
1480 mlx4_set_sched(&context->pri_path, attr->port_num);
1481 optpar |= MLX4_QP_OPTPAR_SCHED_QUEUE;
1482 }
1483 }
1484
Or Gerlitzcfcde112011-06-15 14:49:57 +00001485 if (cur_state == IB_QPS_INIT && new_state == IB_QPS_RTR) {
1486 if (dev->counters[qp->port - 1] != -1) {
1487 context->pri_path.counter_index =
1488 dev->counters[qp->port - 1];
1489 optpar |= MLX4_QP_OPTPAR_COUNTER_INDEX;
1490 } else
1491 context->pri_path.counter_index = 0xff;
Matan Barakc1c98502013-11-07 15:25:17 +02001492
1493 if (qp->flags & MLX4_IB_QP_NETIF) {
1494 mlx4_ib_steer_qp_reg(dev, qp, 1);
1495 steer_qp = 1;
1496 }
Or Gerlitzcfcde112011-06-15 14:49:57 +00001497 }
1498
Roland Dreier225c7b12007-05-08 18:00:38 -07001499 if (attr_mask & IB_QP_PKEY_INDEX) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001500 if (qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV)
1501 context->pri_path.disable_pkey_check = 0x40;
Roland Dreier225c7b12007-05-08 18:00:38 -07001502 context->pri_path.pkey_index = attr->pkey_index;
1503 optpar |= MLX4_QP_OPTPAR_PKEY_INDEX;
1504 }
1505
Roland Dreier225c7b12007-05-08 18:00:38 -07001506 if (attr_mask & IB_QP_AV) {
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001507 if (mlx4_set_path(dev, attr, attr_mask, qp, &context->pri_path,
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001508 attr_mask & IB_QP_PORT ?
1509 attr->port_num : qp->port))
Roland Dreier225c7b12007-05-08 18:00:38 -07001510 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001511
1512 optpar |= (MLX4_QP_OPTPAR_PRIMARY_ADDR_PATH |
1513 MLX4_QP_OPTPAR_SCHED_QUEUE);
1514 }
1515
1516 if (attr_mask & IB_QP_TIMEOUT) {
Eli Cohenfa417f72010-10-24 21:08:52 -07001517 context->pri_path.ackto |= attr->timeout << 3;
Roland Dreier225c7b12007-05-08 18:00:38 -07001518 optpar |= MLX4_QP_OPTPAR_ACK_TIMEOUT;
1519 }
1520
1521 if (attr_mask & IB_QP_ALT_PATH) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001522 if (attr->alt_port_num == 0 ||
1523 attr->alt_port_num > dev->dev->caps.num_ports)
Florin Malitaf5b40432007-07-19 15:58:09 -04001524 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001525
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001526 if (attr->alt_pkey_index >=
1527 dev->dev->caps.pkey_table_len[attr->alt_port_num])
Florin Malitaf5b40432007-07-19 15:58:09 -04001528 goto out;
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001529
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001530 if (mlx4_set_alt_path(dev, attr, attr_mask, qp,
1531 &context->alt_path,
Moni Shoua297e0da2013-12-12 18:03:14 +02001532 attr->alt_port_num))
Florin Malitaf5b40432007-07-19 15:58:09 -04001533 goto out;
Roland Dreier225c7b12007-05-08 18:00:38 -07001534
1535 context->alt_path.pkey_index = attr->alt_pkey_index;
1536 context->alt_path.ackto = attr->alt_timeout << 3;
1537 optpar |= MLX4_QP_OPTPAR_ALT_ADDR_PATH;
1538 }
1539
Sean Hefty0a1405d2011-06-02 11:32:15 -07001540 pd = get_pd(qp);
1541 get_cqs(qp, &send_cq, &recv_cq);
1542 context->pd = cpu_to_be32(pd->pdn);
1543 context->cqn_send = cpu_to_be32(send_cq->mcq.cqn);
1544 context->cqn_recv = cpu_to_be32(recv_cq->mcq.cqn);
1545 context->params1 = cpu_to_be32(MLX4_IB_ACK_REQ_FREQ << 28);
Jack Morgenstein57f01b52007-06-06 19:35:04 +03001546
Roland Dreier95d04f02008-07-23 08:12:26 -07001547 /* Set "fast registration enabled" for all kernel QPs */
1548 if (!qp->ibqp.uobject)
1549 context->params1 |= cpu_to_be32(1 << 11);
1550
Jack Morgenstein57f01b52007-06-06 19:35:04 +03001551 if (attr_mask & IB_QP_RNR_RETRY) {
1552 context->params1 |= cpu_to_be32(attr->rnr_retry << 13);
1553 optpar |= MLX4_QP_OPTPAR_RNR_RETRY;
1554 }
1555
Roland Dreier225c7b12007-05-08 18:00:38 -07001556 if (attr_mask & IB_QP_RETRY_CNT) {
1557 context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
1558 optpar |= MLX4_QP_OPTPAR_RETRY_COUNT;
1559 }
1560
1561 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
1562 if (attr->max_rd_atomic)
1563 context->params1 |=
1564 cpu_to_be32(fls(attr->max_rd_atomic - 1) << 21);
1565 optpar |= MLX4_QP_OPTPAR_SRA_MAX;
1566 }
1567
1568 if (attr_mask & IB_QP_SQ_PSN)
1569 context->next_send_psn = cpu_to_be32(attr->sq_psn);
1570
Roland Dreier225c7b12007-05-08 18:00:38 -07001571 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
1572 if (attr->max_dest_rd_atomic)
1573 context->params2 |=
1574 cpu_to_be32(fls(attr->max_dest_rd_atomic - 1) << 21);
1575 optpar |= MLX4_QP_OPTPAR_RRA_MAX;
1576 }
1577
1578 if (attr_mask & (IB_QP_ACCESS_FLAGS | IB_QP_MAX_DEST_RD_ATOMIC)) {
1579 context->params2 |= to_mlx4_access_flags(qp, attr, attr_mask);
1580 optpar |= MLX4_QP_OPTPAR_RWE | MLX4_QP_OPTPAR_RRE | MLX4_QP_OPTPAR_RAE;
1581 }
1582
1583 if (ibqp->srq)
1584 context->params2 |= cpu_to_be32(MLX4_QP_BIT_RIC);
1585
1586 if (attr_mask & IB_QP_MIN_RNR_TIMER) {
1587 context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
1588 optpar |= MLX4_QP_OPTPAR_RNR_TIMEOUT;
1589 }
1590 if (attr_mask & IB_QP_RQ_PSN)
1591 context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
1592
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001593 /* proxy and tunnel qp qkeys will be changed in modify-qp wrappers */
Roland Dreier225c7b12007-05-08 18:00:38 -07001594 if (attr_mask & IB_QP_QKEY) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001595 if (qp->mlx4_ib_qp_type &
1596 (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER))
1597 context->qkey = cpu_to_be32(IB_QP_SET_QKEY);
1598 else {
1599 if (mlx4_is_mfunc(dev->dev) &&
1600 !(qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV) &&
1601 (attr->qkey & MLX4_RESERVED_QKEY_MASK) ==
1602 MLX4_RESERVED_QKEY_BASE) {
1603 pr_err("Cannot use reserved QKEY"
1604 " 0x%x (range 0xffff0000..0xffffffff"
1605 " is reserved)\n", attr->qkey);
1606 err = -EINVAL;
1607 goto out;
1608 }
1609 context->qkey = cpu_to_be32(attr->qkey);
1610 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001611 optpar |= MLX4_QP_OPTPAR_Q_KEY;
1612 }
1613
1614 if (ibqp->srq)
1615 context->srqn = cpu_to_be32(1 << 24 | to_msrq(ibqp->srq)->msrq.srqn);
1616
Sean Hefty0a1405d2011-06-02 11:32:15 -07001617 if (qp->rq.wqe_cnt && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
Roland Dreier225c7b12007-05-08 18:00:38 -07001618 context->db_rec_addr = cpu_to_be64(qp->db.dma);
1619
1620 if (cur_state == IB_QPS_INIT &&
1621 new_state == IB_QPS_RTR &&
1622 (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI ||
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001623 ibqp->qp_type == IB_QPT_UD ||
1624 ibqp->qp_type == IB_QPT_RAW_PACKET)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001625 context->pri_path.sched_queue = (qp->port - 1) << 6;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001626 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_SMI ||
1627 qp->mlx4_ib_qp_type &
1628 (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001629 context->pri_path.sched_queue |= MLX4_IB_DEFAULT_QP0_SCHED_QUEUE;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001630 if (qp->mlx4_ib_qp_type != MLX4_IB_QPT_SMI)
1631 context->pri_path.fl = 0x80;
1632 } else {
1633 if (qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV)
1634 context->pri_path.fl = 0x80;
Roland Dreier225c7b12007-05-08 18:00:38 -07001635 context->pri_path.sched_queue |= MLX4_IB_DEFAULT_SCHED_QUEUE;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001636 }
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001637 if (rdma_port_get_link_layer(&dev->ib_dev, qp->port) ==
1638 IB_LINK_LAYER_ETHERNET) {
1639 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_TUN_GSI ||
1640 qp->mlx4_ib_qp_type == MLX4_IB_QPT_GSI)
1641 context->pri_path.feup = 1 << 7; /* don't fsm */
1642 /* handle smac_index */
1643 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_UD ||
1644 qp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI ||
1645 qp->mlx4_ib_qp_type == MLX4_IB_QPT_TUN_GSI) {
1646 err = handle_eth_ud_smac_index(dev, qp, (u8 *)attr->smac, context);
1647 if (err)
1648 return -EINVAL;
1649 }
1650 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001651 }
1652
Eli Cohen3528f692013-04-21 15:10:01 +00001653 if (qp->ibqp.qp_type == IB_QPT_RAW_PACKET)
1654 context->pri_path.ackto = (context->pri_path.ackto & 0xf8) |
1655 MLX4_IB_LINK_TYPE_ETH;
1656
Moni Shoua297e0da2013-12-12 18:03:14 +02001657 if (ibqp->qp_type == IB_QPT_UD && (new_state == IB_QPS_RTR)) {
1658 int is_eth = rdma_port_get_link_layer(
1659 &dev->ib_dev, qp->port) ==
1660 IB_LINK_LAYER_ETHERNET;
1661 if (is_eth) {
1662 context->pri_path.ackto = MLX4_IB_LINK_TYPE_ETH;
1663 optpar |= MLX4_QP_OPTPAR_PRIMARY_ADDR_PATH;
1664 }
1665 }
1666
1667
Roland Dreier225c7b12007-05-08 18:00:38 -07001668 if (cur_state == IB_QPS_RTS && new_state == IB_QPS_SQD &&
1669 attr_mask & IB_QP_EN_SQD_ASYNC_NOTIFY && attr->en_sqd_async_notify)
1670 sqd_event = 1;
1671 else
1672 sqd_event = 0;
1673
Vladimir Sokolovskyd57f5f72008-10-08 20:09:01 -07001674 if (!ibqp->uobject && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
1675 context->rlkey |= (1 << 4);
1676
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001677 /*
1678 * Before passing a kernel QP to the HW, make sure that the
Roland Dreier0e6e7412007-06-18 08:13:48 -07001679 * ownership bits of the send queue are set and the SQ
1680 * headroom is stamped so that the hardware doesn't start
1681 * processing stale work requests.
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001682 */
1683 if (!ibqp->uobject && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT) {
1684 struct mlx4_wqe_ctrl_seg *ctrl;
1685 int i;
1686
Roland Dreier0e6e7412007-06-18 08:13:48 -07001687 for (i = 0; i < qp->sq.wqe_cnt; ++i) {
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001688 ctrl = get_send_wqe(qp, i);
1689 ctrl->owner_opcode = cpu_to_be32(1 << 31);
Eli Cohen9670e552008-07-14 23:48:44 -07001690 if (qp->sq_max_wqes_per_wr == 1)
1691 ctrl->fence_size = 1 << (qp->sq.wqe_shift - 4);
Roland Dreier0e6e7412007-06-18 08:13:48 -07001692
Jack Morgensteinea54b102008-01-28 10:40:59 +02001693 stamp_send_wqe(qp, i, 1 << qp->sq.wqe_shift);
Eli Cohenc0be5fb2007-05-24 16:05:01 +03001694 }
1695 }
1696
Roland Dreier225c7b12007-05-08 18:00:38 -07001697 err = mlx4_qp_modify(dev->dev, &qp->mtt, to_mlx4_state(cur_state),
1698 to_mlx4_state(new_state), context, optpar,
1699 sqd_event, &qp->mqp);
1700 if (err)
1701 goto out;
1702
1703 qp->state = new_state;
1704
1705 if (attr_mask & IB_QP_ACCESS_FLAGS)
1706 qp->atomic_rd_en = attr->qp_access_flags;
1707 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
1708 qp->resp_depth = attr->max_dest_rd_atomic;
Eli Cohenfa417f72010-10-24 21:08:52 -07001709 if (attr_mask & IB_QP_PORT) {
Roland Dreier225c7b12007-05-08 18:00:38 -07001710 qp->port = attr->port_num;
Eli Cohenfa417f72010-10-24 21:08:52 -07001711 update_mcg_macs(dev, qp);
1712 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001713 if (attr_mask & IB_QP_ALT_PATH)
1714 qp->alt_port = attr->alt_port_num;
1715
1716 if (is_sqp(dev, qp))
1717 store_sqp_attrs(to_msqp(qp), attr, attr_mask);
1718
1719 /*
1720 * If we moved QP0 to RTR, bring the IB link up; if we moved
1721 * QP0 to RESET or ERROR, bring the link back down.
1722 */
1723 if (is_qp0(dev, qp)) {
1724 if (cur_state != IB_QPS_RTR && new_state == IB_QPS_RTR)
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001725 if (mlx4_INIT_PORT(dev->dev, qp->port))
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03001726 pr_warn("INIT_PORT failed for port %d\n",
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001727 qp->port);
Roland Dreier225c7b12007-05-08 18:00:38 -07001728
1729 if (cur_state != IB_QPS_RESET && cur_state != IB_QPS_ERR &&
1730 (new_state == IB_QPS_RESET || new_state == IB_QPS_ERR))
1731 mlx4_CLOSE_PORT(dev->dev, qp->port);
1732 }
1733
1734 /*
1735 * If we moved a kernel QP to RESET, clean up all old CQ
1736 * entries and reinitialize the QP.
1737 */
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001738 if (new_state == IB_QPS_RESET) {
1739 if (!ibqp->uobject) {
1740 mlx4_ib_cq_clean(recv_cq, qp->mqp.qpn,
1741 ibqp->srq ? to_msrq(ibqp->srq) : NULL);
1742 if (send_cq != recv_cq)
1743 mlx4_ib_cq_clean(send_cq, qp->mqp.qpn, NULL);
Roland Dreier225c7b12007-05-08 18:00:38 -07001744
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001745 qp->rq.head = 0;
1746 qp->rq.tail = 0;
1747 qp->sq.head = 0;
1748 qp->sq.tail = 0;
1749 qp->sq_next_wqe = 0;
1750 if (qp->rq.wqe_cnt)
1751 *qp->db.db = 0;
Matan Barakc1c98502013-11-07 15:25:17 +02001752
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001753 if (qp->flags & MLX4_IB_QP_NETIF)
1754 mlx4_ib_steer_qp_reg(dev, qp, 0);
1755 }
1756 if (qp->pri.smac) {
1757 mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
1758 qp->pri.smac = 0;
1759 }
1760 if (qp->alt.smac) {
1761 mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
1762 qp->alt.smac = 0;
1763 }
1764 if (qp->pri.vid < 0x1000) {
1765 mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port, qp->pri.vid);
1766 qp->pri.vid = 0xFFFF;
1767 qp->pri.candidate_vid = 0xFFFF;
1768 qp->pri.update_vid = 0;
1769 }
1770
1771 if (qp->alt.vid < 0x1000) {
1772 mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port, qp->alt.vid);
1773 qp->alt.vid = 0xFFFF;
1774 qp->alt.candidate_vid = 0xFFFF;
1775 qp->alt.update_vid = 0;
1776 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001777 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001778out:
Matan Barakc1c98502013-11-07 15:25:17 +02001779 if (err && steer_qp)
1780 mlx4_ib_steer_qp_reg(dev, qp, 0);
Roland Dreier225c7b12007-05-08 18:00:38 -07001781 kfree(context);
Jack Morgenstein2f5bb472014-03-12 12:00:40 +02001782 if (qp->pri.candidate_smac) {
1783 if (err) {
1784 mlx4_unregister_mac(dev->dev, qp->pri.candidate_smac_port, qp->pri.candidate_smac);
1785 } else {
1786 if (qp->pri.smac)
1787 mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
1788 qp->pri.smac = qp->pri.candidate_smac;
1789 qp->pri.smac_index = qp->pri.candidate_smac_index;
1790 qp->pri.smac_port = qp->pri.candidate_smac_port;
1791 }
1792 qp->pri.candidate_smac = 0;
1793 qp->pri.candidate_smac_index = 0;
1794 qp->pri.candidate_smac_port = 0;
1795 }
1796 if (qp->alt.candidate_smac) {
1797 if (err) {
1798 mlx4_unregister_mac(dev->dev, qp->alt.candidate_smac_port, qp->alt.candidate_smac);
1799 } else {
1800 if (qp->alt.smac)
1801 mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
1802 qp->alt.smac = qp->alt.candidate_smac;
1803 qp->alt.smac_index = qp->alt.candidate_smac_index;
1804 qp->alt.smac_port = qp->alt.candidate_smac_port;
1805 }
1806 qp->alt.candidate_smac = 0;
1807 qp->alt.candidate_smac_index = 0;
1808 qp->alt.candidate_smac_port = 0;
1809 }
1810
1811 if (qp->pri.update_vid) {
1812 if (err) {
1813 if (qp->pri.candidate_vid < 0x1000)
1814 mlx4_unregister_vlan(dev->dev, qp->pri.candidate_vlan_port,
1815 qp->pri.candidate_vid);
1816 } else {
1817 if (qp->pri.vid < 0x1000)
1818 mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port,
1819 qp->pri.vid);
1820 qp->pri.vid = qp->pri.candidate_vid;
1821 qp->pri.vlan_port = qp->pri.candidate_vlan_port;
1822 qp->pri.vlan_index = qp->pri.candidate_vlan_index;
1823 }
1824 qp->pri.candidate_vid = 0xFFFF;
1825 qp->pri.update_vid = 0;
1826 }
1827
1828 if (qp->alt.update_vid) {
1829 if (err) {
1830 if (qp->alt.candidate_vid < 0x1000)
1831 mlx4_unregister_vlan(dev->dev, qp->alt.candidate_vlan_port,
1832 qp->alt.candidate_vid);
1833 } else {
1834 if (qp->alt.vid < 0x1000)
1835 mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port,
1836 qp->alt.vid);
1837 qp->alt.vid = qp->alt.candidate_vid;
1838 qp->alt.vlan_port = qp->alt.candidate_vlan_port;
1839 qp->alt.vlan_index = qp->alt.candidate_vlan_index;
1840 }
1841 qp->alt.candidate_vid = 0xFFFF;
1842 qp->alt.update_vid = 0;
1843 }
1844
Roland Dreier225c7b12007-05-08 18:00:38 -07001845 return err;
1846}
1847
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001848int mlx4_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1849 int attr_mask, struct ib_udata *udata)
1850{
1851 struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
1852 struct mlx4_ib_qp *qp = to_mqp(ibqp);
1853 enum ib_qp_state cur_state, new_state;
1854 int err = -EINVAL;
Moni Shoua297e0da2013-12-12 18:03:14 +02001855 int ll;
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001856 mutex_lock(&qp->mutex);
1857
1858 cur_state = attr_mask & IB_QP_CUR_STATE ? attr->cur_qp_state : qp->state;
1859 new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state;
1860
Moni Shoua297e0da2013-12-12 18:03:14 +02001861 if (cur_state == new_state && cur_state == IB_QPS_RESET) {
1862 ll = IB_LINK_LAYER_UNSPECIFIED;
1863 } else {
1864 int port = attr_mask & IB_QP_PORT ? attr->port_num : qp->port;
1865 ll = rdma_port_get_link_layer(&dev->ib_dev, port);
1866 }
Matan Barakdd5f03b2013-12-12 18:03:11 +02001867
1868 if (!ib_modify_qp_is_ok(cur_state, new_state, ibqp->qp_type,
Moni Shoua297e0da2013-12-12 18:03:14 +02001869 attr_mask, ll)) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001870 pr_debug("qpn 0x%x: invalid attribute mask specified "
1871 "for transition %d to %d. qp_type %d,"
1872 " attr_mask 0x%x\n",
1873 ibqp->qp_num, cur_state, new_state,
1874 ibqp->qp_type, attr_mask);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001875 goto out;
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001876 }
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001877
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001878 if ((attr_mask & IB_QP_PORT) &&
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001879 (attr->port_num == 0 || attr->port_num > dev->num_ports)) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001880 pr_debug("qpn 0x%x: invalid port number (%d) specified "
1881 "for transition %d to %d. qp_type %d\n",
1882 ibqp->qp_num, attr->port_num, cur_state,
1883 new_state, ibqp->qp_type);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001884 goto out;
1885 }
1886
Or Gerlitz3987a2d2012-01-17 13:39:07 +02001887 if ((attr_mask & IB_QP_PORT) && (ibqp->qp_type == IB_QPT_RAW_PACKET) &&
1888 (rdma_port_get_link_layer(&dev->ib_dev, attr->port_num) !=
1889 IB_LINK_LAYER_ETHERNET))
1890 goto out;
1891
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001892 if (attr_mask & IB_QP_PKEY_INDEX) {
1893 int p = attr_mask & IB_QP_PORT ? attr->port_num : qp->port;
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001894 if (attr->pkey_index >= dev->dev->caps.pkey_table_len[p]) {
1895 pr_debug("qpn 0x%x: invalid pkey index (%d) specified "
1896 "for transition %d to %d. qp_type %d\n",
1897 ibqp->qp_num, attr->pkey_index, cur_state,
1898 new_state, ibqp->qp_type);
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001899 goto out;
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001900 }
Roland Dreier5ae2a7a2007-06-18 08:15:02 -07001901 }
1902
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001903 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC &&
1904 attr->max_rd_atomic > dev->dev->caps.max_qp_init_rdma) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001905 pr_debug("qpn 0x%x: max_rd_atomic (%d) too large. "
1906 "Transition %d to %d. qp_type %d\n",
1907 ibqp->qp_num, attr->max_rd_atomic, cur_state,
1908 new_state, ibqp->qp_type);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001909 goto out;
1910 }
1911
1912 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC &&
1913 attr->max_dest_rd_atomic > dev->dev->caps.max_qp_dest_rdma) {
Jack Morgensteinb1d8eb52012-06-19 11:21:35 +03001914 pr_debug("qpn 0x%x: max_dest_rd_atomic (%d) too large. "
1915 "Transition %d to %d. qp_type %d\n",
1916 ibqp->qp_num, attr->max_dest_rd_atomic, cur_state,
1917 new_state, ibqp->qp_type);
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001918 goto out;
1919 }
1920
1921 if (cur_state == new_state && cur_state == IB_QPS_RESET) {
1922 err = 0;
1923 goto out;
1924 }
1925
Michael S. Tsirkin65adfa92007-05-14 07:26:51 +03001926 err = __mlx4_ib_modify_qp(ibqp, attr, attr_mask, cur_state, new_state);
1927
1928out:
1929 mutex_unlock(&qp->mutex);
1930 return err;
1931}
1932
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001933static int build_sriov_qp0_header(struct mlx4_ib_sqp *sqp,
1934 struct ib_send_wr *wr,
1935 void *wqe, unsigned *mlx_seg_len)
1936{
1937 struct mlx4_ib_dev *mdev = to_mdev(sqp->qp.ibqp.device);
1938 struct ib_device *ib_dev = &mdev->ib_dev;
1939 struct mlx4_wqe_mlx_seg *mlx = wqe;
1940 struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
1941 struct mlx4_ib_ah *ah = to_mah(wr->wr.ud.ah);
1942 u16 pkey;
1943 u32 qkey;
1944 int send_size;
1945 int header_size;
1946 int spc;
1947 int i;
1948
1949 if (wr->opcode != IB_WR_SEND)
1950 return -EINVAL;
1951
1952 send_size = 0;
1953
1954 for (i = 0; i < wr->num_sge; ++i)
1955 send_size += wr->sg_list[i].length;
1956
1957 /* for proxy-qp0 sends, need to add in size of tunnel header */
1958 /* for tunnel-qp0 sends, tunnel header is already in s/g list */
1959 if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_SMI_OWNER)
1960 send_size += sizeof (struct mlx4_ib_tunnel_header);
1961
1962 ib_ud_header_init(send_size, 1, 0, 0, 0, 0, &sqp->ud_header);
1963
1964 if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_SMI_OWNER) {
1965 sqp->ud_header.lrh.service_level =
1966 be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 28;
1967 sqp->ud_header.lrh.destination_lid =
1968 cpu_to_be16(ah->av.ib.g_slid & 0x7f);
1969 sqp->ud_header.lrh.source_lid =
1970 cpu_to_be16(ah->av.ib.g_slid & 0x7f);
1971 }
1972
1973 mlx->flags &= cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
1974
1975 /* force loopback */
1976 mlx->flags |= cpu_to_be32(MLX4_WQE_MLX_VL15 | 0x1 | MLX4_WQE_MLX_SLR);
1977 mlx->rlid = sqp->ud_header.lrh.destination_lid;
1978
1979 sqp->ud_header.lrh.virtual_lane = 0;
1980 sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
1981 ib_get_cached_pkey(ib_dev, sqp->qp.port, 0, &pkey);
1982 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
1983 if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_TUN_SMI_OWNER)
1984 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
1985 else
1986 sqp->ud_header.bth.destination_qpn =
Jack Morgenstein47605df2012-08-03 08:40:57 +00001987 cpu_to_be32(mdev->dev->caps.qp0_tunnel[sqp->qp.port - 1]);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00001988
1989 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
1990 if (mlx4_get_parav_qkey(mdev->dev, sqp->qp.mqp.qpn, &qkey))
1991 return -EINVAL;
1992 sqp->ud_header.deth.qkey = cpu_to_be32(qkey);
1993 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.mqp.qpn);
1994
1995 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
1996 sqp->ud_header.immediate_present = 0;
1997
1998 header_size = ib_ud_header_pack(&sqp->ud_header, sqp->header_buf);
1999
2000 /*
2001 * Inline data segments may not cross a 64 byte boundary. If
2002 * our UD header is bigger than the space available up to the
2003 * next 64 byte boundary in the WQE, use two inline data
2004 * segments to hold the UD header.
2005 */
2006 spc = MLX4_INLINE_ALIGN -
2007 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2008 if (header_size <= spc) {
2009 inl->byte_count = cpu_to_be32(1 << 31 | header_size);
2010 memcpy(inl + 1, sqp->header_buf, header_size);
2011 i = 1;
2012 } else {
2013 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2014 memcpy(inl + 1, sqp->header_buf, spc);
2015
2016 inl = (void *) (inl + 1) + spc;
2017 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
2018 /*
2019 * Need a barrier here to make sure all the data is
2020 * visible before the byte_count field is set.
2021 * Otherwise the HCA prefetcher could grab the 64-byte
2022 * chunk with this inline segment and get a valid (!=
2023 * 0xffffffff) byte count but stale data, and end up
2024 * generating a packet with bad headers.
2025 *
2026 * The first inline segment's byte_count field doesn't
2027 * need a barrier, because it comes after a
2028 * control/MLX segment and therefore is at an offset
2029 * of 16 mod 64.
2030 */
2031 wmb();
2032 inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc));
2033 i = 2;
2034 }
2035
2036 *mlx_seg_len =
2037 ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + header_size, 16);
2038 return 0;
2039}
2040
Roland Dreier225c7b12007-05-08 18:00:38 -07002041static int build_mlx_header(struct mlx4_ib_sqp *sqp, struct ib_send_wr *wr,
Roland Dreierf4380002008-04-16 21:09:28 -07002042 void *wqe, unsigned *mlx_seg_len)
Roland Dreier225c7b12007-05-08 18:00:38 -07002043{
Eli Cohena4788682010-01-27 13:57:03 +00002044 struct ib_device *ib_dev = sqp->qp.ibqp.device;
Roland Dreier225c7b12007-05-08 18:00:38 -07002045 struct mlx4_wqe_mlx_seg *mlx = wqe;
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002046 struct mlx4_wqe_ctrl_seg *ctrl = wqe;
Roland Dreier225c7b12007-05-08 18:00:38 -07002047 struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
2048 struct mlx4_ib_ah *ah = to_mah(wr->wr.ud.ah);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002049 union ib_gid sgid;
Roland Dreier225c7b12007-05-08 18:00:38 -07002050 u16 pkey;
2051 int send_size;
2052 int header_size;
Roland Dreiere61ef242007-06-18 09:23:47 -07002053 int spc;
Roland Dreier225c7b12007-05-08 18:00:38 -07002054 int i;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002055 int err = 0;
Paul Bolle57d88cf2013-02-25 09:17:13 -08002056 u16 vlan = 0xffff;
Roland Dreiera29bec12013-02-25 09:02:03 -08002057 bool is_eth;
2058 bool is_vlan = false;
2059 bool is_grh;
Roland Dreier225c7b12007-05-08 18:00:38 -07002060
2061 send_size = 0;
2062 for (i = 0; i < wr->num_sge; ++i)
2063 send_size += wr->sg_list[i].length;
2064
Eli Cohenfa417f72010-10-24 21:08:52 -07002065 is_eth = rdma_port_get_link_layer(sqp->qp.ibqp.device, sqp->qp.port) == IB_LINK_LAYER_ETHERNET;
2066 is_grh = mlx4_ib_ah_grh_present(ah);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002067 if (is_eth) {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002068 if (mlx4_is_mfunc(to_mdev(ib_dev)->dev)) {
2069 /* When multi-function is enabled, the ib_core gid
2070 * indexes don't necessarily match the hw ones, so
2071 * we must use our own cache */
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002072 err = mlx4_get_roce_gid_from_slave(to_mdev(ib_dev)->dev,
2073 be32_to_cpu(ah->av.ib.port_pd) >> 24,
2074 ah->av.ib.gid_index, &sgid.raw[0]);
2075 if (err)
2076 return err;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002077 } else {
2078 err = ib_get_cached_gid(ib_dev,
2079 be32_to_cpu(ah->av.ib.port_pd) >> 24,
2080 ah->av.ib.gid_index, &sgid);
2081 if (err)
2082 return err;
2083 }
2084
Moni Shoua297e0da2013-12-12 18:03:14 +02002085 if (ah->av.eth.vlan != 0xffff) {
2086 vlan = be16_to_cpu(ah->av.eth.vlan) & 0x0fff;
2087 is_vlan = 1;
2088 }
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002089 }
2090 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 -07002091
Eli Cohenfa417f72010-10-24 21:08:52 -07002092 if (!is_eth) {
2093 sqp->ud_header.lrh.service_level =
2094 be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 28;
2095 sqp->ud_header.lrh.destination_lid = ah->av.ib.dlid;
2096 sqp->ud_header.lrh.source_lid = cpu_to_be16(ah->av.ib.g_slid & 0x7f);
2097 }
2098
2099 if (is_grh) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002100 sqp->ud_header.grh.traffic_class =
Eli Cohenfa417f72010-10-24 21:08:52 -07002101 (be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 20) & 0xff;
Roland Dreier225c7b12007-05-08 18:00:38 -07002102 sqp->ud_header.grh.flow_label =
Eli Cohenfa417f72010-10-24 21:08:52 -07002103 ah->av.ib.sl_tclass_flowlabel & cpu_to_be32(0xfffff);
2104 sqp->ud_header.grh.hop_limit = ah->av.ib.hop_limit;
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002105 if (is_eth)
2106 memcpy(sqp->ud_header.grh.source_gid.raw, sgid.raw, 16);
2107 else {
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002108 if (mlx4_is_mfunc(to_mdev(ib_dev)->dev)) {
2109 /* When multi-function is enabled, the ib_core gid
2110 * indexes don't necessarily match the hw ones, so
2111 * we must use our own cache */
2112 sqp->ud_header.grh.source_gid.global.subnet_prefix =
2113 to_mdev(ib_dev)->sriov.demux[sqp->qp.port - 1].
2114 subnet_prefix;
2115 sqp->ud_header.grh.source_gid.global.interface_id =
2116 to_mdev(ib_dev)->sriov.demux[sqp->qp.port - 1].
2117 guid_cache[ah->av.ib.gid_index];
2118 } else
2119 ib_get_cached_gid(ib_dev,
2120 be32_to_cpu(ah->av.ib.port_pd) >> 24,
2121 ah->av.ib.gid_index,
2122 &sqp->ud_header.grh.source_gid);
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002123 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002124 memcpy(sqp->ud_header.grh.destination_gid.raw,
Eli Cohenfa417f72010-10-24 21:08:52 -07002125 ah->av.ib.dgid, 16);
Roland Dreier225c7b12007-05-08 18:00:38 -07002126 }
2127
2128 mlx->flags &= cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
Eli Cohenfa417f72010-10-24 21:08:52 -07002129
2130 if (!is_eth) {
2131 mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MLX4_WQE_MLX_VL15 : 0) |
2132 (sqp->ud_header.lrh.destination_lid ==
2133 IB_LID_PERMISSIVE ? MLX4_WQE_MLX_SLR : 0) |
2134 (sqp->ud_header.lrh.service_level << 8));
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002135 if (ah->av.ib.port_pd & cpu_to_be32(0x80000000))
2136 mlx->flags |= cpu_to_be32(0x1); /* force loopback */
Eli Cohenfa417f72010-10-24 21:08:52 -07002137 mlx->rlid = sqp->ud_header.lrh.destination_lid;
2138 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002139
2140 switch (wr->opcode) {
2141 case IB_WR_SEND:
2142 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
2143 sqp->ud_header.immediate_present = 0;
2144 break;
2145 case IB_WR_SEND_WITH_IMM:
2146 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
2147 sqp->ud_header.immediate_present = 1;
Roland Dreier0f39cf32008-04-16 21:09:32 -07002148 sqp->ud_header.immediate_data = wr->ex.imm_data;
Roland Dreier225c7b12007-05-08 18:00:38 -07002149 break;
2150 default:
2151 return -EINVAL;
2152 }
2153
Eli Cohenfa417f72010-10-24 21:08:52 -07002154 if (is_eth) {
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002155 u8 smac[6];
2156 struct in6_addr in6;
2157
Oren Duerc0c1d3d72012-04-29 17:04:24 +03002158 u16 pcp = (be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 29) << 13;
2159
2160 mlx->sched_prio = cpu_to_be16(pcp);
Eli Cohenfa417f72010-10-24 21:08:52 -07002161
2162 memcpy(sqp->ud_header.eth.dmac_h, ah->av.eth.mac, 6);
2163 /* FIXME: cache smac value? */
Jack Morgenstein6ee51a42014-03-12 12:00:37 +02002164 memcpy(&ctrl->srcrb_flags16[0], ah->av.eth.mac, 2);
2165 memcpy(&ctrl->imm, ah->av.eth.mac + 2, 4);
2166 memcpy(&in6, sgid.raw, sizeof(in6));
2167 rdma_get_ll_mac(&in6, smac);
Eli Cohenfa417f72010-10-24 21:08:52 -07002168 memcpy(sqp->ud_header.eth.smac_h, smac, 6);
2169 if (!memcmp(sqp->ud_header.eth.smac_h, sqp->ud_header.eth.dmac_h, 6))
2170 mlx->flags |= cpu_to_be32(MLX4_WQE_CTRL_FORCE_LOOPBACK);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002171 if (!is_vlan) {
2172 sqp->ud_header.eth.type = cpu_to_be16(MLX4_IB_IBOE_ETHERTYPE);
2173 } else {
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002174 sqp->ud_header.vlan.type = cpu_to_be16(MLX4_IB_IBOE_ETHERTYPE);
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002175 sqp->ud_header.vlan.tag = cpu_to_be16(vlan | pcp);
2176 }
Eli Cohenfa417f72010-10-24 21:08:52 -07002177 } else {
2178 sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0;
2179 if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE)
2180 sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE;
2181 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002182 sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
2183 if (!sqp->qp.ibqp.qp_num)
2184 ib_get_cached_pkey(ib_dev, sqp->qp.port, sqp->pkey_index, &pkey);
2185 else
2186 ib_get_cached_pkey(ib_dev, sqp->qp.port, wr->wr.ud.pkey_index, &pkey);
2187 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
2188 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
2189 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
2190 sqp->ud_header.deth.qkey = cpu_to_be32(wr->wr.ud.remote_qkey & 0x80000000 ?
2191 sqp->qkey : wr->wr.ud.remote_qkey);
2192 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
2193
2194 header_size = ib_ud_header_pack(&sqp->ud_header, sqp->header_buf);
2195
2196 if (0) {
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002197 pr_err("built UD header of size %d:\n", header_size);
Roland Dreier225c7b12007-05-08 18:00:38 -07002198 for (i = 0; i < header_size / 4; ++i) {
2199 if (i % 8 == 0)
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002200 pr_err(" [%02x] ", i * 4);
2201 pr_cont(" %08x",
2202 be32_to_cpu(((__be32 *) sqp->header_buf)[i]));
Roland Dreier225c7b12007-05-08 18:00:38 -07002203 if ((i + 1) % 8 == 0)
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002204 pr_cont("\n");
Roland Dreier225c7b12007-05-08 18:00:38 -07002205 }
Shlomo Pongratz987c8f82012-04-29 17:04:26 +03002206 pr_err("\n");
Roland Dreier225c7b12007-05-08 18:00:38 -07002207 }
2208
Roland Dreiere61ef242007-06-18 09:23:47 -07002209 /*
2210 * Inline data segments may not cross a 64 byte boundary. If
2211 * our UD header is bigger than the space available up to the
2212 * next 64 byte boundary in the WQE, use two inline data
2213 * segments to hold the UD header.
2214 */
2215 spc = MLX4_INLINE_ALIGN -
2216 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2217 if (header_size <= spc) {
2218 inl->byte_count = cpu_to_be32(1 << 31 | header_size);
2219 memcpy(inl + 1, sqp->header_buf, header_size);
2220 i = 1;
2221 } else {
2222 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2223 memcpy(inl + 1, sqp->header_buf, spc);
Roland Dreier225c7b12007-05-08 18:00:38 -07002224
Roland Dreiere61ef242007-06-18 09:23:47 -07002225 inl = (void *) (inl + 1) + spc;
2226 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
2227 /*
2228 * Need a barrier here to make sure all the data is
2229 * visible before the byte_count field is set.
2230 * Otherwise the HCA prefetcher could grab the 64-byte
2231 * chunk with this inline segment and get a valid (!=
2232 * 0xffffffff) byte count but stale data, and end up
2233 * generating a packet with bad headers.
2234 *
2235 * The first inline segment's byte_count field doesn't
2236 * need a barrier, because it comes after a
2237 * control/MLX segment and therefore is at an offset
2238 * of 16 mod 64.
2239 */
2240 wmb();
2241 inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc));
2242 i = 2;
2243 }
2244
Roland Dreierf4380002008-04-16 21:09:28 -07002245 *mlx_seg_len =
2246 ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + header_size, 16);
2247 return 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07002248}
2249
2250static int mlx4_wq_overflow(struct mlx4_ib_wq *wq, int nreq, struct ib_cq *ib_cq)
2251{
2252 unsigned cur;
2253 struct mlx4_ib_cq *cq;
2254
2255 cur = wq->head - wq->tail;
Roland Dreier0e6e7412007-06-18 08:13:48 -07002256 if (likely(cur + nreq < wq->max_post))
Roland Dreier225c7b12007-05-08 18:00:38 -07002257 return 0;
2258
2259 cq = to_mcq(ib_cq);
2260 spin_lock(&cq->lock);
2261 cur = wq->head - wq->tail;
2262 spin_unlock(&cq->lock);
2263
Roland Dreier0e6e7412007-06-18 08:13:48 -07002264 return cur + nreq >= wq->max_post;
Roland Dreier225c7b12007-05-08 18:00:38 -07002265}
2266
Roland Dreier95d04f02008-07-23 08:12:26 -07002267static __be32 convert_access(int acc)
2268{
Shani Michaeli6ff63e12013-02-06 16:19:15 +00002269 return (acc & IB_ACCESS_REMOTE_ATOMIC ?
2270 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_ATOMIC) : 0) |
2271 (acc & IB_ACCESS_REMOTE_WRITE ?
2272 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_WRITE) : 0) |
2273 (acc & IB_ACCESS_REMOTE_READ ?
2274 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_READ) : 0) |
Roland Dreier95d04f02008-07-23 08:12:26 -07002275 (acc & IB_ACCESS_LOCAL_WRITE ? cpu_to_be32(MLX4_WQE_FMR_PERM_LOCAL_WRITE) : 0) |
2276 cpu_to_be32(MLX4_WQE_FMR_PERM_LOCAL_READ);
2277}
2278
2279static void set_fmr_seg(struct mlx4_wqe_fmr_seg *fseg, struct ib_send_wr *wr)
2280{
2281 struct mlx4_ib_fast_reg_page_list *mfrpl = to_mfrpl(wr->wr.fast_reg.page_list);
Vladimir Sokolovsky29bdc882008-09-15 14:25:23 -07002282 int i;
2283
2284 for (i = 0; i < wr->wr.fast_reg.page_list_len; ++i)
Jack Morgenstein2b6b7d42009-05-07 21:35:13 -07002285 mfrpl->mapped_page_list[i] =
Vladimir Sokolovsky29bdc882008-09-15 14:25:23 -07002286 cpu_to_be64(wr->wr.fast_reg.page_list->page_list[i] |
2287 MLX4_MTT_FLAG_PRESENT);
Roland Dreier95d04f02008-07-23 08:12:26 -07002288
2289 fseg->flags = convert_access(wr->wr.fast_reg.access_flags);
2290 fseg->mem_key = cpu_to_be32(wr->wr.fast_reg.rkey);
2291 fseg->buf_list = cpu_to_be64(mfrpl->map);
2292 fseg->start_addr = cpu_to_be64(wr->wr.fast_reg.iova_start);
2293 fseg->reg_len = cpu_to_be64(wr->wr.fast_reg.length);
2294 fseg->offset = 0; /* XXX -- is this just for ZBVA? */
2295 fseg->page_size = cpu_to_be32(wr->wr.fast_reg.page_shift);
2296 fseg->reserved[0] = 0;
2297 fseg->reserved[1] = 0;
2298}
2299
Shani Michaeli6ff63e12013-02-06 16:19:15 +00002300static void set_bind_seg(struct mlx4_wqe_bind_seg *bseg, struct ib_send_wr *wr)
2301{
2302 bseg->flags1 =
2303 convert_access(wr->wr.bind_mw.bind_info.mw_access_flags) &
2304 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_READ |
2305 MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_WRITE |
2306 MLX4_WQE_FMR_AND_BIND_PERM_ATOMIC);
2307 bseg->flags2 = 0;
2308 if (wr->wr.bind_mw.mw->type == IB_MW_TYPE_2)
2309 bseg->flags2 |= cpu_to_be32(MLX4_WQE_BIND_TYPE_2);
2310 if (wr->wr.bind_mw.bind_info.mw_access_flags & IB_ZERO_BASED)
2311 bseg->flags2 |= cpu_to_be32(MLX4_WQE_BIND_ZERO_BASED);
2312 bseg->new_rkey = cpu_to_be32(wr->wr.bind_mw.rkey);
2313 bseg->lkey = cpu_to_be32(wr->wr.bind_mw.bind_info.mr->lkey);
2314 bseg->addr = cpu_to_be64(wr->wr.bind_mw.bind_info.addr);
2315 bseg->length = cpu_to_be64(wr->wr.bind_mw.bind_info.length);
2316}
2317
Roland Dreier95d04f02008-07-23 08:12:26 -07002318static void set_local_inv_seg(struct mlx4_wqe_local_inval_seg *iseg, u32 rkey)
2319{
Shani Michaeliaee38fa2013-02-06 16:19:07 +00002320 memset(iseg, 0, sizeof(*iseg));
2321 iseg->mem_key = cpu_to_be32(rkey);
Roland Dreier95d04f02008-07-23 08:12:26 -07002322}
2323
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002324static __always_inline void set_raddr_seg(struct mlx4_wqe_raddr_seg *rseg,
2325 u64 remote_addr, u32 rkey)
2326{
2327 rseg->raddr = cpu_to_be64(remote_addr);
2328 rseg->rkey = cpu_to_be32(rkey);
2329 rseg->reserved = 0;
2330}
2331
2332static void set_atomic_seg(struct mlx4_wqe_atomic_seg *aseg, struct ib_send_wr *wr)
2333{
2334 if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
2335 aseg->swap_add = cpu_to_be64(wr->wr.atomic.swap);
2336 aseg->compare = cpu_to_be64(wr->wr.atomic.compare_add);
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002337 } else if (wr->opcode == IB_WR_MASKED_ATOMIC_FETCH_AND_ADD) {
2338 aseg->swap_add = cpu_to_be64(wr->wr.atomic.compare_add);
2339 aseg->compare = cpu_to_be64(wr->wr.atomic.compare_add_mask);
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002340 } else {
2341 aseg->swap_add = cpu_to_be64(wr->wr.atomic.compare_add);
2342 aseg->compare = 0;
2343 }
2344
2345}
2346
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002347static void set_masked_atomic_seg(struct mlx4_wqe_masked_atomic_seg *aseg,
2348 struct ib_send_wr *wr)
2349{
2350 aseg->swap_add = cpu_to_be64(wr->wr.atomic.swap);
2351 aseg->swap_add_mask = cpu_to_be64(wr->wr.atomic.swap_mask);
2352 aseg->compare = cpu_to_be64(wr->wr.atomic.compare_add);
2353 aseg->compare_mask = cpu_to_be64(wr->wr.atomic.compare_add_mask);
2354}
2355
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002356static void set_datagram_seg(struct mlx4_wqe_datagram_seg *dseg,
Or Gerlitz80a2dcd2011-10-10 10:54:42 +02002357 struct ib_send_wr *wr)
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002358{
2359 memcpy(dseg->av, &to_mah(wr->wr.ud.ah)->av, sizeof (struct mlx4_av));
2360 dseg->dqpn = cpu_to_be32(wr->wr.ud.remote_qpn);
2361 dseg->qkey = cpu_to_be32(wr->wr.ud.remote_qkey);
Eli Cohenfa417f72010-10-24 21:08:52 -07002362 dseg->vlan = to_mah(wr->wr.ud.ah)->av.eth.vlan;
2363 memcpy(dseg->mac, to_mah(wr->wr.ud.ah)->av.eth.mac, 6);
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002364}
2365
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002366static void set_tunnel_datagram_seg(struct mlx4_ib_dev *dev,
2367 struct mlx4_wqe_datagram_seg *dseg,
2368 struct ib_send_wr *wr, enum ib_qp_type qpt)
2369{
2370 union mlx4_ext_av *av = &to_mah(wr->wr.ud.ah)->av;
2371 struct mlx4_av sqp_av = {0};
2372 int port = *((u8 *) &av->ib.port_pd) & 0x3;
2373
2374 /* force loopback */
2375 sqp_av.port_pd = av->ib.port_pd | cpu_to_be32(0x80000000);
2376 sqp_av.g_slid = av->ib.g_slid & 0x7f; /* no GRH */
2377 sqp_av.sl_tclass_flowlabel = av->ib.sl_tclass_flowlabel &
2378 cpu_to_be32(0xf0000000);
2379
2380 memcpy(dseg->av, &sqp_av, sizeof (struct mlx4_av));
Jack Morgenstein47605df2012-08-03 08:40:57 +00002381 /* This function used only for sending on QP1 proxies */
2382 dseg->dqpn = cpu_to_be32(dev->dev->caps.qp1_tunnel[port - 1]);
2383 /* Use QKEY from the QP context, which is set by master */
2384 dseg->qkey = cpu_to_be32(IB_QP_SET_QKEY);
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002385}
2386
2387static void build_tunnel_header(struct ib_send_wr *wr, void *wqe, unsigned *mlx_seg_len)
2388{
2389 struct mlx4_wqe_inline_seg *inl = wqe;
2390 struct mlx4_ib_tunnel_header hdr;
2391 struct mlx4_ib_ah *ah = to_mah(wr->wr.ud.ah);
2392 int spc;
2393 int i;
2394
2395 memcpy(&hdr.av, &ah->av, sizeof hdr.av);
2396 hdr.remote_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
2397 hdr.pkey_index = cpu_to_be16(wr->wr.ud.pkey_index);
2398 hdr.qkey = cpu_to_be32(wr->wr.ud.remote_qkey);
2399
2400 spc = MLX4_INLINE_ALIGN -
2401 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2402 if (sizeof (hdr) <= spc) {
2403 memcpy(inl + 1, &hdr, sizeof (hdr));
2404 wmb();
2405 inl->byte_count = cpu_to_be32(1 << 31 | sizeof (hdr));
2406 i = 1;
2407 } else {
2408 memcpy(inl + 1, &hdr, spc);
2409 wmb();
2410 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2411
2412 inl = (void *) (inl + 1) + spc;
2413 memcpy(inl + 1, (void *) &hdr + spc, sizeof (hdr) - spc);
2414 wmb();
2415 inl->byte_count = cpu_to_be32(1 << 31 | (sizeof (hdr) - spc));
2416 i = 2;
2417 }
2418
2419 *mlx_seg_len =
2420 ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + sizeof (hdr), 16);
2421}
2422
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002423static void set_mlx_icrc_seg(void *dseg)
Roland Dreierd420d9e2007-07-18 11:46:27 -07002424{
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002425 u32 *t = dseg;
2426 struct mlx4_wqe_inline_seg *iseg = dseg;
2427
2428 t[1] = 0;
2429
2430 /*
2431 * Need a barrier here before writing the byte_count field to
2432 * make sure that all the data is visible before the
2433 * byte_count field is set. Otherwise, if the segment begins
2434 * a new cacheline, the HCA prefetcher could grab the 64-byte
2435 * chunk and get a valid (!= * 0xffffffff) byte count but
2436 * stale data, and end up sending the wrong data.
2437 */
2438 wmb();
2439
2440 iseg->byte_count = cpu_to_be32((1 << 31) | 4);
2441}
2442
2443static void set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg)
2444{
Roland Dreierd420d9e2007-07-18 11:46:27 -07002445 dseg->lkey = cpu_to_be32(sg->lkey);
2446 dseg->addr = cpu_to_be64(sg->addr);
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002447
2448 /*
2449 * Need a barrier here before writing the byte_count field to
2450 * make sure that all the data is visible before the
2451 * byte_count field is set. Otherwise, if the segment begins
2452 * a new cacheline, the HCA prefetcher could grab the 64-byte
2453 * chunk and get a valid (!= * 0xffffffff) byte count but
2454 * stale data, and end up sending the wrong data.
2455 */
2456 wmb();
2457
2458 dseg->byte_count = cpu_to_be32(sg->length);
Roland Dreierd420d9e2007-07-18 11:46:27 -07002459}
2460
Roland Dreier2242fa42007-10-09 19:59:05 -07002461static void __set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg)
2462{
2463 dseg->byte_count = cpu_to_be32(sg->length);
2464 dseg->lkey = cpu_to_be32(sg->lkey);
2465 dseg->addr = cpu_to_be64(sg->addr);
2466}
2467
Roland Dreier47b37472008-07-22 14:19:39 -07002468static int build_lso_seg(struct mlx4_wqe_lso_seg *wqe, struct ib_send_wr *wr,
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002469 struct mlx4_ib_qp *qp, unsigned *lso_seg_len,
Eli Cohen417608c2009-11-12 11:19:44 -08002470 __be32 *lso_hdr_sz, __be32 *blh)
Eli Cohenb832be12008-04-16 21:09:27 -07002471{
2472 unsigned halign = ALIGN(sizeof *wqe + wr->wr.ud.hlen, 16);
2473
Eli Cohen417608c2009-11-12 11:19:44 -08002474 if (unlikely(halign > MLX4_IB_CACHE_LINE_SIZE))
2475 *blh = cpu_to_be32(1 << 6);
Eli Cohenb832be12008-04-16 21:09:27 -07002476
2477 if (unlikely(!(qp->flags & MLX4_IB_QP_LSO) &&
2478 wr->num_sge > qp->sq.max_gs - (halign >> 4)))
2479 return -EINVAL;
2480
2481 memcpy(wqe->header, wr->wr.ud.header, wr->wr.ud.hlen);
2482
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002483 *lso_hdr_sz = cpu_to_be32((wr->wr.ud.mss - wr->wr.ud.hlen) << 16 |
2484 wr->wr.ud.hlen);
Eli Cohenb832be12008-04-16 21:09:27 -07002485 *lso_seg_len = halign;
2486 return 0;
2487}
2488
Roland Dreier95d04f02008-07-23 08:12:26 -07002489static __be32 send_ieth(struct ib_send_wr *wr)
2490{
2491 switch (wr->opcode) {
2492 case IB_WR_SEND_WITH_IMM:
2493 case IB_WR_RDMA_WRITE_WITH_IMM:
2494 return wr->ex.imm_data;
2495
2496 case IB_WR_SEND_WITH_INV:
2497 return cpu_to_be32(wr->ex.invalidate_rkey);
2498
2499 default:
2500 return 0;
2501 }
2502}
2503
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002504static void add_zero_len_inline(void *wqe)
2505{
2506 struct mlx4_wqe_inline_seg *inl = wqe;
2507 memset(wqe, 0, 16);
2508 inl->byte_count = cpu_to_be32(1 << 31);
2509}
2510
Roland Dreier225c7b12007-05-08 18:00:38 -07002511int mlx4_ib_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
2512 struct ib_send_wr **bad_wr)
2513{
2514 struct mlx4_ib_qp *qp = to_mqp(ibqp);
2515 void *wqe;
2516 struct mlx4_wqe_ctrl_seg *ctrl;
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002517 struct mlx4_wqe_data_seg *dseg;
Roland Dreier225c7b12007-05-08 18:00:38 -07002518 unsigned long flags;
2519 int nreq;
2520 int err = 0;
Jack Morgensteinea54b102008-01-28 10:40:59 +02002521 unsigned ind;
2522 int uninitialized_var(stamp);
2523 int uninitialized_var(size);
Andrew Mortona3d8e152008-05-16 14:28:30 -07002524 unsigned uninitialized_var(seglen);
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002525 __be32 dummy;
2526 __be32 *lso_wqe;
2527 __be32 uninitialized_var(lso_hdr_sz);
Eli Cohen417608c2009-11-12 11:19:44 -08002528 __be32 blh;
Roland Dreier225c7b12007-05-08 18:00:38 -07002529 int i;
2530
Roland Dreier96db0e02007-10-30 10:53:54 -07002531 spin_lock_irqsave(&qp->sq.lock, flags);
Roland Dreier225c7b12007-05-08 18:00:38 -07002532
Jack Morgensteinea54b102008-01-28 10:40:59 +02002533 ind = qp->sq_next_wqe;
Roland Dreier225c7b12007-05-08 18:00:38 -07002534
2535 for (nreq = 0; wr; ++nreq, wr = wr->next) {
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002536 lso_wqe = &dummy;
Eli Cohen417608c2009-11-12 11:19:44 -08002537 blh = 0;
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002538
Roland Dreier225c7b12007-05-08 18:00:38 -07002539 if (mlx4_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
2540 err = -ENOMEM;
2541 *bad_wr = wr;
2542 goto out;
2543 }
2544
2545 if (unlikely(wr->num_sge > qp->sq.max_gs)) {
2546 err = -EINVAL;
2547 *bad_wr = wr;
2548 goto out;
2549 }
2550
Roland Dreier0e6e7412007-06-18 08:13:48 -07002551 ctrl = wqe = get_send_wqe(qp, ind & (qp->sq.wqe_cnt - 1));
Jack Morgensteinea54b102008-01-28 10:40:59 +02002552 qp->sq.wrid[(qp->sq.head + nreq) & (qp->sq.wqe_cnt - 1)] = wr->wr_id;
Roland Dreier225c7b12007-05-08 18:00:38 -07002553
2554 ctrl->srcrb_flags =
2555 (wr->send_flags & IB_SEND_SIGNALED ?
2556 cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE) : 0) |
2557 (wr->send_flags & IB_SEND_SOLICITED ?
2558 cpu_to_be32(MLX4_WQE_CTRL_SOLICITED) : 0) |
Eli Cohen8ff095e2008-04-16 21:01:10 -07002559 ((wr->send_flags & IB_SEND_IP_CSUM) ?
2560 cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM |
2561 MLX4_WQE_CTRL_TCP_UDP_CSUM) : 0) |
Roland Dreier225c7b12007-05-08 18:00:38 -07002562 qp->sq_signal_bits;
2563
Roland Dreier95d04f02008-07-23 08:12:26 -07002564 ctrl->imm = send_ieth(wr);
Roland Dreier225c7b12007-05-08 18:00:38 -07002565
2566 wqe += sizeof *ctrl;
2567 size = sizeof *ctrl / 16;
2568
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002569 switch (qp->mlx4_ib_qp_type) {
2570 case MLX4_IB_QPT_RC:
2571 case MLX4_IB_QPT_UC:
Roland Dreier225c7b12007-05-08 18:00:38 -07002572 switch (wr->opcode) {
2573 case IB_WR_ATOMIC_CMP_AND_SWP:
2574 case IB_WR_ATOMIC_FETCH_AND_ADD:
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002575 case IB_WR_MASKED_ATOMIC_FETCH_AND_ADD:
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002576 set_raddr_seg(wqe, wr->wr.atomic.remote_addr,
2577 wr->wr.atomic.rkey);
Roland Dreier225c7b12007-05-08 18:00:38 -07002578 wqe += sizeof (struct mlx4_wqe_raddr_seg);
2579
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002580 set_atomic_seg(wqe, wr);
Roland Dreier225c7b12007-05-08 18:00:38 -07002581 wqe += sizeof (struct mlx4_wqe_atomic_seg);
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002582
Roland Dreier225c7b12007-05-08 18:00:38 -07002583 size += (sizeof (struct mlx4_wqe_raddr_seg) +
2584 sizeof (struct mlx4_wqe_atomic_seg)) / 16;
2585
2586 break;
2587
Vladimir Sokolovsky6fa8f712010-04-14 17:23:39 +03002588 case IB_WR_MASKED_ATOMIC_CMP_AND_SWP:
2589 set_raddr_seg(wqe, wr->wr.atomic.remote_addr,
2590 wr->wr.atomic.rkey);
2591 wqe += sizeof (struct mlx4_wqe_raddr_seg);
2592
2593 set_masked_atomic_seg(wqe, wr);
2594 wqe += sizeof (struct mlx4_wqe_masked_atomic_seg);
2595
2596 size += (sizeof (struct mlx4_wqe_raddr_seg) +
2597 sizeof (struct mlx4_wqe_masked_atomic_seg)) / 16;
2598
2599 break;
2600
Roland Dreier225c7b12007-05-08 18:00:38 -07002601 case IB_WR_RDMA_READ:
2602 case IB_WR_RDMA_WRITE:
2603 case IB_WR_RDMA_WRITE_WITH_IMM:
Roland Dreier0fbfa6a92007-07-18 11:47:55 -07002604 set_raddr_seg(wqe, wr->wr.rdma.remote_addr,
2605 wr->wr.rdma.rkey);
Roland Dreier225c7b12007-05-08 18:00:38 -07002606 wqe += sizeof (struct mlx4_wqe_raddr_seg);
2607 size += sizeof (struct mlx4_wqe_raddr_seg) / 16;
Roland Dreier225c7b12007-05-08 18:00:38 -07002608 break;
2609
Roland Dreier95d04f02008-07-23 08:12:26 -07002610 case IB_WR_LOCAL_INV:
Jack Morgenstein2ac6bf42009-06-05 10:36:24 -07002611 ctrl->srcrb_flags |=
2612 cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
Roland Dreier95d04f02008-07-23 08:12:26 -07002613 set_local_inv_seg(wqe, wr->ex.invalidate_rkey);
2614 wqe += sizeof (struct mlx4_wqe_local_inval_seg);
2615 size += sizeof (struct mlx4_wqe_local_inval_seg) / 16;
2616 break;
2617
2618 case IB_WR_FAST_REG_MR:
Jack Morgenstein2ac6bf42009-06-05 10:36:24 -07002619 ctrl->srcrb_flags |=
2620 cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
Roland Dreier95d04f02008-07-23 08:12:26 -07002621 set_fmr_seg(wqe, wr);
2622 wqe += sizeof (struct mlx4_wqe_fmr_seg);
2623 size += sizeof (struct mlx4_wqe_fmr_seg) / 16;
2624 break;
2625
Shani Michaeli6ff63e12013-02-06 16:19:15 +00002626 case IB_WR_BIND_MW:
2627 ctrl->srcrb_flags |=
2628 cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
2629 set_bind_seg(wqe, wr);
2630 wqe += sizeof(struct mlx4_wqe_bind_seg);
2631 size += sizeof(struct mlx4_wqe_bind_seg) / 16;
2632 break;
Roland Dreier225c7b12007-05-08 18:00:38 -07002633 default:
2634 /* No extra segments required for sends */
2635 break;
2636 }
2637 break;
2638
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002639 case MLX4_IB_QPT_TUN_SMI_OWNER:
2640 err = build_sriov_qp0_header(to_msqp(qp), wr, ctrl, &seglen);
2641 if (unlikely(err)) {
2642 *bad_wr = wr;
2643 goto out;
2644 }
2645 wqe += seglen;
2646 size += seglen / 16;
2647 break;
2648 case MLX4_IB_QPT_TUN_SMI:
2649 case MLX4_IB_QPT_TUN_GSI:
2650 /* this is a UD qp used in MAD responses to slaves. */
2651 set_datagram_seg(wqe, wr);
2652 /* set the forced-loopback bit in the data seg av */
2653 *(__be32 *) wqe |= cpu_to_be32(0x80000000);
2654 wqe += sizeof (struct mlx4_wqe_datagram_seg);
2655 size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
2656 break;
2657 case MLX4_IB_QPT_UD:
Or Gerlitz80a2dcd2011-10-10 10:54:42 +02002658 set_datagram_seg(wqe, wr);
Roland Dreier225c7b12007-05-08 18:00:38 -07002659 wqe += sizeof (struct mlx4_wqe_datagram_seg);
2660 size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
Eli Cohenb832be12008-04-16 21:09:27 -07002661
2662 if (wr->opcode == IB_WR_LSO) {
Eli Cohen417608c2009-11-12 11:19:44 -08002663 err = build_lso_seg(wqe, wr, qp, &seglen, &lso_hdr_sz, &blh);
Eli Cohenb832be12008-04-16 21:09:27 -07002664 if (unlikely(err)) {
2665 *bad_wr = wr;
2666 goto out;
2667 }
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002668 lso_wqe = (__be32 *) wqe;
Eli Cohenb832be12008-04-16 21:09:27 -07002669 wqe += seglen;
2670 size += seglen / 16;
2671 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002672 break;
2673
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002674 case MLX4_IB_QPT_PROXY_SMI_OWNER:
2675 if (unlikely(!mlx4_is_master(to_mdev(ibqp->device)->dev))) {
2676 err = -ENOSYS;
2677 *bad_wr = wr;
2678 goto out;
2679 }
2680 err = build_sriov_qp0_header(to_msqp(qp), wr, ctrl, &seglen);
2681 if (unlikely(err)) {
2682 *bad_wr = wr;
2683 goto out;
2684 }
2685 wqe += seglen;
2686 size += seglen / 16;
2687 /* to start tunnel header on a cache-line boundary */
2688 add_zero_len_inline(wqe);
2689 wqe += 16;
2690 size++;
2691 build_tunnel_header(wr, wqe, &seglen);
2692 wqe += seglen;
2693 size += seglen / 16;
2694 break;
2695 case MLX4_IB_QPT_PROXY_SMI:
2696 /* don't allow QP0 sends on guests */
2697 err = -ENOSYS;
2698 *bad_wr = wr;
2699 goto out;
2700 case MLX4_IB_QPT_PROXY_GSI:
2701 /* If we are tunneling special qps, this is a UD qp.
2702 * In this case we first add a UD segment targeting
2703 * the tunnel qp, and then add a header with address
2704 * information */
2705 set_tunnel_datagram_seg(to_mdev(ibqp->device), wqe, wr, ibqp->qp_type);
2706 wqe += sizeof (struct mlx4_wqe_datagram_seg);
2707 size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
2708 build_tunnel_header(wr, wqe, &seglen);
2709 wqe += seglen;
2710 size += seglen / 16;
2711 break;
2712
2713 case MLX4_IB_QPT_SMI:
2714 case MLX4_IB_QPT_GSI:
Roland Dreierf4380002008-04-16 21:09:28 -07002715 err = build_mlx_header(to_msqp(qp), wr, ctrl, &seglen);
2716 if (unlikely(err)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002717 *bad_wr = wr;
2718 goto out;
2719 }
Roland Dreierf4380002008-04-16 21:09:28 -07002720 wqe += seglen;
2721 size += seglen / 16;
Roland Dreier225c7b12007-05-08 18:00:38 -07002722 break;
2723
2724 default:
2725 break;
2726 }
2727
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002728 /*
2729 * Write data segments in reverse order, so as to
2730 * overwrite cacheline stamp last within each
2731 * cacheline. This avoids issues with WQE
2732 * prefetching.
2733 */
Roland Dreier225c7b12007-05-08 18:00:38 -07002734
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002735 dseg = wqe;
2736 dseg += wr->num_sge - 1;
2737 size += wr->num_sge * (sizeof (struct mlx4_wqe_data_seg) / 16);
Roland Dreier225c7b12007-05-08 18:00:38 -07002738
2739 /* Add one more inline data segment for ICRC for MLX sends */
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002740 if (unlikely(qp->mlx4_ib_qp_type == MLX4_IB_QPT_SMI ||
2741 qp->mlx4_ib_qp_type == MLX4_IB_QPT_GSI ||
2742 qp->mlx4_ib_qp_type &
2743 (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER))) {
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002744 set_mlx_icrc_seg(dseg + 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07002745 size += sizeof (struct mlx4_wqe_data_seg) / 16;
2746 }
2747
Jack Morgenstein6e694ea2007-09-19 09:52:25 -07002748 for (i = wr->num_sge - 1; i >= 0; --i, --dseg)
2749 set_data_seg(dseg, wr->sg_list + i);
2750
Roland Dreier0fd7e1d2009-01-16 12:47:47 -08002751 /*
2752 * Possibly overwrite stamping in cacheline with LSO
2753 * segment only after making sure all data segments
2754 * are written.
2755 */
2756 wmb();
2757 *lso_wqe = lso_hdr_sz;
2758
Roland Dreier225c7b12007-05-08 18:00:38 -07002759 ctrl->fence_size = (wr->send_flags & IB_SEND_FENCE ?
2760 MLX4_WQE_CTRL_FENCE : 0) | size;
2761
2762 /*
2763 * Make sure descriptor is fully written before
2764 * setting ownership bit (because HW can start
2765 * executing as soon as we do).
2766 */
2767 wmb();
2768
Roland Dreier59b0ed122007-05-19 08:51:58 -07002769 if (wr->opcode < 0 || wr->opcode >= ARRAY_SIZE(mlx4_ib_opcode)) {
Eli Cohen4ba6b8e2012-02-09 18:52:50 +02002770 *bad_wr = wr;
Roland Dreier225c7b12007-05-08 18:00:38 -07002771 err = -EINVAL;
2772 goto out;
2773 }
2774
2775 ctrl->owner_opcode = mlx4_ib_opcode[wr->opcode] |
Eli Cohen417608c2009-11-12 11:19:44 -08002776 (ind & qp->sq.wqe_cnt ? cpu_to_be32(1 << 31) : 0) | blh;
Roland Dreier0e6e7412007-06-18 08:13:48 -07002777
Jack Morgensteinea54b102008-01-28 10:40:59 +02002778 stamp = ind + qp->sq_spare_wqes;
2779 ind += DIV_ROUND_UP(size * 16, 1U << qp->sq.wqe_shift);
2780
Roland Dreier0e6e7412007-06-18 08:13:48 -07002781 /*
2782 * We can improve latency by not stamping the last
2783 * send queue WQE until after ringing the doorbell, so
2784 * only stamp here if there are still more WQEs to post.
Jack Morgensteinea54b102008-01-28 10:40:59 +02002785 *
2786 * Same optimization applies to padding with NOP wqe
2787 * in case of WQE shrinking (used to prevent wrap-around
2788 * in the middle of WR).
Roland Dreier0e6e7412007-06-18 08:13:48 -07002789 */
Jack Morgensteinea54b102008-01-28 10:40:59 +02002790 if (wr->next) {
2791 stamp_send_wqe(qp, stamp, size * 16);
2792 ind = pad_wraparound(qp, ind);
2793 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002794 }
2795
2796out:
2797 if (likely(nreq)) {
2798 qp->sq.head += nreq;
2799
2800 /*
2801 * Make sure that descriptors are written before
2802 * doorbell record.
2803 */
2804 wmb();
2805
2806 writel(qp->doorbell_qpn,
2807 to_mdev(ibqp->device)->uar_map + MLX4_SEND_DOORBELL);
2808
2809 /*
2810 * Make sure doorbells don't leak out of SQ spinlock
2811 * and reach the HCA out of order.
2812 */
2813 mmiowb();
Roland Dreier0e6e7412007-06-18 08:13:48 -07002814
Jack Morgensteinea54b102008-01-28 10:40:59 +02002815 stamp_send_wqe(qp, stamp, size * 16);
2816
2817 ind = pad_wraparound(qp, ind);
2818 qp->sq_next_wqe = ind;
Roland Dreier225c7b12007-05-08 18:00:38 -07002819 }
2820
Roland Dreier96db0e02007-10-30 10:53:54 -07002821 spin_unlock_irqrestore(&qp->sq.lock, flags);
Roland Dreier225c7b12007-05-08 18:00:38 -07002822
2823 return err;
2824}
2825
2826int mlx4_ib_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr,
2827 struct ib_recv_wr **bad_wr)
2828{
2829 struct mlx4_ib_qp *qp = to_mqp(ibqp);
2830 struct mlx4_wqe_data_seg *scat;
2831 unsigned long flags;
2832 int err = 0;
2833 int nreq;
2834 int ind;
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002835 int max_gs;
Roland Dreier225c7b12007-05-08 18:00:38 -07002836 int i;
2837
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002838 max_gs = qp->rq.max_gs;
Roland Dreier225c7b12007-05-08 18:00:38 -07002839 spin_lock_irqsave(&qp->rq.lock, flags);
2840
Roland Dreier0e6e7412007-06-18 08:13:48 -07002841 ind = qp->rq.head & (qp->rq.wqe_cnt - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07002842
2843 for (nreq = 0; wr; ++nreq, wr = wr->next) {
Or Gerlitz2b946072010-01-06 12:51:30 -08002844 if (mlx4_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002845 err = -ENOMEM;
2846 *bad_wr = wr;
2847 goto out;
2848 }
2849
2850 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
2851 err = -EINVAL;
2852 *bad_wr = wr;
2853 goto out;
2854 }
2855
2856 scat = get_recv_wqe(qp, ind);
2857
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002858 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
2859 MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI)) {
2860 ib_dma_sync_single_for_device(ibqp->device,
2861 qp->sqp_proxy_rcv[ind].map,
2862 sizeof (struct mlx4_ib_proxy_sqp_hdr),
2863 DMA_FROM_DEVICE);
2864 scat->byte_count =
2865 cpu_to_be32(sizeof (struct mlx4_ib_proxy_sqp_hdr));
2866 /* use dma lkey from upper layer entry */
2867 scat->lkey = cpu_to_be32(wr->sg_list->lkey);
2868 scat->addr = cpu_to_be64(qp->sqp_proxy_rcv[ind].map);
2869 scat++;
2870 max_gs--;
2871 }
2872
Roland Dreier2242fa42007-10-09 19:59:05 -07002873 for (i = 0; i < wr->num_sge; ++i)
2874 __set_data_seg(scat + i, wr->sg_list + i);
Roland Dreier225c7b12007-05-08 18:00:38 -07002875
Jack Morgenstein1ffeb2e2012-08-03 08:40:40 +00002876 if (i < max_gs) {
Roland Dreier225c7b12007-05-08 18:00:38 -07002877 scat[i].byte_count = 0;
2878 scat[i].lkey = cpu_to_be32(MLX4_INVALID_LKEY);
2879 scat[i].addr = 0;
2880 }
2881
2882 qp->rq.wrid[ind] = wr->wr_id;
2883
Roland Dreier0e6e7412007-06-18 08:13:48 -07002884 ind = (ind + 1) & (qp->rq.wqe_cnt - 1);
Roland Dreier225c7b12007-05-08 18:00:38 -07002885 }
2886
2887out:
2888 if (likely(nreq)) {
2889 qp->rq.head += nreq;
2890
2891 /*
2892 * Make sure that descriptors are written before
2893 * doorbell record.
2894 */
2895 wmb();
2896
2897 *qp->db.db = cpu_to_be32(qp->rq.head & 0xffff);
2898 }
2899
2900 spin_unlock_irqrestore(&qp->rq.lock, flags);
2901
2902 return err;
2903}
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002904
2905static inline enum ib_qp_state to_ib_qp_state(enum mlx4_qp_state mlx4_state)
2906{
2907 switch (mlx4_state) {
2908 case MLX4_QP_STATE_RST: return IB_QPS_RESET;
2909 case MLX4_QP_STATE_INIT: return IB_QPS_INIT;
2910 case MLX4_QP_STATE_RTR: return IB_QPS_RTR;
2911 case MLX4_QP_STATE_RTS: return IB_QPS_RTS;
2912 case MLX4_QP_STATE_SQ_DRAINING:
2913 case MLX4_QP_STATE_SQD: return IB_QPS_SQD;
2914 case MLX4_QP_STATE_SQER: return IB_QPS_SQE;
2915 case MLX4_QP_STATE_ERR: return IB_QPS_ERR;
2916 default: return -1;
2917 }
2918}
2919
2920static inline enum ib_mig_state to_ib_mig_state(int mlx4_mig_state)
2921{
2922 switch (mlx4_mig_state) {
2923 case MLX4_QP_PM_ARMED: return IB_MIG_ARMED;
2924 case MLX4_QP_PM_REARM: return IB_MIG_REARM;
2925 case MLX4_QP_PM_MIGRATED: return IB_MIG_MIGRATED;
2926 default: return -1;
2927 }
2928}
2929
2930static int to_ib_qp_access_flags(int mlx4_flags)
2931{
2932 int ib_flags = 0;
2933
2934 if (mlx4_flags & MLX4_QP_BIT_RRE)
2935 ib_flags |= IB_ACCESS_REMOTE_READ;
2936 if (mlx4_flags & MLX4_QP_BIT_RWE)
2937 ib_flags |= IB_ACCESS_REMOTE_WRITE;
2938 if (mlx4_flags & MLX4_QP_BIT_RAE)
2939 ib_flags |= IB_ACCESS_REMOTE_ATOMIC;
2940
2941 return ib_flags;
2942}
2943
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002944static void to_ib_ah_attr(struct mlx4_ib_dev *ibdev, struct ib_ah_attr *ib_ah_attr,
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002945 struct mlx4_qp_path *path)
2946{
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002947 struct mlx4_dev *dev = ibdev->dev;
2948 int is_eth;
2949
Dotan Barak8fcea952007-07-15 15:00:09 +03002950 memset(ib_ah_attr, 0, sizeof *ib_ah_attr);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002951 ib_ah_attr->port_num = path->sched_queue & 0x40 ? 2 : 1;
2952
2953 if (ib_ah_attr->port_num == 0 || ib_ah_attr->port_num > dev->caps.num_ports)
2954 return;
2955
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03002956 is_eth = rdma_port_get_link_layer(&ibdev->ib_dev, ib_ah_attr->port_num) ==
2957 IB_LINK_LAYER_ETHERNET;
2958 if (is_eth)
2959 ib_ah_attr->sl = ((path->sched_queue >> 3) & 0x7) |
2960 ((path->sched_queue & 4) << 1);
2961 else
2962 ib_ah_attr->sl = (path->sched_queue >> 2) & 0xf;
2963
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002964 ib_ah_attr->dlid = be16_to_cpu(path->rlid);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002965 ib_ah_attr->src_path_bits = path->grh_mylmc & 0x7f;
2966 ib_ah_attr->static_rate = path->static_rate ? path->static_rate - 5 : 0;
2967 ib_ah_attr->ah_flags = (path->grh_mylmc & (1 << 7)) ? IB_AH_GRH : 0;
2968 if (ib_ah_attr->ah_flags) {
2969 ib_ah_attr->grh.sgid_index = path->mgid_index;
2970 ib_ah_attr->grh.hop_limit = path->hop_limit;
2971 ib_ah_attr->grh.traffic_class =
2972 (be32_to_cpu(path->tclass_flowlabel) >> 20) & 0xff;
2973 ib_ah_attr->grh.flow_label =
Jack Morgenstein586bb582007-07-17 18:37:38 -07002974 be32_to_cpu(path->tclass_flowlabel) & 0xfffff;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002975 memcpy(ib_ah_attr->grh.dgid.raw,
2976 path->rgid, sizeof ib_ah_attr->grh.dgid.raw);
2977 }
2978}
2979
2980int mlx4_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask,
2981 struct ib_qp_init_attr *qp_init_attr)
2982{
2983 struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
2984 struct mlx4_ib_qp *qp = to_mqp(ibqp);
2985 struct mlx4_qp_context context;
2986 int mlx4_state;
Dotan Barak0df670302008-04-16 21:09:34 -07002987 int err = 0;
2988
2989 mutex_lock(&qp->mutex);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03002990
2991 if (qp->state == IB_QPS_RESET) {
2992 qp_attr->qp_state = IB_QPS_RESET;
2993 goto done;
2994 }
2995
2996 err = mlx4_qp_query(dev->dev, &qp->mqp, &context);
Dotan Barak0df670302008-04-16 21:09:34 -07002997 if (err) {
2998 err = -EINVAL;
2999 goto out;
3000 }
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003001
3002 mlx4_state = be32_to_cpu(context.flags) >> 28;
3003
Dotan Barak0df670302008-04-16 21:09:34 -07003004 qp->state = to_ib_qp_state(mlx4_state);
3005 qp_attr->qp_state = qp->state;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003006 qp_attr->path_mtu = context.mtu_msgmax >> 5;
3007 qp_attr->path_mig_state =
3008 to_ib_mig_state((be32_to_cpu(context.flags) >> 11) & 0x3);
3009 qp_attr->qkey = be32_to_cpu(context.qkey);
3010 qp_attr->rq_psn = be32_to_cpu(context.rnr_nextrecvpsn) & 0xffffff;
3011 qp_attr->sq_psn = be32_to_cpu(context.next_send_psn) & 0xffffff;
3012 qp_attr->dest_qp_num = be32_to_cpu(context.remote_qpn) & 0xffffff;
3013 qp_attr->qp_access_flags =
3014 to_ib_qp_access_flags(be32_to_cpu(context.params2));
3015
3016 if (qp->ibqp.qp_type == IB_QPT_RC || qp->ibqp.qp_type == IB_QPT_UC) {
Eli Cohen4c3eb3c2010-08-26 17:19:22 +03003017 to_ib_ah_attr(dev, &qp_attr->ah_attr, &context.pri_path);
3018 to_ib_ah_attr(dev, &qp_attr->alt_ah_attr, &context.alt_path);
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003019 qp_attr->alt_pkey_index = context.alt_path.pkey_index & 0x7f;
3020 qp_attr->alt_port_num = qp_attr->alt_ah_attr.port_num;
3021 }
3022
3023 qp_attr->pkey_index = context.pri_path.pkey_index & 0x7f;
Jack Morgenstein1c27cb72007-07-17 18:37:38 -07003024 if (qp_attr->qp_state == IB_QPS_INIT)
3025 qp_attr->port_num = qp->port;
3026 else
3027 qp_attr->port_num = context.pri_path.sched_queue & 0x40 ? 2 : 1;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003028
3029 /* qp_attr->en_sqd_async_notify is only applicable in modify qp */
3030 qp_attr->sq_draining = mlx4_state == MLX4_QP_STATE_SQ_DRAINING;
3031
3032 qp_attr->max_rd_atomic = 1 << ((be32_to_cpu(context.params1) >> 21) & 0x7);
3033
3034 qp_attr->max_dest_rd_atomic =
3035 1 << ((be32_to_cpu(context.params2) >> 21) & 0x7);
3036 qp_attr->min_rnr_timer =
3037 (be32_to_cpu(context.rnr_nextrecvpsn) >> 24) & 0x1f;
3038 qp_attr->timeout = context.pri_path.ackto >> 3;
3039 qp_attr->retry_cnt = (be32_to_cpu(context.params1) >> 16) & 0x7;
3040 qp_attr->rnr_retry = (be32_to_cpu(context.params1) >> 13) & 0x7;
3041 qp_attr->alt_timeout = context.alt_path.ackto >> 3;
3042
3043done:
3044 qp_attr->cur_qp_state = qp_attr->qp_state;
Roland Dreier7f5eb9b2007-07-17 20:59:02 -07003045 qp_attr->cap.max_recv_wr = qp->rq.wqe_cnt;
3046 qp_attr->cap.max_recv_sge = qp->rq.max_gs;
3047
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003048 if (!ibqp->uobject) {
Roland Dreier7f5eb9b2007-07-17 20:59:02 -07003049 qp_attr->cap.max_send_wr = qp->sq.wqe_cnt;
3050 qp_attr->cap.max_send_sge = qp->sq.max_gs;
3051 } else {
3052 qp_attr->cap.max_send_wr = 0;
3053 qp_attr->cap.max_send_sge = 0;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003054 }
3055
Roland Dreier7f5eb9b2007-07-17 20:59:02 -07003056 /*
3057 * We don't support inline sends for kernel QPs (yet), and we
3058 * don't know what userspace's value should be.
3059 */
3060 qp_attr->cap.max_inline_data = 0;
3061
3062 qp_init_attr->cap = qp_attr->cap;
3063
Ron Livne521e5752008-07-14 23:48:48 -07003064 qp_init_attr->create_flags = 0;
3065 if (qp->flags & MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK)
3066 qp_init_attr->create_flags |= IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK;
3067
3068 if (qp->flags & MLX4_IB_QP_LSO)
3069 qp_init_attr->create_flags |= IB_QP_CREATE_IPOIB_UD_LSO;
3070
Matan Barakc1c98502013-11-07 15:25:17 +02003071 if (qp->flags & MLX4_IB_QP_NETIF)
3072 qp_init_attr->create_flags |= IB_QP_CREATE_NETIF_QP;
3073
Dotan Barak46db5672012-08-23 14:09:03 +00003074 qp_init_attr->sq_sig_type =
3075 qp->sq_signal_bits == cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE) ?
3076 IB_SIGNAL_ALL_WR : IB_SIGNAL_REQ_WR;
3077
Dotan Barak0df670302008-04-16 21:09:34 -07003078out:
3079 mutex_unlock(&qp->mutex);
3080 return err;
Jack Morgenstein6a775e22007-06-21 12:27:47 +03003081}
3082