GNU Linux-libre 4.9.309-gnu1
[releases.git] / drivers / infiniband / hw / mlx4 / qp.c
1 /*
2  * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
3  * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved.
4  *
5  * This software is available to you under a choice of one of two
6  * licenses.  You may choose to be licensed under the terms of the GNU
7  * General Public License (GPL) Version 2, available from the file
8  * COPYING in the main directory of this source tree, or the
9  * OpenIB.org BSD license below:
10  *
11  *     Redistribution and use in source and binary forms, with or
12  *     without modification, are permitted provided that the following
13  *     conditions are met:
14  *
15  *      - Redistributions of source code must retain the above
16  *        copyright notice, this list of conditions and the following
17  *        disclaimer.
18  *
19  *      - Redistributions in binary form must reproduce the above
20  *        copyright notice, this list of conditions and the following
21  *        disclaimer in the documentation and/or other materials
22  *        provided with the distribution.
23  *
24  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31  * SOFTWARE.
32  */
33
34 #include <linux/log2.h>
35 #include <linux/etherdevice.h>
36 #include <net/ip.h>
37 #include <linux/slab.h>
38 #include <linux/netdevice.h>
39 #include <linux/vmalloc.h>
40
41 #include <rdma/ib_cache.h>
42 #include <rdma/ib_pack.h>
43 #include <rdma/ib_addr.h>
44 #include <rdma/ib_mad.h>
45
46 #include <linux/mlx4/driver.h>
47 #include <linux/mlx4/qp.h>
48
49 #include "mlx4_ib.h"
50 #include <rdma/mlx4-abi.h>
51
52 static void mlx4_ib_lock_cqs(struct mlx4_ib_cq *send_cq,
53                              struct mlx4_ib_cq *recv_cq);
54 static void mlx4_ib_unlock_cqs(struct mlx4_ib_cq *send_cq,
55                                struct mlx4_ib_cq *recv_cq);
56
57 enum {
58         MLX4_IB_ACK_REQ_FREQ    = 8,
59 };
60
61 enum {
62         MLX4_IB_DEFAULT_SCHED_QUEUE     = 0x83,
63         MLX4_IB_DEFAULT_QP0_SCHED_QUEUE = 0x3f,
64         MLX4_IB_LINK_TYPE_IB            = 0,
65         MLX4_IB_LINK_TYPE_ETH           = 1
66 };
67
68 enum {
69         /*
70          * Largest possible UD header: send with GRH and immediate
71          * data plus 18 bytes for an Ethernet header with VLAN/802.1Q
72          * tag.  (LRH would only use 8 bytes, so Ethernet is the
73          * biggest case)
74          */
75         MLX4_IB_UD_HEADER_SIZE          = 82,
76         MLX4_IB_LSO_HEADER_SPARE        = 128,
77 };
78
79 enum {
80         MLX4_IB_IBOE_ETHERTYPE          = 0x8915
81 };
82
83 struct mlx4_ib_sqp {
84         struct mlx4_ib_qp       qp;
85         int                     pkey_index;
86         u32                     qkey;
87         u32                     send_psn;
88         struct ib_ud_header     ud_header;
89         u8                      header_buf[MLX4_IB_UD_HEADER_SIZE];
90         struct ib_qp            *roce_v2_gsi;
91 };
92
93 enum {
94         MLX4_IB_MIN_SQ_STRIDE   = 6,
95         MLX4_IB_CACHE_LINE_SIZE = 64,
96 };
97
98 enum {
99         MLX4_RAW_QP_MTU         = 7,
100         MLX4_RAW_QP_MSGMAX      = 31,
101 };
102
103 #ifndef ETH_ALEN
104 #define ETH_ALEN        6
105 #endif
106
107 static const __be32 mlx4_ib_opcode[] = {
108         [IB_WR_SEND]                            = cpu_to_be32(MLX4_OPCODE_SEND),
109         [IB_WR_LSO]                             = cpu_to_be32(MLX4_OPCODE_LSO),
110         [IB_WR_SEND_WITH_IMM]                   = cpu_to_be32(MLX4_OPCODE_SEND_IMM),
111         [IB_WR_RDMA_WRITE]                      = cpu_to_be32(MLX4_OPCODE_RDMA_WRITE),
112         [IB_WR_RDMA_WRITE_WITH_IMM]             = cpu_to_be32(MLX4_OPCODE_RDMA_WRITE_IMM),
113         [IB_WR_RDMA_READ]                       = cpu_to_be32(MLX4_OPCODE_RDMA_READ),
114         [IB_WR_ATOMIC_CMP_AND_SWP]              = cpu_to_be32(MLX4_OPCODE_ATOMIC_CS),
115         [IB_WR_ATOMIC_FETCH_AND_ADD]            = cpu_to_be32(MLX4_OPCODE_ATOMIC_FA),
116         [IB_WR_SEND_WITH_INV]                   = cpu_to_be32(MLX4_OPCODE_SEND_INVAL),
117         [IB_WR_LOCAL_INV]                       = cpu_to_be32(MLX4_OPCODE_LOCAL_INVAL),
118         [IB_WR_REG_MR]                          = cpu_to_be32(MLX4_OPCODE_FMR),
119         [IB_WR_MASKED_ATOMIC_CMP_AND_SWP]       = cpu_to_be32(MLX4_OPCODE_MASKED_ATOMIC_CS),
120         [IB_WR_MASKED_ATOMIC_FETCH_AND_ADD]     = cpu_to_be32(MLX4_OPCODE_MASKED_ATOMIC_FA),
121 };
122
123 static struct mlx4_ib_sqp *to_msqp(struct mlx4_ib_qp *mqp)
124 {
125         return container_of(mqp, struct mlx4_ib_sqp, qp);
126 }
127
128 static int is_tunnel_qp(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
129 {
130         if (!mlx4_is_master(dev->dev))
131                 return 0;
132
133         return qp->mqp.qpn >= dev->dev->phys_caps.base_tunnel_sqpn &&
134                qp->mqp.qpn < dev->dev->phys_caps.base_tunnel_sqpn +
135                 8 * MLX4_MFUNC_MAX;
136 }
137
138 static int is_sqp(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
139 {
140         int proxy_sqp = 0;
141         int real_sqp = 0;
142         int i;
143         /* PPF or Native -- real SQP */
144         real_sqp = ((mlx4_is_master(dev->dev) || !mlx4_is_mfunc(dev->dev)) &&
145                     qp->mqp.qpn >= dev->dev->phys_caps.base_sqpn &&
146                     qp->mqp.qpn <= dev->dev->phys_caps.base_sqpn + 3);
147         if (real_sqp)
148                 return 1;
149         /* VF or PF -- proxy SQP */
150         if (mlx4_is_mfunc(dev->dev)) {
151                 for (i = 0; i < dev->dev->caps.num_ports; i++) {
152                         if (qp->mqp.qpn == dev->dev->caps.qp0_proxy[i] ||
153                             qp->mqp.qpn == dev->dev->caps.qp1_proxy[i]) {
154                                 proxy_sqp = 1;
155                                 break;
156                         }
157                 }
158         }
159         if (proxy_sqp)
160                 return 1;
161
162         return !!(qp->flags & MLX4_IB_ROCE_V2_GSI_QP);
163 }
164
165 /* used for INIT/CLOSE port logic */
166 static int is_qp0(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
167 {
168         int proxy_qp0 = 0;
169         int real_qp0 = 0;
170         int i;
171         /* PPF or Native -- real QP0 */
172         real_qp0 = ((mlx4_is_master(dev->dev) || !mlx4_is_mfunc(dev->dev)) &&
173                     qp->mqp.qpn >= dev->dev->phys_caps.base_sqpn &&
174                     qp->mqp.qpn <= dev->dev->phys_caps.base_sqpn + 1);
175         if (real_qp0)
176                 return 1;
177         /* VF or PF -- proxy QP0 */
178         if (mlx4_is_mfunc(dev->dev)) {
179                 for (i = 0; i < dev->dev->caps.num_ports; i++) {
180                         if (qp->mqp.qpn == dev->dev->caps.qp0_proxy[i]) {
181                                 proxy_qp0 = 1;
182                                 break;
183                         }
184                 }
185         }
186         return proxy_qp0;
187 }
188
189 static void *get_wqe(struct mlx4_ib_qp *qp, int offset)
190 {
191         return mlx4_buf_offset(&qp->buf, offset);
192 }
193
194 static void *get_recv_wqe(struct mlx4_ib_qp *qp, int n)
195 {
196         return get_wqe(qp, qp->rq.offset + (n << qp->rq.wqe_shift));
197 }
198
199 static void *get_send_wqe(struct mlx4_ib_qp *qp, int n)
200 {
201         return get_wqe(qp, qp->sq.offset + (n << qp->sq.wqe_shift));
202 }
203
204 /*
205  * Stamp a SQ WQE so that it is invalid if prefetched by marking the
206  * first four bytes of every 64 byte chunk with
207  *     0x7FFFFFF | (invalid_ownership_value << 31).
208  *
209  * When the max work request size is less than or equal to the WQE
210  * basic block size, as an optimization, we can stamp all WQEs with
211  * 0xffffffff, and skip the very first chunk of each WQE.
212  */
213 static void stamp_send_wqe(struct mlx4_ib_qp *qp, int n, int size)
214 {
215         __be32 *wqe;
216         int i;
217         int s;
218         int ind;
219         void *buf;
220         __be32 stamp;
221         struct mlx4_wqe_ctrl_seg *ctrl;
222
223         if (qp->sq_max_wqes_per_wr > 1) {
224                 s = roundup(size, 1U << qp->sq.wqe_shift);
225                 for (i = 0; i < s; i += 64) {
226                         ind = (i >> qp->sq.wqe_shift) + n;
227                         stamp = ind & qp->sq.wqe_cnt ? cpu_to_be32(0x7fffffff) :
228                                                        cpu_to_be32(0xffffffff);
229                         buf = get_send_wqe(qp, ind & (qp->sq.wqe_cnt - 1));
230                         wqe = buf + (i & ((1 << qp->sq.wqe_shift) - 1));
231                         *wqe = stamp;
232                 }
233         } else {
234                 ctrl = buf = get_send_wqe(qp, n & (qp->sq.wqe_cnt - 1));
235                 s = (ctrl->qpn_vlan.fence_size & 0x3f) << 4;
236                 for (i = 64; i < s; i += 64) {
237                         wqe = buf + i;
238                         *wqe = cpu_to_be32(0xffffffff);
239                 }
240         }
241 }
242
243 static void post_nop_wqe(struct mlx4_ib_qp *qp, int n, int size)
244 {
245         struct mlx4_wqe_ctrl_seg *ctrl;
246         struct mlx4_wqe_inline_seg *inl;
247         void *wqe;
248         int s;
249
250         ctrl = wqe = get_send_wqe(qp, n & (qp->sq.wqe_cnt - 1));
251         s = sizeof(struct mlx4_wqe_ctrl_seg);
252
253         if (qp->ibqp.qp_type == IB_QPT_UD) {
254                 struct mlx4_wqe_datagram_seg *dgram = wqe + sizeof *ctrl;
255                 struct mlx4_av *av = (struct mlx4_av *)dgram->av;
256                 memset(dgram, 0, sizeof *dgram);
257                 av->port_pd = cpu_to_be32((qp->port << 24) | to_mpd(qp->ibqp.pd)->pdn);
258                 s += sizeof(struct mlx4_wqe_datagram_seg);
259         }
260
261         /* Pad the remainder of the WQE with an inline data segment. */
262         if (size > s) {
263                 inl = wqe + s;
264                 inl->byte_count = cpu_to_be32(1 << 31 | (size - s - sizeof *inl));
265         }
266         ctrl->srcrb_flags = 0;
267         ctrl->qpn_vlan.fence_size = size / 16;
268         /*
269          * Make sure descriptor is fully written before setting ownership bit
270          * (because HW can start executing as soon as we do).
271          */
272         wmb();
273
274         ctrl->owner_opcode = cpu_to_be32(MLX4_OPCODE_NOP | MLX4_WQE_CTRL_NEC) |
275                 (n & qp->sq.wqe_cnt ? cpu_to_be32(1 << 31) : 0);
276
277         stamp_send_wqe(qp, n + qp->sq_spare_wqes, size);
278 }
279
280 /* Post NOP WQE to prevent wrap-around in the middle of WR */
281 static inline unsigned pad_wraparound(struct mlx4_ib_qp *qp, int ind)
282 {
283         unsigned s = qp->sq.wqe_cnt - (ind & (qp->sq.wqe_cnt - 1));
284         if (unlikely(s < qp->sq_max_wqes_per_wr)) {
285                 post_nop_wqe(qp, ind, s << qp->sq.wqe_shift);
286                 ind += s;
287         }
288         return ind;
289 }
290
291 static void mlx4_ib_qp_event(struct mlx4_qp *qp, enum mlx4_event type)
292 {
293         struct ib_event event;
294         struct ib_qp *ibqp = &to_mibqp(qp)->ibqp;
295
296         if (type == MLX4_EVENT_TYPE_PATH_MIG)
297                 to_mibqp(qp)->port = to_mibqp(qp)->alt_port;
298
299         if (ibqp->event_handler) {
300                 event.device     = ibqp->device;
301                 event.element.qp = ibqp;
302                 switch (type) {
303                 case MLX4_EVENT_TYPE_PATH_MIG:
304                         event.event = IB_EVENT_PATH_MIG;
305                         break;
306                 case MLX4_EVENT_TYPE_COMM_EST:
307                         event.event = IB_EVENT_COMM_EST;
308                         break;
309                 case MLX4_EVENT_TYPE_SQ_DRAINED:
310                         event.event = IB_EVENT_SQ_DRAINED;
311                         break;
312                 case MLX4_EVENT_TYPE_SRQ_QP_LAST_WQE:
313                         event.event = IB_EVENT_QP_LAST_WQE_REACHED;
314                         break;
315                 case MLX4_EVENT_TYPE_WQ_CATAS_ERROR:
316                         event.event = IB_EVENT_QP_FATAL;
317                         break;
318                 case MLX4_EVENT_TYPE_PATH_MIG_FAILED:
319                         event.event = IB_EVENT_PATH_MIG_ERR;
320                         break;
321                 case MLX4_EVENT_TYPE_WQ_INVAL_REQ_ERROR:
322                         event.event = IB_EVENT_QP_REQ_ERR;
323                         break;
324                 case MLX4_EVENT_TYPE_WQ_ACCESS_ERROR:
325                         event.event = IB_EVENT_QP_ACCESS_ERR;
326                         break;
327                 default:
328                         pr_warn("Unexpected event type %d "
329                                "on QP %06x\n", type, qp->qpn);
330                         return;
331                 }
332
333                 ibqp->event_handler(&event, ibqp->qp_context);
334         }
335 }
336
337 static int send_wqe_overhead(enum mlx4_ib_qp_type type, u32 flags)
338 {
339         /*
340          * UD WQEs must have a datagram segment.
341          * RC and UC WQEs might have a remote address segment.
342          * MLX WQEs need two extra inline data segments (for the UD
343          * header and space for the ICRC).
344          */
345         switch (type) {
346         case MLX4_IB_QPT_UD:
347                 return sizeof (struct mlx4_wqe_ctrl_seg) +
348                         sizeof (struct mlx4_wqe_datagram_seg) +
349                         ((flags & MLX4_IB_QP_LSO) ? MLX4_IB_LSO_HEADER_SPARE : 0);
350         case MLX4_IB_QPT_PROXY_SMI_OWNER:
351         case MLX4_IB_QPT_PROXY_SMI:
352         case MLX4_IB_QPT_PROXY_GSI:
353                 return sizeof (struct mlx4_wqe_ctrl_seg) +
354                         sizeof (struct mlx4_wqe_datagram_seg) + 64;
355         case MLX4_IB_QPT_TUN_SMI_OWNER:
356         case MLX4_IB_QPT_TUN_GSI:
357                 return sizeof (struct mlx4_wqe_ctrl_seg) +
358                         sizeof (struct mlx4_wqe_datagram_seg);
359
360         case MLX4_IB_QPT_UC:
361                 return sizeof (struct mlx4_wqe_ctrl_seg) +
362                         sizeof (struct mlx4_wqe_raddr_seg);
363         case MLX4_IB_QPT_RC:
364                 return sizeof (struct mlx4_wqe_ctrl_seg) +
365                         sizeof (struct mlx4_wqe_masked_atomic_seg) +
366                         sizeof (struct mlx4_wqe_raddr_seg);
367         case MLX4_IB_QPT_SMI:
368         case MLX4_IB_QPT_GSI:
369                 return sizeof (struct mlx4_wqe_ctrl_seg) +
370                         ALIGN(MLX4_IB_UD_HEADER_SIZE +
371                               DIV_ROUND_UP(MLX4_IB_UD_HEADER_SIZE,
372                                            MLX4_INLINE_ALIGN) *
373                               sizeof (struct mlx4_wqe_inline_seg),
374                               sizeof (struct mlx4_wqe_data_seg)) +
375                         ALIGN(4 +
376                               sizeof (struct mlx4_wqe_inline_seg),
377                               sizeof (struct mlx4_wqe_data_seg));
378         default:
379                 return sizeof (struct mlx4_wqe_ctrl_seg);
380         }
381 }
382
383 static int set_rq_size(struct mlx4_ib_dev *dev, struct ib_qp_cap *cap,
384                        int is_user, int has_rq, struct mlx4_ib_qp *qp)
385 {
386         /* Sanity check RQ size before proceeding */
387         if (cap->max_recv_wr > dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE ||
388             cap->max_recv_sge > min(dev->dev->caps.max_sq_sg, dev->dev->caps.max_rq_sg))
389                 return -EINVAL;
390
391         if (!has_rq) {
392                 if (cap->max_recv_wr)
393                         return -EINVAL;
394
395                 qp->rq.wqe_cnt = qp->rq.max_gs = 0;
396         } else {
397                 /* HW requires >= 1 RQ entry with >= 1 gather entry */
398                 if (is_user && (!cap->max_recv_wr || !cap->max_recv_sge))
399                         return -EINVAL;
400
401                 qp->rq.wqe_cnt   = roundup_pow_of_two(max(1U, cap->max_recv_wr));
402                 qp->rq.max_gs    = roundup_pow_of_two(max(1U, cap->max_recv_sge));
403                 qp->rq.wqe_shift = ilog2(qp->rq.max_gs * sizeof (struct mlx4_wqe_data_seg));
404         }
405
406         /* leave userspace return values as they were, so as not to break ABI */
407         if (is_user) {
408                 cap->max_recv_wr  = qp->rq.max_post = qp->rq.wqe_cnt;
409                 cap->max_recv_sge = qp->rq.max_gs;
410         } else {
411                 cap->max_recv_wr  = qp->rq.max_post =
412                         min(dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE, qp->rq.wqe_cnt);
413                 cap->max_recv_sge = min(qp->rq.max_gs,
414                                         min(dev->dev->caps.max_sq_sg,
415                                             dev->dev->caps.max_rq_sg));
416         }
417
418         return 0;
419 }
420
421 static int set_kernel_sq_size(struct mlx4_ib_dev *dev, struct ib_qp_cap *cap,
422                               enum mlx4_ib_qp_type type, struct mlx4_ib_qp *qp,
423                               bool shrink_wqe)
424 {
425         int s;
426
427         /* Sanity check SQ size before proceeding */
428         if (cap->max_send_wr  > (dev->dev->caps.max_wqes - MLX4_IB_SQ_MAX_SPARE) ||
429             cap->max_send_sge > min(dev->dev->caps.max_sq_sg, dev->dev->caps.max_rq_sg) ||
430             cap->max_inline_data + send_wqe_overhead(type, qp->flags) +
431             sizeof (struct mlx4_wqe_inline_seg) > dev->dev->caps.max_sq_desc_sz)
432                 return -EINVAL;
433
434         /*
435          * For MLX transport we need 2 extra S/G entries:
436          * one for the header and one for the checksum at the end
437          */
438         if ((type == MLX4_IB_QPT_SMI || type == MLX4_IB_QPT_GSI ||
439              type & (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER)) &&
440             cap->max_send_sge + 2 > dev->dev->caps.max_sq_sg)
441                 return -EINVAL;
442
443         s = max(cap->max_send_sge * sizeof (struct mlx4_wqe_data_seg),
444                 cap->max_inline_data + sizeof (struct mlx4_wqe_inline_seg)) +
445                 send_wqe_overhead(type, qp->flags);
446
447         if (s > dev->dev->caps.max_sq_desc_sz)
448                 return -EINVAL;
449
450         /*
451          * Hermon supports shrinking WQEs, such that a single work
452          * request can include multiple units of 1 << wqe_shift.  This
453          * way, work requests can differ in size, and do not have to
454          * be a power of 2 in size, saving memory and speeding up send
455          * WR posting.  Unfortunately, if we do this then the
456          * wqe_index field in CQEs can't be used to look up the WR ID
457          * anymore, so we do this only if selective signaling is off.
458          *
459          * Further, on 32-bit platforms, we can't use vmap() to make
460          * the QP buffer virtually contiguous.  Thus we have to use
461          * constant-sized WRs to make sure a WR is always fully within
462          * a single page-sized chunk.
463          *
464          * Finally, we use NOP work requests to pad the end of the
465          * work queue, to avoid wrap-around in the middle of WR.  We
466          * set NEC bit to avoid getting completions with error for
467          * these NOP WRs, but since NEC is only supported starting
468          * with firmware 2.2.232, we use constant-sized WRs for older
469          * firmware.
470          *
471          * And, since MLX QPs only support SEND, we use constant-sized
472          * WRs in this case.
473          *
474          * We look for the smallest value of wqe_shift such that the
475          * resulting number of wqes does not exceed device
476          * capabilities.
477          *
478          * We set WQE size to at least 64 bytes, this way stamping
479          * invalidates each WQE.
480          */
481         if (shrink_wqe && dev->dev->caps.fw_ver >= MLX4_FW_VER_WQE_CTRL_NEC &&
482             qp->sq_signal_bits && BITS_PER_LONG == 64 &&
483             type != MLX4_IB_QPT_SMI && type != MLX4_IB_QPT_GSI &&
484             !(type & (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_PROXY_SMI |
485                       MLX4_IB_QPT_PROXY_GSI | MLX4_IB_QPT_TUN_SMI_OWNER)))
486                 qp->sq.wqe_shift = ilog2(64);
487         else
488                 qp->sq.wqe_shift = ilog2(roundup_pow_of_two(s));
489
490         for (;;) {
491                 qp->sq_max_wqes_per_wr = DIV_ROUND_UP(s, 1U << qp->sq.wqe_shift);
492
493                 /*
494                  * We need to leave 2 KB + 1 WR of headroom in the SQ to
495                  * allow HW to prefetch.
496                  */
497                 qp->sq_spare_wqes = (2048 >> qp->sq.wqe_shift) + qp->sq_max_wqes_per_wr;
498                 qp->sq.wqe_cnt = roundup_pow_of_two(cap->max_send_wr *
499                                                     qp->sq_max_wqes_per_wr +
500                                                     qp->sq_spare_wqes);
501
502                 if (qp->sq.wqe_cnt <= dev->dev->caps.max_wqes)
503                         break;
504
505                 if (qp->sq_max_wqes_per_wr <= 1)
506                         return -EINVAL;
507
508                 ++qp->sq.wqe_shift;
509         }
510
511         qp->sq.max_gs = (min(dev->dev->caps.max_sq_desc_sz,
512                              (qp->sq_max_wqes_per_wr << qp->sq.wqe_shift)) -
513                          send_wqe_overhead(type, qp->flags)) /
514                 sizeof (struct mlx4_wqe_data_seg);
515
516         qp->buf_size = (qp->rq.wqe_cnt << qp->rq.wqe_shift) +
517                 (qp->sq.wqe_cnt << qp->sq.wqe_shift);
518         if (qp->rq.wqe_shift > qp->sq.wqe_shift) {
519                 qp->rq.offset = 0;
520                 qp->sq.offset = qp->rq.wqe_cnt << qp->rq.wqe_shift;
521         } else {
522                 qp->rq.offset = qp->sq.wqe_cnt << qp->sq.wqe_shift;
523                 qp->sq.offset = 0;
524         }
525
526         cap->max_send_wr  = qp->sq.max_post =
527                 (qp->sq.wqe_cnt - qp->sq_spare_wqes) / qp->sq_max_wqes_per_wr;
528         cap->max_send_sge = min(qp->sq.max_gs,
529                                 min(dev->dev->caps.max_sq_sg,
530                                     dev->dev->caps.max_rq_sg));
531         /* We don't support inline sends for kernel QPs (yet) */
532         cap->max_inline_data = 0;
533
534         return 0;
535 }
536
537 static int set_user_sq_size(struct mlx4_ib_dev *dev,
538                             struct mlx4_ib_qp *qp,
539                             struct mlx4_ib_create_qp *ucmd)
540 {
541         /* Sanity check SQ size before proceeding */
542         if ((1 << ucmd->log_sq_bb_count) > dev->dev->caps.max_wqes       ||
543             ucmd->log_sq_stride >
544                 ilog2(roundup_pow_of_two(dev->dev->caps.max_sq_desc_sz)) ||
545             ucmd->log_sq_stride < MLX4_IB_MIN_SQ_STRIDE)
546                 return -EINVAL;
547
548         qp->sq.wqe_cnt   = 1 << ucmd->log_sq_bb_count;
549         qp->sq.wqe_shift = ucmd->log_sq_stride;
550
551         qp->buf_size = (qp->rq.wqe_cnt << qp->rq.wqe_shift) +
552                 (qp->sq.wqe_cnt << qp->sq.wqe_shift);
553
554         return 0;
555 }
556
557 static int alloc_proxy_bufs(struct ib_device *dev, struct mlx4_ib_qp *qp)
558 {
559         int i;
560
561         qp->sqp_proxy_rcv =
562                 kmalloc(sizeof (struct mlx4_ib_buf) * qp->rq.wqe_cnt,
563                         GFP_KERNEL);
564         if (!qp->sqp_proxy_rcv)
565                 return -ENOMEM;
566         for (i = 0; i < qp->rq.wqe_cnt; i++) {
567                 qp->sqp_proxy_rcv[i].addr =
568                         kmalloc(sizeof (struct mlx4_ib_proxy_sqp_hdr),
569                                 GFP_KERNEL);
570                 if (!qp->sqp_proxy_rcv[i].addr)
571                         goto err;
572                 qp->sqp_proxy_rcv[i].map =
573                         ib_dma_map_single(dev, qp->sqp_proxy_rcv[i].addr,
574                                           sizeof (struct mlx4_ib_proxy_sqp_hdr),
575                                           DMA_FROM_DEVICE);
576                 if (ib_dma_mapping_error(dev, qp->sqp_proxy_rcv[i].map)) {
577                         kfree(qp->sqp_proxy_rcv[i].addr);
578                         goto err;
579                 }
580         }
581         return 0;
582
583 err:
584         while (i > 0) {
585                 --i;
586                 ib_dma_unmap_single(dev, qp->sqp_proxy_rcv[i].map,
587                                     sizeof (struct mlx4_ib_proxy_sqp_hdr),
588                                     DMA_FROM_DEVICE);
589                 kfree(qp->sqp_proxy_rcv[i].addr);
590         }
591         kfree(qp->sqp_proxy_rcv);
592         qp->sqp_proxy_rcv = NULL;
593         return -ENOMEM;
594 }
595
596 static void free_proxy_bufs(struct ib_device *dev, struct mlx4_ib_qp *qp)
597 {
598         int i;
599
600         for (i = 0; i < qp->rq.wqe_cnt; i++) {
601                 ib_dma_unmap_single(dev, qp->sqp_proxy_rcv[i].map,
602                                     sizeof (struct mlx4_ib_proxy_sqp_hdr),
603                                     DMA_FROM_DEVICE);
604                 kfree(qp->sqp_proxy_rcv[i].addr);
605         }
606         kfree(qp->sqp_proxy_rcv);
607 }
608
609 static int qp_has_rq(struct ib_qp_init_attr *attr)
610 {
611         if (attr->qp_type == IB_QPT_XRC_INI || attr->qp_type == IB_QPT_XRC_TGT)
612                 return 0;
613
614         return !attr->srq;
615 }
616
617 static int qp0_enabled_vf(struct mlx4_dev *dev, int qpn)
618 {
619         int i;
620         for (i = 0; i < dev->caps.num_ports; i++) {
621                 if (qpn == dev->caps.qp0_proxy[i])
622                         return !!dev->caps.qp0_qkey[i];
623         }
624         return 0;
625 }
626
627 static void mlx4_ib_free_qp_counter(struct mlx4_ib_dev *dev,
628                                     struct mlx4_ib_qp *qp)
629 {
630         mutex_lock(&dev->counters_table[qp->port - 1].mutex);
631         mlx4_counter_free(dev->dev, qp->counter_index->index);
632         list_del(&qp->counter_index->list);
633         mutex_unlock(&dev->counters_table[qp->port - 1].mutex);
634
635         kfree(qp->counter_index);
636         qp->counter_index = NULL;
637 }
638
639 static int create_qp_common(struct mlx4_ib_dev *dev, struct ib_pd *pd,
640                             struct ib_qp_init_attr *init_attr,
641                             struct ib_udata *udata, int sqpn, struct mlx4_ib_qp **caller_qp,
642                             gfp_t gfp)
643 {
644         int qpn;
645         int err;
646         struct ib_qp_cap backup_cap;
647         struct mlx4_ib_sqp *sqp;
648         struct mlx4_ib_qp *qp;
649         enum mlx4_ib_qp_type qp_type = (enum mlx4_ib_qp_type) init_attr->qp_type;
650         struct mlx4_ib_cq *mcq;
651         unsigned long flags;
652
653         /* When tunneling special qps, we use a plain UD qp */
654         if (sqpn) {
655                 if (mlx4_is_mfunc(dev->dev) &&
656                     (!mlx4_is_master(dev->dev) ||
657                      !(init_attr->create_flags & MLX4_IB_SRIOV_SQP))) {
658                         if (init_attr->qp_type == IB_QPT_GSI)
659                                 qp_type = MLX4_IB_QPT_PROXY_GSI;
660                         else {
661                                 if (mlx4_is_master(dev->dev) ||
662                                     qp0_enabled_vf(dev->dev, sqpn))
663                                         qp_type = MLX4_IB_QPT_PROXY_SMI_OWNER;
664                                 else
665                                         qp_type = MLX4_IB_QPT_PROXY_SMI;
666                         }
667                 }
668                 qpn = sqpn;
669                 /* add extra sg entry for tunneling */
670                 init_attr->cap.max_recv_sge++;
671         } else if (init_attr->create_flags & MLX4_IB_SRIOV_TUNNEL_QP) {
672                 struct mlx4_ib_qp_tunnel_init_attr *tnl_init =
673                         container_of(init_attr,
674                                      struct mlx4_ib_qp_tunnel_init_attr, init_attr);
675                 if ((tnl_init->proxy_qp_type != IB_QPT_SMI &&
676                      tnl_init->proxy_qp_type != IB_QPT_GSI)   ||
677                     !mlx4_is_master(dev->dev))
678                         return -EINVAL;
679                 if (tnl_init->proxy_qp_type == IB_QPT_GSI)
680                         qp_type = MLX4_IB_QPT_TUN_GSI;
681                 else if (tnl_init->slave == mlx4_master_func_num(dev->dev) ||
682                          mlx4_vf_smi_enabled(dev->dev, tnl_init->slave,
683                                              tnl_init->port))
684                         qp_type = MLX4_IB_QPT_TUN_SMI_OWNER;
685                 else
686                         qp_type = MLX4_IB_QPT_TUN_SMI;
687                 /* we are definitely in the PPF here, since we are creating
688                  * tunnel QPs. base_tunnel_sqpn is therefore valid. */
689                 qpn = dev->dev->phys_caps.base_tunnel_sqpn + 8 * tnl_init->slave
690                         + tnl_init->proxy_qp_type * 2 + tnl_init->port - 1;
691                 sqpn = qpn;
692         }
693
694         if (!*caller_qp) {
695                 if (qp_type == MLX4_IB_QPT_SMI || qp_type == MLX4_IB_QPT_GSI ||
696                     (qp_type & (MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_SMI_OWNER |
697                                 MLX4_IB_QPT_PROXY_GSI | MLX4_IB_QPT_TUN_SMI_OWNER))) {
698                         sqp = kzalloc(sizeof (struct mlx4_ib_sqp), gfp);
699                         if (!sqp)
700                                 return -ENOMEM;
701                         qp = &sqp->qp;
702                         qp->pri.vid = 0xFFFF;
703                         qp->alt.vid = 0xFFFF;
704                 } else {
705                         qp = kzalloc(sizeof (struct mlx4_ib_qp), gfp);
706                         if (!qp)
707                                 return -ENOMEM;
708                         qp->pri.vid = 0xFFFF;
709                         qp->alt.vid = 0xFFFF;
710                 }
711         } else
712                 qp = *caller_qp;
713
714         qp->mlx4_ib_qp_type = qp_type;
715
716         mutex_init(&qp->mutex);
717         spin_lock_init(&qp->sq.lock);
718         spin_lock_init(&qp->rq.lock);
719         INIT_LIST_HEAD(&qp->gid_list);
720         INIT_LIST_HEAD(&qp->steering_rules);
721
722         qp->state        = IB_QPS_RESET;
723         if (init_attr->sq_sig_type == IB_SIGNAL_ALL_WR)
724                 qp->sq_signal_bits = cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
725
726         err = set_rq_size(dev, &init_attr->cap, !!pd->uobject, qp_has_rq(init_attr), qp);
727         if (err)
728                 goto err;
729
730         if (pd->uobject) {
731                 struct mlx4_ib_create_qp ucmd;
732
733                 if (ib_copy_from_udata(&ucmd, udata, sizeof ucmd)) {
734                         err = -EFAULT;
735                         goto err;
736                 }
737
738                 qp->sq_no_prefetch = ucmd.sq_no_prefetch;
739
740                 err = set_user_sq_size(dev, qp, &ucmd);
741                 if (err)
742                         goto err;
743
744                 qp->umem = ib_umem_get(pd->uobject->context, ucmd.buf_addr,
745                                        qp->buf_size, 0, 0);
746                 if (IS_ERR(qp->umem)) {
747                         err = PTR_ERR(qp->umem);
748                         goto err;
749                 }
750
751                 err = mlx4_mtt_init(dev->dev, ib_umem_page_count(qp->umem),
752                                     ilog2(qp->umem->page_size), &qp->mtt);
753                 if (err)
754                         goto err_buf;
755
756                 err = mlx4_ib_umem_write_mtt(dev, &qp->mtt, qp->umem);
757                 if (err)
758                         goto err_mtt;
759
760                 if (qp_has_rq(init_attr)) {
761                         err = mlx4_ib_db_map_user(to_mucontext(pd->uobject->context),
762                                                   ucmd.db_addr, &qp->db);
763                         if (err)
764                                 goto err_mtt;
765                 }
766         } else {
767                 qp->sq_no_prefetch = 0;
768
769                 if (init_attr->create_flags & IB_QP_CREATE_IPOIB_UD_LSO)
770                         qp->flags |= MLX4_IB_QP_LSO;
771
772                 if (init_attr->create_flags & IB_QP_CREATE_NETIF_QP) {
773                         if (dev->steering_support ==
774                             MLX4_STEERING_MODE_DEVICE_MANAGED)
775                                 qp->flags |= MLX4_IB_QP_NETIF;
776                         else {
777                                 err = -EINVAL;
778                                 goto err;
779                         }
780                 }
781
782                 memcpy(&backup_cap, &init_attr->cap, sizeof(backup_cap));
783                 err = set_kernel_sq_size(dev, &init_attr->cap,
784                                          qp_type, qp, true);
785                 if (err)
786                         goto err;
787
788                 if (qp_has_rq(init_attr)) {
789                         err = mlx4_db_alloc(dev->dev, &qp->db, 0, gfp);
790                         if (err)
791                                 goto err;
792
793                         *qp->db.db = 0;
794                 }
795
796                 if (mlx4_buf_alloc(dev->dev, qp->buf_size, qp->buf_size,
797                                    &qp->buf, gfp)) {
798                         memcpy(&init_attr->cap, &backup_cap,
799                                sizeof(backup_cap));
800                         err = set_kernel_sq_size(dev, &init_attr->cap, qp_type,
801                                                  qp, false);
802                         if (err)
803                                 goto err_db;
804
805                         if (mlx4_buf_alloc(dev->dev, qp->buf_size,
806                                            PAGE_SIZE * 2, &qp->buf, gfp)) {
807                                 err = -ENOMEM;
808                                 goto err_db;
809                         }
810                 }
811
812                 err = mlx4_mtt_init(dev->dev, qp->buf.npages, qp->buf.page_shift,
813                                     &qp->mtt);
814                 if (err)
815                         goto err_buf;
816
817                 err = mlx4_buf_write_mtt(dev->dev, &qp->mtt, &qp->buf, gfp);
818                 if (err)
819                         goto err_mtt;
820
821                 qp->sq.wrid = kmalloc_array(qp->sq.wqe_cnt, sizeof(u64),
822                                         gfp | __GFP_NOWARN);
823                 if (!qp->sq.wrid)
824                         qp->sq.wrid = __vmalloc(qp->sq.wqe_cnt * sizeof(u64),
825                                                 gfp, PAGE_KERNEL);
826                 qp->rq.wrid = kmalloc_array(qp->rq.wqe_cnt, sizeof(u64),
827                                         gfp | __GFP_NOWARN);
828                 if (!qp->rq.wrid)
829                         qp->rq.wrid = __vmalloc(qp->rq.wqe_cnt * sizeof(u64),
830                                                 gfp, PAGE_KERNEL);
831                 if (!qp->sq.wrid || !qp->rq.wrid) {
832                         err = -ENOMEM;
833                         goto err_wrid;
834                 }
835         }
836
837         if (sqpn) {
838                 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
839                     MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI)) {
840                         if (alloc_proxy_bufs(pd->device, qp)) {
841                                 err = -ENOMEM;
842                                 goto err_wrid;
843                         }
844                 }
845         } else {
846                 /* Raw packet QPNs may not have bits 6,7 set in their qp_num;
847                  * otherwise, the WQE BlueFlame setup flow wrongly causes
848                  * VLAN insertion. */
849                 if (init_attr->qp_type == IB_QPT_RAW_PACKET)
850                         err = mlx4_qp_reserve_range(dev->dev, 1, 1, &qpn,
851                                                     (init_attr->cap.max_send_wr ?
852                                                      MLX4_RESERVE_ETH_BF_QP : 0) |
853                                                     (init_attr->cap.max_recv_wr ?
854                                                      MLX4_RESERVE_A0_QP : 0));
855                 else
856                         if (qp->flags & MLX4_IB_QP_NETIF)
857                                 err = mlx4_ib_steer_qp_alloc(dev, 1, &qpn);
858                         else
859                                 err = mlx4_qp_reserve_range(dev->dev, 1, 1,
860                                                             &qpn, 0);
861                 if (err)
862                         goto err_proxy;
863         }
864
865         if (init_attr->create_flags & IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK)
866                 qp->flags |= MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK;
867
868         err = mlx4_qp_alloc(dev->dev, qpn, &qp->mqp, gfp);
869         if (err)
870                 goto err_qpn;
871
872         if (init_attr->qp_type == IB_QPT_XRC_TGT)
873                 qp->mqp.qpn |= (1 << 23);
874
875         /*
876          * Hardware wants QPN written in big-endian order (after
877          * shifting) for send doorbell.  Precompute this value to save
878          * a little bit when posting sends.
879          */
880         qp->doorbell_qpn = swab32(qp->mqp.qpn << 8);
881
882         qp->mqp.event = mlx4_ib_qp_event;
883         if (!*caller_qp)
884                 *caller_qp = qp;
885
886         spin_lock_irqsave(&dev->reset_flow_resource_lock, flags);
887         mlx4_ib_lock_cqs(to_mcq(init_attr->send_cq),
888                          to_mcq(init_attr->recv_cq));
889         /* Maintain device to QPs access, needed for further handling
890          * via reset flow
891          */
892         list_add_tail(&qp->qps_list, &dev->qp_list);
893         /* Maintain CQ to QPs access, needed for further handling
894          * via reset flow
895          */
896         mcq = to_mcq(init_attr->send_cq);
897         list_add_tail(&qp->cq_send_list, &mcq->send_qp_list);
898         mcq = to_mcq(init_attr->recv_cq);
899         list_add_tail(&qp->cq_recv_list, &mcq->recv_qp_list);
900         mlx4_ib_unlock_cqs(to_mcq(init_attr->send_cq),
901                            to_mcq(init_attr->recv_cq));
902         spin_unlock_irqrestore(&dev->reset_flow_resource_lock, flags);
903         return 0;
904
905 err_qpn:
906         if (!sqpn) {
907                 if (qp->flags & MLX4_IB_QP_NETIF)
908                         mlx4_ib_steer_qp_free(dev, qpn, 1);
909                 else
910                         mlx4_qp_release_range(dev->dev, qpn, 1);
911         }
912 err_proxy:
913         if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI)
914                 free_proxy_bufs(pd->device, qp);
915 err_wrid:
916         if (pd->uobject) {
917                 if (qp_has_rq(init_attr))
918                         mlx4_ib_db_unmap_user(to_mucontext(pd->uobject->context), &qp->db);
919         } else {
920                 kvfree(qp->sq.wrid);
921                 kvfree(qp->rq.wrid);
922         }
923
924 err_mtt:
925         mlx4_mtt_cleanup(dev->dev, &qp->mtt);
926
927 err_buf:
928         if (pd->uobject)
929                 ib_umem_release(qp->umem);
930         else
931                 mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
932
933 err_db:
934         if (!pd->uobject && qp_has_rq(init_attr))
935                 mlx4_db_free(dev->dev, &qp->db);
936
937 err:
938         if (!*caller_qp)
939                 kfree(qp);
940         return err;
941 }
942
943 static enum mlx4_qp_state to_mlx4_state(enum ib_qp_state state)
944 {
945         switch (state) {
946         case IB_QPS_RESET:      return MLX4_QP_STATE_RST;
947         case IB_QPS_INIT:       return MLX4_QP_STATE_INIT;
948         case IB_QPS_RTR:        return MLX4_QP_STATE_RTR;
949         case IB_QPS_RTS:        return MLX4_QP_STATE_RTS;
950         case IB_QPS_SQD:        return MLX4_QP_STATE_SQD;
951         case IB_QPS_SQE:        return MLX4_QP_STATE_SQER;
952         case IB_QPS_ERR:        return MLX4_QP_STATE_ERR;
953         default:                return -1;
954         }
955 }
956
957 static void mlx4_ib_lock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
958         __acquires(&send_cq->lock) __acquires(&recv_cq->lock)
959 {
960         if (send_cq == recv_cq) {
961                 spin_lock(&send_cq->lock);
962                 __acquire(&recv_cq->lock);
963         } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
964                 spin_lock(&send_cq->lock);
965                 spin_lock_nested(&recv_cq->lock, SINGLE_DEPTH_NESTING);
966         } else {
967                 spin_lock(&recv_cq->lock);
968                 spin_lock_nested(&send_cq->lock, SINGLE_DEPTH_NESTING);
969         }
970 }
971
972 static void mlx4_ib_unlock_cqs(struct mlx4_ib_cq *send_cq, struct mlx4_ib_cq *recv_cq)
973         __releases(&send_cq->lock) __releases(&recv_cq->lock)
974 {
975         if (send_cq == recv_cq) {
976                 __release(&recv_cq->lock);
977                 spin_unlock(&send_cq->lock);
978         } else if (send_cq->mcq.cqn < recv_cq->mcq.cqn) {
979                 spin_unlock(&recv_cq->lock);
980                 spin_unlock(&send_cq->lock);
981         } else {
982                 spin_unlock(&send_cq->lock);
983                 spin_unlock(&recv_cq->lock);
984         }
985 }
986
987 static void del_gid_entries(struct mlx4_ib_qp *qp)
988 {
989         struct mlx4_ib_gid_entry *ge, *tmp;
990
991         list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
992                 list_del(&ge->list);
993                 kfree(ge);
994         }
995 }
996
997 static struct mlx4_ib_pd *get_pd(struct mlx4_ib_qp *qp)
998 {
999         if (qp->ibqp.qp_type == IB_QPT_XRC_TGT)
1000                 return to_mpd(to_mxrcd(qp->ibqp.xrcd)->pd);
1001         else
1002                 return to_mpd(qp->ibqp.pd);
1003 }
1004
1005 static void get_cqs(struct mlx4_ib_qp *qp,
1006                     struct mlx4_ib_cq **send_cq, struct mlx4_ib_cq **recv_cq)
1007 {
1008         switch (qp->ibqp.qp_type) {
1009         case IB_QPT_XRC_TGT:
1010                 *send_cq = to_mcq(to_mxrcd(qp->ibqp.xrcd)->cq);
1011                 *recv_cq = *send_cq;
1012                 break;
1013         case IB_QPT_XRC_INI:
1014                 *send_cq = to_mcq(qp->ibqp.send_cq);
1015                 *recv_cq = *send_cq;
1016                 break;
1017         default:
1018                 *send_cq = to_mcq(qp->ibqp.send_cq);
1019                 *recv_cq = to_mcq(qp->ibqp.recv_cq);
1020                 break;
1021         }
1022 }
1023
1024 static void destroy_qp_common(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp,
1025                               int is_user)
1026 {
1027         struct mlx4_ib_cq *send_cq, *recv_cq;
1028         unsigned long flags;
1029
1030         if (qp->state != IB_QPS_RESET) {
1031                 if (mlx4_qp_modify(dev->dev, NULL, to_mlx4_state(qp->state),
1032                                    MLX4_QP_STATE_RST, NULL, 0, 0, &qp->mqp))
1033                         pr_warn("modify QP %06x to RESET failed.\n",
1034                                qp->mqp.qpn);
1035                 if (qp->pri.smac || (!qp->pri.smac && qp->pri.smac_port)) {
1036                         mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
1037                         qp->pri.smac = 0;
1038                         qp->pri.smac_port = 0;
1039                 }
1040                 if (qp->alt.smac) {
1041                         mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
1042                         qp->alt.smac = 0;
1043                 }
1044                 if (qp->pri.vid < 0x1000) {
1045                         mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port, qp->pri.vid);
1046                         qp->pri.vid = 0xFFFF;
1047                         qp->pri.candidate_vid = 0xFFFF;
1048                         qp->pri.update_vid = 0;
1049                 }
1050                 if (qp->alt.vid < 0x1000) {
1051                         mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port, qp->alt.vid);
1052                         qp->alt.vid = 0xFFFF;
1053                         qp->alt.candidate_vid = 0xFFFF;
1054                         qp->alt.update_vid = 0;
1055                 }
1056         }
1057
1058         get_cqs(qp, &send_cq, &recv_cq);
1059
1060         spin_lock_irqsave(&dev->reset_flow_resource_lock, flags);
1061         mlx4_ib_lock_cqs(send_cq, recv_cq);
1062
1063         /* del from lists under both locks above to protect reset flow paths */
1064         list_del(&qp->qps_list);
1065         list_del(&qp->cq_send_list);
1066         list_del(&qp->cq_recv_list);
1067         if (!is_user) {
1068                 __mlx4_ib_cq_clean(recv_cq, qp->mqp.qpn,
1069                                  qp->ibqp.srq ? to_msrq(qp->ibqp.srq): NULL);
1070                 if (send_cq != recv_cq)
1071                         __mlx4_ib_cq_clean(send_cq, qp->mqp.qpn, NULL);
1072         }
1073
1074         mlx4_qp_remove(dev->dev, &qp->mqp);
1075
1076         mlx4_ib_unlock_cqs(send_cq, recv_cq);
1077         spin_unlock_irqrestore(&dev->reset_flow_resource_lock, flags);
1078
1079         mlx4_qp_free(dev->dev, &qp->mqp);
1080
1081         if (!is_sqp(dev, qp) && !is_tunnel_qp(dev, qp)) {
1082                 if (qp->flags & MLX4_IB_QP_NETIF)
1083                         mlx4_ib_steer_qp_free(dev, qp->mqp.qpn, 1);
1084                 else
1085                         mlx4_qp_release_range(dev->dev, qp->mqp.qpn, 1);
1086         }
1087
1088         mlx4_mtt_cleanup(dev->dev, &qp->mtt);
1089
1090         if (is_user) {
1091                 if (qp->rq.wqe_cnt)
1092                         mlx4_ib_db_unmap_user(to_mucontext(qp->ibqp.uobject->context),
1093                                               &qp->db);
1094                 ib_umem_release(qp->umem);
1095         } else {
1096                 kvfree(qp->sq.wrid);
1097                 kvfree(qp->rq.wrid);
1098                 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
1099                     MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI))
1100                         free_proxy_bufs(&dev->ib_dev, qp);
1101                 mlx4_buf_free(dev->dev, qp->buf_size, &qp->buf);
1102                 if (qp->rq.wqe_cnt)
1103                         mlx4_db_free(dev->dev, &qp->db);
1104         }
1105
1106         del_gid_entries(qp);
1107 }
1108
1109 static u32 get_sqp_num(struct mlx4_ib_dev *dev, struct ib_qp_init_attr *attr)
1110 {
1111         /* Native or PPF */
1112         if (!mlx4_is_mfunc(dev->dev) ||
1113             (mlx4_is_master(dev->dev) &&
1114              attr->create_flags & MLX4_IB_SRIOV_SQP)) {
1115                 return  dev->dev->phys_caps.base_sqpn +
1116                         (attr->qp_type == IB_QPT_SMI ? 0 : 2) +
1117                         attr->port_num - 1;
1118         }
1119         /* PF or VF -- creating proxies */
1120         if (attr->qp_type == IB_QPT_SMI)
1121                 return dev->dev->caps.qp0_proxy[attr->port_num - 1];
1122         else
1123                 return dev->dev->caps.qp1_proxy[attr->port_num - 1];
1124 }
1125
1126 static struct ib_qp *_mlx4_ib_create_qp(struct ib_pd *pd,
1127                                         struct ib_qp_init_attr *init_attr,
1128                                         struct ib_udata *udata)
1129 {
1130         struct mlx4_ib_qp *qp = NULL;
1131         int err;
1132         int sup_u_create_flags = MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK;
1133         u16 xrcdn = 0;
1134         gfp_t gfp;
1135
1136         gfp = (init_attr->create_flags & MLX4_IB_QP_CREATE_USE_GFP_NOIO) ?
1137                 GFP_NOIO : GFP_KERNEL;
1138         /*
1139          * We only support LSO, vendor flag1, and multicast loopback blocking,
1140          * and only for kernel UD QPs.
1141          */
1142         if (init_attr->create_flags & ~(MLX4_IB_QP_LSO |
1143                                         MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK |
1144                                         MLX4_IB_SRIOV_TUNNEL_QP |
1145                                         MLX4_IB_SRIOV_SQP |
1146                                         MLX4_IB_QP_NETIF |
1147                                         MLX4_IB_QP_CREATE_ROCE_V2_GSI |
1148                                         MLX4_IB_QP_CREATE_USE_GFP_NOIO))
1149                 return ERR_PTR(-EINVAL);
1150
1151         if (init_attr->create_flags & IB_QP_CREATE_NETIF_QP) {
1152                 if (init_attr->qp_type != IB_QPT_UD)
1153                         return ERR_PTR(-EINVAL);
1154         }
1155
1156         if (init_attr->create_flags) {
1157                 if (udata && init_attr->create_flags & ~(sup_u_create_flags))
1158                         return ERR_PTR(-EINVAL);
1159
1160                 if ((init_attr->create_flags & ~(MLX4_IB_SRIOV_SQP |
1161                                                  MLX4_IB_QP_CREATE_USE_GFP_NOIO |
1162                                                  MLX4_IB_QP_CREATE_ROCE_V2_GSI  |
1163                                                  MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK) &&
1164                      init_attr->qp_type != IB_QPT_UD) ||
1165                     (init_attr->create_flags & MLX4_IB_SRIOV_SQP &&
1166                      init_attr->qp_type > IB_QPT_GSI) ||
1167                     (init_attr->create_flags & MLX4_IB_QP_CREATE_ROCE_V2_GSI &&
1168                      init_attr->qp_type != IB_QPT_GSI))
1169                         return ERR_PTR(-EINVAL);
1170         }
1171
1172         switch (init_attr->qp_type) {
1173         case IB_QPT_XRC_TGT:
1174                 pd = to_mxrcd(init_attr->xrcd)->pd;
1175                 xrcdn = to_mxrcd(init_attr->xrcd)->xrcdn;
1176                 init_attr->send_cq = to_mxrcd(init_attr->xrcd)->cq;
1177                 /* fall through */
1178         case IB_QPT_XRC_INI:
1179                 if (!(to_mdev(pd->device)->dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC))
1180                         return ERR_PTR(-ENOSYS);
1181                 init_attr->recv_cq = init_attr->send_cq;
1182                 /* fall through */
1183         case IB_QPT_RC:
1184         case IB_QPT_UC:
1185         case IB_QPT_RAW_PACKET:
1186                 qp = kzalloc(sizeof *qp, gfp);
1187                 if (!qp)
1188                         return ERR_PTR(-ENOMEM);
1189                 qp->pri.vid = 0xFFFF;
1190                 qp->alt.vid = 0xFFFF;
1191                 /* fall through */
1192         case IB_QPT_UD:
1193         {
1194                 err = create_qp_common(to_mdev(pd->device), pd, init_attr,
1195                                        udata, 0, &qp, gfp);
1196                 if (err) {
1197                         kfree(qp);
1198                         return ERR_PTR(err);
1199                 }
1200
1201                 qp->ibqp.qp_num = qp->mqp.qpn;
1202                 qp->xrcdn = xrcdn;
1203
1204                 break;
1205         }
1206         case IB_QPT_SMI:
1207         case IB_QPT_GSI:
1208         {
1209                 int sqpn;
1210
1211                 /* Userspace is not allowed to create special QPs: */
1212                 if (udata)
1213                         return ERR_PTR(-EINVAL);
1214                 if (init_attr->create_flags & MLX4_IB_QP_CREATE_ROCE_V2_GSI) {
1215                         int res = mlx4_qp_reserve_range(to_mdev(pd->device)->dev, 1, 1, &sqpn, 0);
1216
1217                         if (res)
1218                                 return ERR_PTR(res);
1219                 } else {
1220                         sqpn = get_sqp_num(to_mdev(pd->device), init_attr);
1221                 }
1222
1223                 err = create_qp_common(to_mdev(pd->device), pd, init_attr, udata,
1224                                        sqpn,
1225                                        &qp, gfp);
1226                 if (err)
1227                         return ERR_PTR(err);
1228
1229                 qp->port        = init_attr->port_num;
1230                 qp->ibqp.qp_num = init_attr->qp_type == IB_QPT_SMI ? 0 :
1231                         init_attr->create_flags & MLX4_IB_QP_CREATE_ROCE_V2_GSI ? sqpn : 1;
1232                 break;
1233         }
1234         default:
1235                 /* Don't support raw QPs */
1236                 return ERR_PTR(-EINVAL);
1237         }
1238
1239         return &qp->ibqp;
1240 }
1241
1242 struct ib_qp *mlx4_ib_create_qp(struct ib_pd *pd,
1243                                 struct ib_qp_init_attr *init_attr,
1244                                 struct ib_udata *udata) {
1245         struct ib_device *device = pd ? pd->device : init_attr->xrcd->device;
1246         struct ib_qp *ibqp;
1247         struct mlx4_ib_dev *dev = to_mdev(device);
1248
1249         ibqp = _mlx4_ib_create_qp(pd, init_attr, udata);
1250
1251         if (!IS_ERR(ibqp) &&
1252             (init_attr->qp_type == IB_QPT_GSI) &&
1253             !(init_attr->create_flags & MLX4_IB_QP_CREATE_ROCE_V2_GSI)) {
1254                 struct mlx4_ib_sqp *sqp = to_msqp((to_mqp(ibqp)));
1255                 int is_eth = rdma_cap_eth_ah(&dev->ib_dev, init_attr->port_num);
1256
1257                 if (is_eth &&
1258                     dev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_ROCE_V1_V2) {
1259                         init_attr->create_flags |= MLX4_IB_QP_CREATE_ROCE_V2_GSI;
1260                         sqp->roce_v2_gsi = ib_create_qp(pd, init_attr);
1261
1262                         if (IS_ERR(sqp->roce_v2_gsi)) {
1263                                 pr_err("Failed to create GSI QP for RoCEv2 (%ld)\n", PTR_ERR(sqp->roce_v2_gsi));
1264                                 sqp->roce_v2_gsi = NULL;
1265                         } else {
1266                                 sqp = to_msqp(to_mqp(sqp->roce_v2_gsi));
1267                                 sqp->qp.flags |= MLX4_IB_ROCE_V2_GSI_QP;
1268                         }
1269
1270                         init_attr->create_flags &= ~MLX4_IB_QP_CREATE_ROCE_V2_GSI;
1271                 }
1272         }
1273         return ibqp;
1274 }
1275
1276 static int _mlx4_ib_destroy_qp(struct ib_qp *qp)
1277 {
1278         struct mlx4_ib_dev *dev = to_mdev(qp->device);
1279         struct mlx4_ib_qp *mqp = to_mqp(qp);
1280         struct mlx4_ib_pd *pd;
1281
1282         if (is_qp0(dev, mqp))
1283                 mlx4_CLOSE_PORT(dev->dev, mqp->port);
1284
1285         if (mqp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI &&
1286             dev->qp1_proxy[mqp->port - 1] == mqp) {
1287                 mutex_lock(&dev->qp1_proxy_lock[mqp->port - 1]);
1288                 dev->qp1_proxy[mqp->port - 1] = NULL;
1289                 mutex_unlock(&dev->qp1_proxy_lock[mqp->port - 1]);
1290         }
1291
1292         if (mqp->counter_index)
1293                 mlx4_ib_free_qp_counter(dev, mqp);
1294
1295         pd = get_pd(mqp);
1296         destroy_qp_common(dev, mqp, !!pd->ibpd.uobject);
1297
1298         if (is_sqp(dev, mqp))
1299                 kfree(to_msqp(mqp));
1300         else
1301                 kfree(mqp);
1302
1303         return 0;
1304 }
1305
1306 int mlx4_ib_destroy_qp(struct ib_qp *qp)
1307 {
1308         struct mlx4_ib_qp *mqp = to_mqp(qp);
1309
1310         if (mqp->mlx4_ib_qp_type == MLX4_IB_QPT_GSI) {
1311                 struct mlx4_ib_sqp *sqp = to_msqp(mqp);
1312
1313                 if (sqp->roce_v2_gsi)
1314                         ib_destroy_qp(sqp->roce_v2_gsi);
1315         }
1316
1317         return _mlx4_ib_destroy_qp(qp);
1318 }
1319
1320 static int to_mlx4_st(struct mlx4_ib_dev *dev, enum mlx4_ib_qp_type type)
1321 {
1322         switch (type) {
1323         case MLX4_IB_QPT_RC:            return MLX4_QP_ST_RC;
1324         case MLX4_IB_QPT_UC:            return MLX4_QP_ST_UC;
1325         case MLX4_IB_QPT_UD:            return MLX4_QP_ST_UD;
1326         case MLX4_IB_QPT_XRC_INI:
1327         case MLX4_IB_QPT_XRC_TGT:       return MLX4_QP_ST_XRC;
1328         case MLX4_IB_QPT_SMI:
1329         case MLX4_IB_QPT_GSI:
1330         case MLX4_IB_QPT_RAW_PACKET:    return MLX4_QP_ST_MLX;
1331
1332         case MLX4_IB_QPT_PROXY_SMI_OWNER:
1333         case MLX4_IB_QPT_TUN_SMI_OWNER: return (mlx4_is_mfunc(dev->dev) ?
1334                                                 MLX4_QP_ST_MLX : -1);
1335         case MLX4_IB_QPT_PROXY_SMI:
1336         case MLX4_IB_QPT_TUN_SMI:
1337         case MLX4_IB_QPT_PROXY_GSI:
1338         case MLX4_IB_QPT_TUN_GSI:       return (mlx4_is_mfunc(dev->dev) ?
1339                                                 MLX4_QP_ST_UD : -1);
1340         default:                        return -1;
1341         }
1342 }
1343
1344 static __be32 to_mlx4_access_flags(struct mlx4_ib_qp *qp, const struct ib_qp_attr *attr,
1345                                    int attr_mask)
1346 {
1347         u8 dest_rd_atomic;
1348         u32 access_flags;
1349         u32 hw_access_flags = 0;
1350
1351         if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
1352                 dest_rd_atomic = attr->max_dest_rd_atomic;
1353         else
1354                 dest_rd_atomic = qp->resp_depth;
1355
1356         if (attr_mask & IB_QP_ACCESS_FLAGS)
1357                 access_flags = attr->qp_access_flags;
1358         else
1359                 access_flags = qp->atomic_rd_en;
1360
1361         if (!dest_rd_atomic)
1362                 access_flags &= IB_ACCESS_REMOTE_WRITE;
1363
1364         if (access_flags & IB_ACCESS_REMOTE_READ)
1365                 hw_access_flags |= MLX4_QP_BIT_RRE;
1366         if (access_flags & IB_ACCESS_REMOTE_ATOMIC)
1367                 hw_access_flags |= MLX4_QP_BIT_RAE;
1368         if (access_flags & IB_ACCESS_REMOTE_WRITE)
1369                 hw_access_flags |= MLX4_QP_BIT_RWE;
1370
1371         return cpu_to_be32(hw_access_flags);
1372 }
1373
1374 static void store_sqp_attrs(struct mlx4_ib_sqp *sqp, const struct ib_qp_attr *attr,
1375                             int attr_mask)
1376 {
1377         if (attr_mask & IB_QP_PKEY_INDEX)
1378                 sqp->pkey_index = attr->pkey_index;
1379         if (attr_mask & IB_QP_QKEY)
1380                 sqp->qkey = attr->qkey;
1381         if (attr_mask & IB_QP_SQ_PSN)
1382                 sqp->send_psn = attr->sq_psn;
1383 }
1384
1385 static void mlx4_set_sched(struct mlx4_qp_path *path, u8 port)
1386 {
1387         path->sched_queue = (path->sched_queue & 0xbf) | ((port - 1) << 6);
1388 }
1389
1390 static int _mlx4_set_path(struct mlx4_ib_dev *dev, const struct ib_ah_attr *ah,
1391                           u64 smac, u16 vlan_tag, struct mlx4_qp_path *path,
1392                           struct mlx4_roce_smac_vlan_info *smac_info, u8 port)
1393 {
1394         int is_eth = rdma_port_get_link_layer(&dev->ib_dev, port) ==
1395                 IB_LINK_LAYER_ETHERNET;
1396         int vidx;
1397         int smac_index;
1398         int err;
1399
1400
1401         path->grh_mylmc     = ah->src_path_bits & 0x7f;
1402         path->rlid          = cpu_to_be16(ah->dlid);
1403         if (ah->static_rate) {
1404                 path->static_rate = ah->static_rate + MLX4_STAT_RATE_OFFSET;
1405                 while (path->static_rate > IB_RATE_2_5_GBPS + MLX4_STAT_RATE_OFFSET &&
1406                        !(1 << path->static_rate & dev->dev->caps.stat_rate_support))
1407                         --path->static_rate;
1408         } else
1409                 path->static_rate = 0;
1410
1411         if (ah->ah_flags & IB_AH_GRH) {
1412                 int real_sgid_index = mlx4_ib_gid_index_to_real_index(dev,
1413                                                                       port,
1414                                                                       ah->grh.sgid_index);
1415
1416                 if (real_sgid_index >= dev->dev->caps.gid_table_len[port]) {
1417                         pr_err("sgid_index (%u) too large. max is %d\n",
1418                                real_sgid_index, dev->dev->caps.gid_table_len[port] - 1);
1419                         return -1;
1420                 }
1421
1422                 path->grh_mylmc |= 1 << 7;
1423                 path->mgid_index = real_sgid_index;
1424                 path->hop_limit  = ah->grh.hop_limit;
1425                 path->tclass_flowlabel =
1426                         cpu_to_be32((ah->grh.traffic_class << 20) |
1427                                     (ah->grh.flow_label));
1428                 memcpy(path->rgid, ah->grh.dgid.raw, 16);
1429         }
1430
1431         if (is_eth) {
1432                 if (!(ah->ah_flags & IB_AH_GRH))
1433                         return -1;
1434
1435                 path->sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE |
1436                         ((port - 1) << 6) | ((ah->sl & 7) << 3);
1437
1438                 path->feup |= MLX4_FEUP_FORCE_ETH_UP;
1439                 if (vlan_tag < 0x1000) {
1440                         if (smac_info->vid < 0x1000) {
1441                                 /* both valid vlan ids */
1442                                 if (smac_info->vid != vlan_tag) {
1443                                         /* different VIDs.  unreg old and reg new */
1444                                         err = mlx4_register_vlan(dev->dev, port, vlan_tag, &vidx);
1445                                         if (err)
1446                                                 return err;
1447                                         smac_info->candidate_vid = vlan_tag;
1448                                         smac_info->candidate_vlan_index = vidx;
1449                                         smac_info->candidate_vlan_port = port;
1450                                         smac_info->update_vid = 1;
1451                                         path->vlan_index = vidx;
1452                                 } else {
1453                                         path->vlan_index = smac_info->vlan_index;
1454                                 }
1455                         } else {
1456                                 /* no current vlan tag in qp */
1457                                 err = mlx4_register_vlan(dev->dev, port, vlan_tag, &vidx);
1458                                 if (err)
1459                                         return err;
1460                                 smac_info->candidate_vid = vlan_tag;
1461                                 smac_info->candidate_vlan_index = vidx;
1462                                 smac_info->candidate_vlan_port = port;
1463                                 smac_info->update_vid = 1;
1464                                 path->vlan_index = vidx;
1465                         }
1466                         path->feup |= MLX4_FVL_FORCE_ETH_VLAN;
1467                         path->fl = 1 << 6;
1468                 } else {
1469                         /* have current vlan tag. unregister it at modify-qp success */
1470                         if (smac_info->vid < 0x1000) {
1471                                 smac_info->candidate_vid = 0xFFFF;
1472                                 smac_info->update_vid = 1;
1473                         }
1474                 }
1475
1476                 /* get smac_index for RoCE use.
1477                  * If no smac was yet assigned, register one.
1478                  * If one was already assigned, but the new mac differs,
1479                  * unregister the old one and register the new one.
1480                 */
1481                 if ((!smac_info->smac && !smac_info->smac_port) ||
1482                     smac_info->smac != smac) {
1483                         /* register candidate now, unreg if needed, after success */
1484                         smac_index = mlx4_register_mac(dev->dev, port, smac);
1485                         if (smac_index >= 0) {
1486                                 smac_info->candidate_smac_index = smac_index;
1487                                 smac_info->candidate_smac = smac;
1488                                 smac_info->candidate_smac_port = port;
1489                         } else {
1490                                 return -EINVAL;
1491                         }
1492                 } else {
1493                         smac_index = smac_info->smac_index;
1494                 }
1495
1496                 memcpy(path->dmac, ah->dmac, 6);
1497                 path->ackto = MLX4_IB_LINK_TYPE_ETH;
1498                 /* put MAC table smac index for IBoE */
1499                 path->grh_mylmc = (u8) (smac_index) | 0x80;
1500         } else {
1501                 path->sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE |
1502                         ((port - 1) << 6) | ((ah->sl & 0xf) << 2);
1503         }
1504
1505         return 0;
1506 }
1507
1508 static int mlx4_set_path(struct mlx4_ib_dev *dev, const struct ib_qp_attr *qp,
1509                          enum ib_qp_attr_mask qp_attr_mask,
1510                          struct mlx4_ib_qp *mqp,
1511                          struct mlx4_qp_path *path, u8 port,
1512                          u16 vlan_id, u8 *smac)
1513 {
1514         return _mlx4_set_path(dev, &qp->ah_attr,
1515                               mlx4_mac_to_u64(smac),
1516                               vlan_id,
1517                               path, &mqp->pri, port);
1518 }
1519
1520 static int mlx4_set_alt_path(struct mlx4_ib_dev *dev,
1521                              const struct ib_qp_attr *qp,
1522                              enum ib_qp_attr_mask qp_attr_mask,
1523                              struct mlx4_ib_qp *mqp,
1524                              struct mlx4_qp_path *path, u8 port)
1525 {
1526         return _mlx4_set_path(dev, &qp->alt_ah_attr,
1527                               0,
1528                               0xffff,
1529                               path, &mqp->alt, port);
1530 }
1531
1532 static void update_mcg_macs(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
1533 {
1534         struct mlx4_ib_gid_entry *ge, *tmp;
1535
1536         list_for_each_entry_safe(ge, tmp, &qp->gid_list, list) {
1537                 if (!ge->added && mlx4_ib_add_mc(dev, qp, &ge->gid)) {
1538                         ge->added = 1;
1539                         ge->port = qp->port;
1540                 }
1541         }
1542 }
1543
1544 static int handle_eth_ud_smac_index(struct mlx4_ib_dev *dev,
1545                                     struct mlx4_ib_qp *qp,
1546                                     struct mlx4_qp_context *context)
1547 {
1548         u64 u64_mac;
1549         int smac_index;
1550
1551         u64_mac = atomic64_read(&dev->iboe.mac[qp->port - 1]);
1552
1553         context->pri_path.sched_queue = MLX4_IB_DEFAULT_SCHED_QUEUE | ((qp->port - 1) << 6);
1554         if (!qp->pri.smac && !qp->pri.smac_port) {
1555                 smac_index = mlx4_register_mac(dev->dev, qp->port, u64_mac);
1556                 if (smac_index >= 0) {
1557                         qp->pri.candidate_smac_index = smac_index;
1558                         qp->pri.candidate_smac = u64_mac;
1559                         qp->pri.candidate_smac_port = qp->port;
1560                         context->pri_path.grh_mylmc = 0x80 | (u8) smac_index;
1561                 } else {
1562                         return -ENOENT;
1563                 }
1564         }
1565         return 0;
1566 }
1567
1568 static int create_qp_lb_counter(struct mlx4_ib_dev *dev, struct mlx4_ib_qp *qp)
1569 {
1570         struct counter_index *new_counter_index;
1571         int err;
1572         u32 tmp_idx;
1573
1574         if (rdma_port_get_link_layer(&dev->ib_dev, qp->port) !=
1575             IB_LINK_LAYER_ETHERNET ||
1576             !(qp->flags & MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK) ||
1577             !(dev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_LB_SRC_CHK))
1578                 return 0;
1579
1580         err = mlx4_counter_alloc(dev->dev, &tmp_idx);
1581         if (err)
1582                 return err;
1583
1584         new_counter_index = kmalloc(sizeof(*new_counter_index), GFP_KERNEL);
1585         if (!new_counter_index) {
1586                 mlx4_counter_free(dev->dev, tmp_idx);
1587                 return -ENOMEM;
1588         }
1589
1590         new_counter_index->index = tmp_idx;
1591         new_counter_index->allocated = 1;
1592         qp->counter_index = new_counter_index;
1593
1594         mutex_lock(&dev->counters_table[qp->port - 1].mutex);
1595         list_add_tail(&new_counter_index->list,
1596                       &dev->counters_table[qp->port - 1].counters_list);
1597         mutex_unlock(&dev->counters_table[qp->port - 1].mutex);
1598
1599         return 0;
1600 }
1601
1602 enum {
1603         MLX4_QPC_ROCE_MODE_1 = 0,
1604         MLX4_QPC_ROCE_MODE_2 = 2,
1605         MLX4_QPC_ROCE_MODE_UNDEFINED = 0xff
1606 };
1607
1608 static u8 gid_type_to_qpc(enum ib_gid_type gid_type)
1609 {
1610         switch (gid_type) {
1611         case IB_GID_TYPE_ROCE:
1612                 return MLX4_QPC_ROCE_MODE_1;
1613         case IB_GID_TYPE_ROCE_UDP_ENCAP:
1614                 return MLX4_QPC_ROCE_MODE_2;
1615         default:
1616                 return MLX4_QPC_ROCE_MODE_UNDEFINED;
1617         }
1618 }
1619
1620 static int __mlx4_ib_modify_qp(struct ib_qp *ibqp,
1621                                const struct ib_qp_attr *attr, int attr_mask,
1622                                enum ib_qp_state cur_state, enum ib_qp_state new_state)
1623 {
1624         struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
1625         struct mlx4_ib_qp *qp = to_mqp(ibqp);
1626         struct mlx4_ib_pd *pd;
1627         struct mlx4_ib_cq *send_cq, *recv_cq;
1628         struct mlx4_qp_context *context;
1629         enum mlx4_qp_optpar optpar = 0;
1630         int sqd_event;
1631         int steer_qp = 0;
1632         int err = -EINVAL;
1633         int counter_index;
1634
1635         /* APM is not supported under RoCE */
1636         if (attr_mask & IB_QP_ALT_PATH &&
1637             rdma_port_get_link_layer(&dev->ib_dev, qp->port) ==
1638             IB_LINK_LAYER_ETHERNET)
1639                 return -ENOTSUPP;
1640
1641         context = kzalloc(sizeof *context, GFP_KERNEL);
1642         if (!context)
1643                 return -ENOMEM;
1644
1645         context->flags = cpu_to_be32((to_mlx4_state(new_state) << 28) |
1646                                      (to_mlx4_st(dev, qp->mlx4_ib_qp_type) << 16));
1647
1648         if (!(attr_mask & IB_QP_PATH_MIG_STATE))
1649                 context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
1650         else {
1651                 optpar |= MLX4_QP_OPTPAR_PM_STATE;
1652                 switch (attr->path_mig_state) {
1653                 case IB_MIG_MIGRATED:
1654                         context->flags |= cpu_to_be32(MLX4_QP_PM_MIGRATED << 11);
1655                         break;
1656                 case IB_MIG_REARM:
1657                         context->flags |= cpu_to_be32(MLX4_QP_PM_REARM << 11);
1658                         break;
1659                 case IB_MIG_ARMED:
1660                         context->flags |= cpu_to_be32(MLX4_QP_PM_ARMED << 11);
1661                         break;
1662                 }
1663         }
1664
1665         if (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI)
1666                 context->mtu_msgmax = (IB_MTU_4096 << 5) | 11;
1667         else if (ibqp->qp_type == IB_QPT_RAW_PACKET)
1668                 context->mtu_msgmax = (MLX4_RAW_QP_MTU << 5) | MLX4_RAW_QP_MSGMAX;
1669         else if (ibqp->qp_type == IB_QPT_UD) {
1670                 if (qp->flags & MLX4_IB_QP_LSO)
1671                         context->mtu_msgmax = (IB_MTU_4096 << 5) |
1672                                               ilog2(dev->dev->caps.max_gso_sz);
1673                 else
1674                         context->mtu_msgmax = (IB_MTU_4096 << 5) | 13;
1675         } else if (attr_mask & IB_QP_PATH_MTU) {
1676                 if (attr->path_mtu < IB_MTU_256 || attr->path_mtu > IB_MTU_4096) {
1677                         pr_err("path MTU (%u) is invalid\n",
1678                                attr->path_mtu);
1679                         goto out;
1680                 }
1681                 context->mtu_msgmax = (attr->path_mtu << 5) |
1682                         ilog2(dev->dev->caps.max_msg_sz);
1683         }
1684
1685         if (qp->rq.wqe_cnt)
1686                 context->rq_size_stride = ilog2(qp->rq.wqe_cnt) << 3;
1687         context->rq_size_stride |= qp->rq.wqe_shift - 4;
1688
1689         if (qp->sq.wqe_cnt)
1690                 context->sq_size_stride = ilog2(qp->sq.wqe_cnt) << 3;
1691         context->sq_size_stride |= qp->sq.wqe_shift - 4;
1692
1693         if (new_state == IB_QPS_RESET && qp->counter_index)
1694                 mlx4_ib_free_qp_counter(dev, qp);
1695
1696         if (cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT) {
1697                 context->sq_size_stride |= !!qp->sq_no_prefetch << 7;
1698                 context->xrcd = cpu_to_be32((u32) qp->xrcdn);
1699                 if (ibqp->qp_type == IB_QPT_RAW_PACKET)
1700                         context->param3 |= cpu_to_be32(1 << 30);
1701         }
1702
1703         if (qp->ibqp.uobject)
1704                 context->usr_page = cpu_to_be32(
1705                         mlx4_to_hw_uar_index(dev->dev,
1706                                              to_mucontext(ibqp->uobject->context)->uar.index));
1707         else
1708                 context->usr_page = cpu_to_be32(
1709                         mlx4_to_hw_uar_index(dev->dev, dev->priv_uar.index));
1710
1711         if (attr_mask & IB_QP_DEST_QPN)
1712                 context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
1713
1714         if (attr_mask & IB_QP_PORT) {
1715                 if (cur_state == IB_QPS_SQD && new_state == IB_QPS_SQD &&
1716                     !(attr_mask & IB_QP_AV)) {
1717                         mlx4_set_sched(&context->pri_path, attr->port_num);
1718                         optpar |= MLX4_QP_OPTPAR_SCHED_QUEUE;
1719                 }
1720         }
1721
1722         if (cur_state == IB_QPS_INIT && new_state == IB_QPS_RTR) {
1723                 err = create_qp_lb_counter(dev, qp);
1724                 if (err)
1725                         goto out;
1726
1727                 counter_index =
1728                         dev->counters_table[qp->port - 1].default_counter;
1729                 if (qp->counter_index)
1730                         counter_index = qp->counter_index->index;
1731
1732                 if (counter_index != -1) {
1733                         context->pri_path.counter_index = counter_index;
1734                         optpar |= MLX4_QP_OPTPAR_COUNTER_INDEX;
1735                         if (qp->counter_index) {
1736                                 context->pri_path.fl |=
1737                                         MLX4_FL_ETH_SRC_CHECK_MC_LB;
1738                                 context->pri_path.vlan_control |=
1739                                         MLX4_CTRL_ETH_SRC_CHECK_IF_COUNTER;
1740                         }
1741                 } else
1742                         context->pri_path.counter_index =
1743                                 MLX4_SINK_COUNTER_INDEX(dev->dev);
1744
1745                 if (qp->flags & MLX4_IB_QP_NETIF) {
1746                         mlx4_ib_steer_qp_reg(dev, qp, 1);
1747                         steer_qp = 1;
1748                 }
1749
1750                 if (ibqp->qp_type == IB_QPT_GSI) {
1751                         enum ib_gid_type gid_type = qp->flags & MLX4_IB_ROCE_V2_GSI_QP ?
1752                                 IB_GID_TYPE_ROCE_UDP_ENCAP : IB_GID_TYPE_ROCE;
1753                         u8 qpc_roce_mode = gid_type_to_qpc(gid_type);
1754
1755                         context->rlkey_roce_mode |= (qpc_roce_mode << 6);
1756                 }
1757         }
1758
1759         if (attr_mask & IB_QP_PKEY_INDEX) {
1760                 if (qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV)
1761                         context->pri_path.disable_pkey_check = 0x40;
1762                 context->pri_path.pkey_index = attr->pkey_index;
1763                 optpar |= MLX4_QP_OPTPAR_PKEY_INDEX;
1764         }
1765
1766         if (attr_mask & IB_QP_AV) {
1767                 u8 port_num = mlx4_is_bonded(to_mdev(ibqp->device)->dev) ? 1 :
1768                         attr_mask & IB_QP_PORT ? attr->port_num : qp->port;
1769                 union ib_gid gid;
1770                 struct ib_gid_attr gid_attr = {.gid_type = IB_GID_TYPE_IB};
1771                 u16 vlan = 0xffff;
1772                 u8 smac[ETH_ALEN];
1773                 int status = 0;
1774                 int is_eth = rdma_cap_eth_ah(&dev->ib_dev, port_num) &&
1775                         attr->ah_attr.ah_flags & IB_AH_GRH;
1776
1777                 if (is_eth && attr->ah_attr.ah_flags & IB_AH_GRH) {
1778                         int index = attr->ah_attr.grh.sgid_index;
1779
1780                         status = ib_get_cached_gid(ibqp->device, port_num,
1781                                                    index, &gid, &gid_attr);
1782                         if (!status && !memcmp(&gid, &zgid, sizeof(gid)))
1783                                 status = -ENOENT;
1784                         if (!status && gid_attr.ndev) {
1785                                 vlan = rdma_vlan_dev_vlan_id(gid_attr.ndev);
1786                                 memcpy(smac, gid_attr.ndev->dev_addr, ETH_ALEN);
1787                                 dev_put(gid_attr.ndev);
1788                         }
1789                 }
1790                 if (status)
1791                         goto out;
1792
1793                 if (mlx4_set_path(dev, attr, attr_mask, qp, &context->pri_path,
1794                                   port_num, vlan, smac))
1795                         goto out;
1796
1797                 optpar |= (MLX4_QP_OPTPAR_PRIMARY_ADDR_PATH |
1798                            MLX4_QP_OPTPAR_SCHED_QUEUE);
1799
1800                 if (is_eth &&
1801                     (cur_state == IB_QPS_INIT && new_state == IB_QPS_RTR)) {
1802                         u8 qpc_roce_mode = gid_type_to_qpc(gid_attr.gid_type);
1803
1804                         if (qpc_roce_mode == MLX4_QPC_ROCE_MODE_UNDEFINED) {
1805                                 err = -EINVAL;
1806                                 goto out;
1807                         }
1808                         context->rlkey_roce_mode |= (qpc_roce_mode << 6);
1809                 }
1810
1811         }
1812
1813         if (attr_mask & IB_QP_TIMEOUT) {
1814                 context->pri_path.ackto |= attr->timeout << 3;
1815                 optpar |= MLX4_QP_OPTPAR_ACK_TIMEOUT;
1816         }
1817
1818         if (attr_mask & IB_QP_ALT_PATH) {
1819                 if (attr->alt_port_num == 0 ||
1820                     attr->alt_port_num > dev->dev->caps.num_ports)
1821                         goto out;
1822
1823                 if (attr->alt_pkey_index >=
1824                     dev->dev->caps.pkey_table_len[attr->alt_port_num])
1825                         goto out;
1826
1827                 if (mlx4_set_alt_path(dev, attr, attr_mask, qp,
1828                                       &context->alt_path,
1829                                       attr->alt_port_num))
1830                         goto out;
1831
1832                 context->alt_path.pkey_index = attr->alt_pkey_index;
1833                 context->alt_path.ackto = attr->alt_timeout << 3;
1834                 optpar |= MLX4_QP_OPTPAR_ALT_ADDR_PATH;
1835         }
1836
1837         pd = get_pd(qp);
1838         get_cqs(qp, &send_cq, &recv_cq);
1839         context->pd       = cpu_to_be32(pd->pdn);
1840         context->cqn_send = cpu_to_be32(send_cq->mcq.cqn);
1841         context->cqn_recv = cpu_to_be32(recv_cq->mcq.cqn);
1842         context->params1  = cpu_to_be32(MLX4_IB_ACK_REQ_FREQ << 28);
1843
1844         /* Set "fast registration enabled" for all kernel QPs */
1845         if (!qp->ibqp.uobject)
1846                 context->params1 |= cpu_to_be32(1 << 11);
1847
1848         if (attr_mask & IB_QP_RNR_RETRY) {
1849                 context->params1 |= cpu_to_be32(attr->rnr_retry << 13);
1850                 optpar |= MLX4_QP_OPTPAR_RNR_RETRY;
1851         }
1852
1853         if (attr_mask & IB_QP_RETRY_CNT) {
1854                 context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
1855                 optpar |= MLX4_QP_OPTPAR_RETRY_COUNT;
1856         }
1857
1858         if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
1859                 if (attr->max_rd_atomic)
1860                         context->params1 |=
1861                                 cpu_to_be32(fls(attr->max_rd_atomic - 1) << 21);
1862                 optpar |= MLX4_QP_OPTPAR_SRA_MAX;
1863         }
1864
1865         if (attr_mask & IB_QP_SQ_PSN)
1866                 context->next_send_psn = cpu_to_be32(attr->sq_psn);
1867
1868         if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
1869                 if (attr->max_dest_rd_atomic)
1870                         context->params2 |=
1871                                 cpu_to_be32(fls(attr->max_dest_rd_atomic - 1) << 21);
1872                 optpar |= MLX4_QP_OPTPAR_RRA_MAX;
1873         }
1874
1875         if (attr_mask & (IB_QP_ACCESS_FLAGS | IB_QP_MAX_DEST_RD_ATOMIC)) {
1876                 context->params2 |= to_mlx4_access_flags(qp, attr, attr_mask);
1877                 optpar |= MLX4_QP_OPTPAR_RWE | MLX4_QP_OPTPAR_RRE | MLX4_QP_OPTPAR_RAE;
1878         }
1879
1880         if (ibqp->srq)
1881                 context->params2 |= cpu_to_be32(MLX4_QP_BIT_RIC);
1882
1883         if (attr_mask & IB_QP_MIN_RNR_TIMER) {
1884                 context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
1885                 optpar |= MLX4_QP_OPTPAR_RNR_TIMEOUT;
1886         }
1887         if (attr_mask & IB_QP_RQ_PSN)
1888                 context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
1889
1890         /* proxy and tunnel qp qkeys will be changed in modify-qp wrappers */
1891         if (attr_mask & IB_QP_QKEY) {
1892                 if (qp->mlx4_ib_qp_type &
1893                     (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER))
1894                         context->qkey = cpu_to_be32(IB_QP_SET_QKEY);
1895                 else {
1896                         if (mlx4_is_mfunc(dev->dev) &&
1897                             !(qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV) &&
1898                             (attr->qkey & MLX4_RESERVED_QKEY_MASK) ==
1899                             MLX4_RESERVED_QKEY_BASE) {
1900                                 pr_err("Cannot use reserved QKEY"
1901                                        " 0x%x (range 0xffff0000..0xffffffff"
1902                                        " is reserved)\n", attr->qkey);
1903                                 err = -EINVAL;
1904                                 goto out;
1905                         }
1906                         context->qkey = cpu_to_be32(attr->qkey);
1907                 }
1908                 optpar |= MLX4_QP_OPTPAR_Q_KEY;
1909         }
1910
1911         if (ibqp->srq)
1912                 context->srqn = cpu_to_be32(1 << 24 | to_msrq(ibqp->srq)->msrq.srqn);
1913
1914         if (qp->rq.wqe_cnt && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
1915                 context->db_rec_addr = cpu_to_be64(qp->db.dma);
1916
1917         if (cur_state == IB_QPS_INIT &&
1918             new_state == IB_QPS_RTR  &&
1919             (ibqp->qp_type == IB_QPT_GSI || ibqp->qp_type == IB_QPT_SMI ||
1920              ibqp->qp_type == IB_QPT_UD ||
1921              ibqp->qp_type == IB_QPT_RAW_PACKET)) {
1922                 context->pri_path.sched_queue = (qp->port - 1) << 6;
1923                 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_SMI ||
1924                     qp->mlx4_ib_qp_type &
1925                     (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER)) {
1926                         context->pri_path.sched_queue |= MLX4_IB_DEFAULT_QP0_SCHED_QUEUE;
1927                         if (qp->mlx4_ib_qp_type != MLX4_IB_QPT_SMI)
1928                                 context->pri_path.fl = 0x80;
1929                 } else {
1930                         if (qp->mlx4_ib_qp_type & MLX4_IB_QPT_ANY_SRIOV)
1931                                 context->pri_path.fl = 0x80;
1932                         context->pri_path.sched_queue |= MLX4_IB_DEFAULT_SCHED_QUEUE;
1933                 }
1934                 if (rdma_port_get_link_layer(&dev->ib_dev, qp->port) ==
1935                     IB_LINK_LAYER_ETHERNET) {
1936                         if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_TUN_GSI ||
1937                             qp->mlx4_ib_qp_type == MLX4_IB_QPT_GSI)
1938                                 context->pri_path.feup = 1 << 7; /* don't fsm */
1939                         /* handle smac_index */
1940                         if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_UD ||
1941                             qp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI ||
1942                             qp->mlx4_ib_qp_type == MLX4_IB_QPT_TUN_GSI) {
1943                                 err = handle_eth_ud_smac_index(dev, qp, context);
1944                                 if (err) {
1945                                         err = -EINVAL;
1946                                         goto out;
1947                                 }
1948                                 if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_GSI)
1949                                         dev->qp1_proxy[qp->port - 1] = qp;
1950                         }
1951                 }
1952         }
1953
1954         if (qp->ibqp.qp_type == IB_QPT_RAW_PACKET) {
1955                 context->pri_path.ackto = (context->pri_path.ackto & 0xf8) |
1956                                         MLX4_IB_LINK_TYPE_ETH;
1957                 if (dev->dev->caps.tunnel_offload_mode ==  MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) {
1958                         /* set QP to receive both tunneled & non-tunneled packets */
1959                         if (!(context->flags & cpu_to_be32(1 << MLX4_RSS_QPC_FLAG_OFFSET)))
1960                                 context->srqn = cpu_to_be32(7 << 28);
1961                 }
1962         }
1963
1964         if (ibqp->qp_type == IB_QPT_UD && (new_state == IB_QPS_RTR)) {
1965                 int is_eth = rdma_port_get_link_layer(
1966                                 &dev->ib_dev, qp->port) ==
1967                                 IB_LINK_LAYER_ETHERNET;
1968                 if (is_eth) {
1969                         context->pri_path.ackto = MLX4_IB_LINK_TYPE_ETH;
1970                         optpar |= MLX4_QP_OPTPAR_PRIMARY_ADDR_PATH;
1971                 }
1972         }
1973
1974
1975         if (cur_state == IB_QPS_RTS && new_state == IB_QPS_SQD  &&
1976             attr_mask & IB_QP_EN_SQD_ASYNC_NOTIFY && attr->en_sqd_async_notify)
1977                 sqd_event = 1;
1978         else
1979                 sqd_event = 0;
1980
1981         if (!ibqp->uobject && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT)
1982                 context->rlkey_roce_mode |= (1 << 4);
1983
1984         /*
1985          * Before passing a kernel QP to the HW, make sure that the
1986          * ownership bits of the send queue are set and the SQ
1987          * headroom is stamped so that the hardware doesn't start
1988          * processing stale work requests.
1989          */
1990         if (!ibqp->uobject && cur_state == IB_QPS_RESET && new_state == IB_QPS_INIT) {
1991                 struct mlx4_wqe_ctrl_seg *ctrl;
1992                 int i;
1993
1994                 for (i = 0; i < qp->sq.wqe_cnt; ++i) {
1995                         ctrl = get_send_wqe(qp, i);
1996                         ctrl->owner_opcode = cpu_to_be32(1 << 31);
1997                         if (qp->sq_max_wqes_per_wr == 1)
1998                                 ctrl->qpn_vlan.fence_size =
1999                                                 1 << (qp->sq.wqe_shift - 4);
2000
2001                         stamp_send_wqe(qp, i, 1 << qp->sq.wqe_shift);
2002                 }
2003         }
2004
2005         err = mlx4_qp_modify(dev->dev, &qp->mtt, to_mlx4_state(cur_state),
2006                              to_mlx4_state(new_state), context, optpar,
2007                              sqd_event, &qp->mqp);
2008         if (err)
2009                 goto out;
2010
2011         qp->state = new_state;
2012
2013         if (attr_mask & IB_QP_ACCESS_FLAGS)
2014                 qp->atomic_rd_en = attr->qp_access_flags;
2015         if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
2016                 qp->resp_depth = attr->max_dest_rd_atomic;
2017         if (attr_mask & IB_QP_PORT) {
2018                 qp->port = attr->port_num;
2019                 update_mcg_macs(dev, qp);
2020         }
2021         if (attr_mask & IB_QP_ALT_PATH)
2022                 qp->alt_port = attr->alt_port_num;
2023
2024         if (is_sqp(dev, qp))
2025                 store_sqp_attrs(to_msqp(qp), attr, attr_mask);
2026
2027         /*
2028          * If we moved QP0 to RTR, bring the IB link up; if we moved
2029          * QP0 to RESET or ERROR, bring the link back down.
2030          */
2031         if (is_qp0(dev, qp)) {
2032                 if (cur_state != IB_QPS_RTR && new_state == IB_QPS_RTR)
2033                         if (mlx4_INIT_PORT(dev->dev, qp->port))
2034                                 pr_warn("INIT_PORT failed for port %d\n",
2035                                        qp->port);
2036
2037                 if (cur_state != IB_QPS_RESET && cur_state != IB_QPS_ERR &&
2038                     (new_state == IB_QPS_RESET || new_state == IB_QPS_ERR))
2039                         mlx4_CLOSE_PORT(dev->dev, qp->port);
2040         }
2041
2042         /*
2043          * If we moved a kernel QP to RESET, clean up all old CQ
2044          * entries and reinitialize the QP.
2045          */
2046         if (new_state == IB_QPS_RESET) {
2047                 if (!ibqp->uobject) {
2048                         mlx4_ib_cq_clean(recv_cq, qp->mqp.qpn,
2049                                          ibqp->srq ? to_msrq(ibqp->srq) : NULL);
2050                         if (send_cq != recv_cq)
2051                                 mlx4_ib_cq_clean(send_cq, qp->mqp.qpn, NULL);
2052
2053                         qp->rq.head = 0;
2054                         qp->rq.tail = 0;
2055                         qp->sq.head = 0;
2056                         qp->sq.tail = 0;
2057                         qp->sq_next_wqe = 0;
2058                         if (qp->rq.wqe_cnt)
2059                                 *qp->db.db  = 0;
2060
2061                         if (qp->flags & MLX4_IB_QP_NETIF)
2062                                 mlx4_ib_steer_qp_reg(dev, qp, 0);
2063                 }
2064                 if (qp->pri.smac || (!qp->pri.smac && qp->pri.smac_port)) {
2065                         mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
2066                         qp->pri.smac = 0;
2067                         qp->pri.smac_port = 0;
2068                 }
2069                 if (qp->alt.smac) {
2070                         mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
2071                         qp->alt.smac = 0;
2072                 }
2073                 if (qp->pri.vid < 0x1000) {
2074                         mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port, qp->pri.vid);
2075                         qp->pri.vid = 0xFFFF;
2076                         qp->pri.candidate_vid = 0xFFFF;
2077                         qp->pri.update_vid = 0;
2078                 }
2079
2080                 if (qp->alt.vid < 0x1000) {
2081                         mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port, qp->alt.vid);
2082                         qp->alt.vid = 0xFFFF;
2083                         qp->alt.candidate_vid = 0xFFFF;
2084                         qp->alt.update_vid = 0;
2085                 }
2086         }
2087 out:
2088         if (err && qp->counter_index)
2089                 mlx4_ib_free_qp_counter(dev, qp);
2090         if (err && steer_qp)
2091                 mlx4_ib_steer_qp_reg(dev, qp, 0);
2092         kfree(context);
2093         if (qp->pri.candidate_smac ||
2094             (!qp->pri.candidate_smac && qp->pri.candidate_smac_port)) {
2095                 if (err) {
2096                         mlx4_unregister_mac(dev->dev, qp->pri.candidate_smac_port, qp->pri.candidate_smac);
2097                 } else {
2098                         if (qp->pri.smac || (!qp->pri.smac && qp->pri.smac_port))
2099                                 mlx4_unregister_mac(dev->dev, qp->pri.smac_port, qp->pri.smac);
2100                         qp->pri.smac = qp->pri.candidate_smac;
2101                         qp->pri.smac_index = qp->pri.candidate_smac_index;
2102                         qp->pri.smac_port = qp->pri.candidate_smac_port;
2103                 }
2104                 qp->pri.candidate_smac = 0;
2105                 qp->pri.candidate_smac_index = 0;
2106                 qp->pri.candidate_smac_port = 0;
2107         }
2108         if (qp->alt.candidate_smac) {
2109                 if (err) {
2110                         mlx4_unregister_mac(dev->dev, qp->alt.candidate_smac_port, qp->alt.candidate_smac);
2111                 } else {
2112                         if (qp->alt.smac)
2113                                 mlx4_unregister_mac(dev->dev, qp->alt.smac_port, qp->alt.smac);
2114                         qp->alt.smac = qp->alt.candidate_smac;
2115                         qp->alt.smac_index = qp->alt.candidate_smac_index;
2116                         qp->alt.smac_port = qp->alt.candidate_smac_port;
2117                 }
2118                 qp->alt.candidate_smac = 0;
2119                 qp->alt.candidate_smac_index = 0;
2120                 qp->alt.candidate_smac_port = 0;
2121         }
2122
2123         if (qp->pri.update_vid) {
2124                 if (err) {
2125                         if (qp->pri.candidate_vid < 0x1000)
2126                                 mlx4_unregister_vlan(dev->dev, qp->pri.candidate_vlan_port,
2127                                                      qp->pri.candidate_vid);
2128                 } else {
2129                         if (qp->pri.vid < 0x1000)
2130                                 mlx4_unregister_vlan(dev->dev, qp->pri.vlan_port,
2131                                                      qp->pri.vid);
2132                         qp->pri.vid = qp->pri.candidate_vid;
2133                         qp->pri.vlan_port = qp->pri.candidate_vlan_port;
2134                         qp->pri.vlan_index =  qp->pri.candidate_vlan_index;
2135                 }
2136                 qp->pri.candidate_vid = 0xFFFF;
2137                 qp->pri.update_vid = 0;
2138         }
2139
2140         if (qp->alt.update_vid) {
2141                 if (err) {
2142                         if (qp->alt.candidate_vid < 0x1000)
2143                                 mlx4_unregister_vlan(dev->dev, qp->alt.candidate_vlan_port,
2144                                                      qp->alt.candidate_vid);
2145                 } else {
2146                         if (qp->alt.vid < 0x1000)
2147                                 mlx4_unregister_vlan(dev->dev, qp->alt.vlan_port,
2148                                                      qp->alt.vid);
2149                         qp->alt.vid = qp->alt.candidate_vid;
2150                         qp->alt.vlan_port = qp->alt.candidate_vlan_port;
2151                         qp->alt.vlan_index =  qp->alt.candidate_vlan_index;
2152                 }
2153                 qp->alt.candidate_vid = 0xFFFF;
2154                 qp->alt.update_vid = 0;
2155         }
2156
2157         return err;
2158 }
2159
2160 static int _mlx4_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
2161                               int attr_mask, struct ib_udata *udata)
2162 {
2163         struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
2164         struct mlx4_ib_qp *qp = to_mqp(ibqp);
2165         enum ib_qp_state cur_state, new_state;
2166         int err = -EINVAL;
2167         int ll;
2168         mutex_lock(&qp->mutex);
2169
2170         cur_state = attr_mask & IB_QP_CUR_STATE ? attr->cur_qp_state : qp->state;
2171         new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state;
2172
2173         if (cur_state == new_state && cur_state == IB_QPS_RESET) {
2174                 ll = IB_LINK_LAYER_UNSPECIFIED;
2175         } else {
2176                 int port = attr_mask & IB_QP_PORT ? attr->port_num : qp->port;
2177                 ll = rdma_port_get_link_layer(&dev->ib_dev, port);
2178         }
2179
2180         if (!ib_modify_qp_is_ok(cur_state, new_state, ibqp->qp_type,
2181                                 attr_mask, ll)) {
2182                 pr_debug("qpn 0x%x: invalid attribute mask specified "
2183                          "for transition %d to %d. qp_type %d,"
2184                          " attr_mask 0x%x\n",
2185                          ibqp->qp_num, cur_state, new_state,
2186                          ibqp->qp_type, attr_mask);
2187                 goto out;
2188         }
2189
2190         if (mlx4_is_bonded(dev->dev) && (attr_mask & IB_QP_PORT)) {
2191                 if ((cur_state == IB_QPS_RESET) && (new_state == IB_QPS_INIT)) {
2192                         if ((ibqp->qp_type == IB_QPT_RC) ||
2193                             (ibqp->qp_type == IB_QPT_UD) ||
2194                             (ibqp->qp_type == IB_QPT_UC) ||
2195                             (ibqp->qp_type == IB_QPT_RAW_PACKET) ||
2196                             (ibqp->qp_type == IB_QPT_XRC_INI)) {
2197                                 attr->port_num = mlx4_ib_bond_next_port(dev);
2198                         }
2199                 } else {
2200                         /* no sense in changing port_num
2201                          * when ports are bonded */
2202                         attr_mask &= ~IB_QP_PORT;
2203                 }
2204         }
2205
2206         if ((attr_mask & IB_QP_PORT) &&
2207             (attr->port_num == 0 || attr->port_num > dev->num_ports)) {
2208                 pr_debug("qpn 0x%x: invalid port number (%d) specified "
2209                          "for transition %d to %d. qp_type %d\n",
2210                          ibqp->qp_num, attr->port_num, cur_state,
2211                          new_state, ibqp->qp_type);
2212                 goto out;
2213         }
2214
2215         if ((attr_mask & IB_QP_PORT) && (ibqp->qp_type == IB_QPT_RAW_PACKET) &&
2216             (rdma_port_get_link_layer(&dev->ib_dev, attr->port_num) !=
2217              IB_LINK_LAYER_ETHERNET))
2218                 goto out;
2219
2220         if (attr_mask & IB_QP_PKEY_INDEX) {
2221                 int p = attr_mask & IB_QP_PORT ? attr->port_num : qp->port;
2222                 if (attr->pkey_index >= dev->dev->caps.pkey_table_len[p]) {
2223                         pr_debug("qpn 0x%x: invalid pkey index (%d) specified "
2224                                  "for transition %d to %d. qp_type %d\n",
2225                                  ibqp->qp_num, attr->pkey_index, cur_state,
2226                                  new_state, ibqp->qp_type);
2227                         goto out;
2228                 }
2229         }
2230
2231         if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC &&
2232             attr->max_rd_atomic > dev->dev->caps.max_qp_init_rdma) {
2233                 pr_debug("qpn 0x%x: max_rd_atomic (%d) too large. "
2234                          "Transition %d to %d. qp_type %d\n",
2235                          ibqp->qp_num, attr->max_rd_atomic, cur_state,
2236                          new_state, ibqp->qp_type);
2237                 goto out;
2238         }
2239
2240         if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC &&
2241             attr->max_dest_rd_atomic > dev->dev->caps.max_qp_dest_rdma) {
2242                 pr_debug("qpn 0x%x: max_dest_rd_atomic (%d) too large. "
2243                          "Transition %d to %d. qp_type %d\n",
2244                          ibqp->qp_num, attr->max_dest_rd_atomic, cur_state,
2245                          new_state, ibqp->qp_type);
2246                 goto out;
2247         }
2248
2249         if (cur_state == new_state && cur_state == IB_QPS_RESET) {
2250                 err = 0;
2251                 goto out;
2252         }
2253
2254         err = __mlx4_ib_modify_qp(ibqp, attr, attr_mask, cur_state, new_state);
2255
2256         if (mlx4_is_bonded(dev->dev) && (attr_mask & IB_QP_PORT))
2257                 attr->port_num = 1;
2258
2259 out:
2260         mutex_unlock(&qp->mutex);
2261         return err;
2262 }
2263
2264 int mlx4_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
2265                       int attr_mask, struct ib_udata *udata)
2266 {
2267         struct mlx4_ib_qp *mqp = to_mqp(ibqp);
2268         int ret;
2269
2270         ret = _mlx4_ib_modify_qp(ibqp, attr, attr_mask, udata);
2271
2272         if (mqp->mlx4_ib_qp_type == MLX4_IB_QPT_GSI) {
2273                 struct mlx4_ib_sqp *sqp = to_msqp(mqp);
2274                 int err = 0;
2275
2276                 if (sqp->roce_v2_gsi)
2277                         err = ib_modify_qp(sqp->roce_v2_gsi, attr, attr_mask);
2278                 if (err)
2279                         pr_err("Failed to modify GSI QP for RoCEv2 (%d)\n",
2280                                err);
2281         }
2282         return ret;
2283 }
2284
2285 static int vf_get_qp0_qkey(struct mlx4_dev *dev, int qpn, u32 *qkey)
2286 {
2287         int i;
2288         for (i = 0; i < dev->caps.num_ports; i++) {
2289                 if (qpn == dev->caps.qp0_proxy[i] ||
2290                     qpn == dev->caps.qp0_tunnel[i]) {
2291                         *qkey = dev->caps.qp0_qkey[i];
2292                         return 0;
2293                 }
2294         }
2295         return -EINVAL;
2296 }
2297
2298 static int build_sriov_qp0_header(struct mlx4_ib_sqp *sqp,
2299                                   struct ib_ud_wr *wr,
2300                                   void *wqe, unsigned *mlx_seg_len)
2301 {
2302         struct mlx4_ib_dev *mdev = to_mdev(sqp->qp.ibqp.device);
2303         struct ib_device *ib_dev = &mdev->ib_dev;
2304         struct mlx4_wqe_mlx_seg *mlx = wqe;
2305         struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
2306         struct mlx4_ib_ah *ah = to_mah(wr->ah);
2307         u16 pkey;
2308         u32 qkey;
2309         int send_size;
2310         int header_size;
2311         int spc;
2312         int err;
2313         int i;
2314
2315         if (wr->wr.opcode != IB_WR_SEND)
2316                 return -EINVAL;
2317
2318         send_size = 0;
2319
2320         for (i = 0; i < wr->wr.num_sge; ++i)
2321                 send_size += wr->wr.sg_list[i].length;
2322
2323         /* for proxy-qp0 sends, need to add in size of tunnel header */
2324         /* for tunnel-qp0 sends, tunnel header is already in s/g list */
2325         if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_SMI_OWNER)
2326                 send_size += sizeof (struct mlx4_ib_tunnel_header);
2327
2328         ib_ud_header_init(send_size, 1, 0, 0, 0, 0, 0, 0, &sqp->ud_header);
2329
2330         if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_PROXY_SMI_OWNER) {
2331                 sqp->ud_header.lrh.service_level =
2332                         be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 28;
2333                 sqp->ud_header.lrh.destination_lid =
2334                         cpu_to_be16(ah->av.ib.g_slid & 0x7f);
2335                 sqp->ud_header.lrh.source_lid =
2336                         cpu_to_be16(ah->av.ib.g_slid & 0x7f);
2337         }
2338
2339         mlx->flags &= cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
2340
2341         /* force loopback */
2342         mlx->flags |= cpu_to_be32(MLX4_WQE_MLX_VL15 | 0x1 | MLX4_WQE_MLX_SLR);
2343         mlx->rlid = sqp->ud_header.lrh.destination_lid;
2344
2345         sqp->ud_header.lrh.virtual_lane    = 0;
2346         sqp->ud_header.bth.solicited_event = !!(wr->wr.send_flags & IB_SEND_SOLICITED);
2347         err = ib_get_cached_pkey(ib_dev, sqp->qp.port, 0, &pkey);
2348         if (err)
2349                 return err;
2350         sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
2351         if (sqp->qp.mlx4_ib_qp_type == MLX4_IB_QPT_TUN_SMI_OWNER)
2352                 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->remote_qpn);
2353         else
2354                 sqp->ud_header.bth.destination_qpn =
2355                         cpu_to_be32(mdev->dev->caps.qp0_tunnel[sqp->qp.port - 1]);
2356
2357         sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
2358         if (mlx4_is_master(mdev->dev)) {
2359                 if (mlx4_get_parav_qkey(mdev->dev, sqp->qp.mqp.qpn, &qkey))
2360                         return -EINVAL;
2361         } else {
2362                 if (vf_get_qp0_qkey(mdev->dev, sqp->qp.mqp.qpn, &qkey))
2363                         return -EINVAL;
2364         }
2365         sqp->ud_header.deth.qkey = cpu_to_be32(qkey);
2366         sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.mqp.qpn);
2367
2368         sqp->ud_header.bth.opcode        = IB_OPCODE_UD_SEND_ONLY;
2369         sqp->ud_header.immediate_present = 0;
2370
2371         header_size = ib_ud_header_pack(&sqp->ud_header, sqp->header_buf);
2372
2373         /*
2374          * Inline data segments may not cross a 64 byte boundary.  If
2375          * our UD header is bigger than the space available up to the
2376          * next 64 byte boundary in the WQE, use two inline data
2377          * segments to hold the UD header.
2378          */
2379         spc = MLX4_INLINE_ALIGN -
2380               ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2381         if (header_size <= spc) {
2382                 inl->byte_count = cpu_to_be32(1 << 31 | header_size);
2383                 memcpy(inl + 1, sqp->header_buf, header_size);
2384                 i = 1;
2385         } else {
2386                 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2387                 memcpy(inl + 1, sqp->header_buf, spc);
2388
2389                 inl = (void *) (inl + 1) + spc;
2390                 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
2391                 /*
2392                  * Need a barrier here to make sure all the data is
2393                  * visible before the byte_count field is set.
2394                  * Otherwise the HCA prefetcher could grab the 64-byte
2395                  * chunk with this inline segment and get a valid (!=
2396                  * 0xffffffff) byte count but stale data, and end up
2397                  * generating a packet with bad headers.
2398                  *
2399                  * The first inline segment's byte_count field doesn't
2400                  * need a barrier, because it comes after a
2401                  * control/MLX segment and therefore is at an offset
2402                  * of 16 mod 64.
2403                  */
2404                 wmb();
2405                 inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc));
2406                 i = 2;
2407         }
2408
2409         *mlx_seg_len =
2410         ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + header_size, 16);
2411         return 0;
2412 }
2413
2414 static u8 sl_to_vl(struct mlx4_ib_dev *dev, u8 sl, int port_num)
2415 {
2416         union sl2vl_tbl_to_u64 tmp_vltab;
2417         u8 vl;
2418
2419         if (sl > 15)
2420                 return 0xf;
2421         tmp_vltab.sl64 = atomic64_read(&dev->sl2vl[port_num - 1]);
2422         vl = tmp_vltab.sl8[sl >> 1];
2423         if (sl & 1)
2424                 vl &= 0x0f;
2425         else
2426                 vl >>= 4;
2427         return vl;
2428 }
2429
2430 #define MLX4_ROCEV2_QP1_SPORT 0xC000
2431 static int build_mlx_header(struct mlx4_ib_sqp *sqp, struct ib_ud_wr *wr,
2432                             void *wqe, unsigned *mlx_seg_len)
2433 {
2434         struct ib_device *ib_dev = sqp->qp.ibqp.device;
2435         struct mlx4_wqe_mlx_seg *mlx = wqe;
2436         struct mlx4_wqe_ctrl_seg *ctrl = wqe;
2437         struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
2438         struct mlx4_ib_ah *ah = to_mah(wr->ah);
2439         union ib_gid sgid;
2440         u16 pkey;
2441         int send_size;
2442         int header_size;
2443         int spc;
2444         int i;
2445         int err = 0;
2446         u16 vlan = 0xffff;
2447         bool is_eth;
2448         bool is_vlan = false;
2449         bool is_grh;
2450         bool is_udp = false;
2451         int ip_version = 0;
2452
2453         send_size = 0;
2454         for (i = 0; i < wr->wr.num_sge; ++i)
2455                 send_size += wr->wr.sg_list[i].length;
2456
2457         is_eth = rdma_port_get_link_layer(sqp->qp.ibqp.device, sqp->qp.port) == IB_LINK_LAYER_ETHERNET;
2458         is_grh = mlx4_ib_ah_grh_present(ah);
2459         if (is_eth) {
2460                 struct ib_gid_attr gid_attr;
2461
2462                 if (mlx4_is_mfunc(to_mdev(ib_dev)->dev)) {
2463                         /* When multi-function is enabled, the ib_core gid
2464                          * indexes don't necessarily match the hw ones, so
2465                          * we must use our own cache */
2466                         err = mlx4_get_roce_gid_from_slave(to_mdev(ib_dev)->dev,
2467                                                            be32_to_cpu(ah->av.ib.port_pd) >> 24,
2468                                                            ah->av.ib.gid_index, &sgid.raw[0]);
2469                         if (err)
2470                                 return err;
2471                 } else  {
2472                         err = ib_get_cached_gid(ib_dev,
2473                                                 be32_to_cpu(ah->av.ib.port_pd) >> 24,
2474                                                 ah->av.ib.gid_index, &sgid,
2475                                                 &gid_attr);
2476                         if (!err) {
2477                                 if (gid_attr.ndev)
2478                                         dev_put(gid_attr.ndev);
2479                                 if (!memcmp(&sgid, &zgid, sizeof(sgid)))
2480                                         err = -ENOENT;
2481                         }
2482                         if (!err) {
2483                                 is_udp = gid_attr.gid_type == IB_GID_TYPE_ROCE_UDP_ENCAP;
2484                                 if (is_udp) {
2485                                         if (ipv6_addr_v4mapped((struct in6_addr *)&sgid))
2486                                                 ip_version = 4;
2487                                         else
2488                                                 ip_version = 6;
2489                                         is_grh = false;
2490                                 }
2491                         } else {
2492                                 return err;
2493                         }
2494                 }
2495                 if (ah->av.eth.vlan != cpu_to_be16(0xffff)) {
2496                         vlan = be16_to_cpu(ah->av.eth.vlan) & 0x0fff;
2497                         is_vlan = 1;
2498                 }
2499         }
2500         err = ib_ud_header_init(send_size, !is_eth, is_eth, is_vlan, is_grh,
2501                           ip_version, is_udp, 0, &sqp->ud_header);
2502         if (err)
2503                 return err;
2504
2505         if (!is_eth) {
2506                 sqp->ud_header.lrh.service_level =
2507                         be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 28;
2508                 sqp->ud_header.lrh.destination_lid = ah->av.ib.dlid;
2509                 sqp->ud_header.lrh.source_lid = cpu_to_be16(ah->av.ib.g_slid & 0x7f);
2510         }
2511
2512         if (is_grh || (ip_version == 6)) {
2513                 sqp->ud_header.grh.traffic_class =
2514                         (be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 20) & 0xff;
2515                 sqp->ud_header.grh.flow_label    =
2516                         ah->av.ib.sl_tclass_flowlabel & cpu_to_be32(0xfffff);
2517                 sqp->ud_header.grh.hop_limit     = ah->av.ib.hop_limit;
2518                 if (is_eth) {
2519                         memcpy(sqp->ud_header.grh.source_gid.raw, sgid.raw, 16);
2520                 } else {
2521                         if (mlx4_is_mfunc(to_mdev(ib_dev)->dev)) {
2522                                 /* When multi-function is enabled, the ib_core gid
2523                                  * indexes don't necessarily match the hw ones, so
2524                                  * we must use our own cache
2525                                  */
2526                                 sqp->ud_header.grh.source_gid.global.subnet_prefix =
2527                                         cpu_to_be64(atomic64_read(&(to_mdev(ib_dev)->sriov.
2528                                                                     demux[sqp->qp.port - 1].
2529                                                                     subnet_prefix)));
2530                                 sqp->ud_header.grh.source_gid.global.interface_id =
2531                                         to_mdev(ib_dev)->sriov.demux[sqp->qp.port - 1].
2532                                                        guid_cache[ah->av.ib.gid_index];
2533                         } else {
2534                                 ib_get_cached_gid(ib_dev,
2535                                                   be32_to_cpu(ah->av.ib.port_pd) >> 24,
2536                                                   ah->av.ib.gid_index,
2537                                                   &sqp->ud_header.grh.source_gid, NULL);
2538                         }
2539                 }
2540                 memcpy(sqp->ud_header.grh.destination_gid.raw,
2541                        ah->av.ib.dgid, 16);
2542         }
2543
2544         if (ip_version == 4) {
2545                 sqp->ud_header.ip4.tos =
2546                         (be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 20) & 0xff;
2547                 sqp->ud_header.ip4.id = 0;
2548                 sqp->ud_header.ip4.frag_off = htons(IP_DF);
2549                 sqp->ud_header.ip4.ttl = ah->av.eth.hop_limit;
2550
2551                 memcpy(&sqp->ud_header.ip4.saddr,
2552                        sgid.raw + 12, 4);
2553                 memcpy(&sqp->ud_header.ip4.daddr, ah->av.ib.dgid + 12, 4);
2554                 sqp->ud_header.ip4.check = ib_ud_ip4_csum(&sqp->ud_header);
2555         }
2556
2557         if (is_udp) {
2558                 sqp->ud_header.udp.dport = htons(ROCE_V2_UDP_DPORT);
2559                 sqp->ud_header.udp.sport = htons(MLX4_ROCEV2_QP1_SPORT);
2560                 sqp->ud_header.udp.csum = 0;
2561         }
2562
2563         mlx->flags &= cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE);
2564
2565         if (!is_eth) {
2566                 mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MLX4_WQE_MLX_VL15 : 0) |
2567                                           (sqp->ud_header.lrh.destination_lid ==
2568                                            IB_LID_PERMISSIVE ? MLX4_WQE_MLX_SLR : 0) |
2569                                           (sqp->ud_header.lrh.service_level << 8));
2570                 if (ah->av.ib.port_pd & cpu_to_be32(0x80000000))
2571                         mlx->flags |= cpu_to_be32(0x1); /* force loopback */
2572                 mlx->rlid = sqp->ud_header.lrh.destination_lid;
2573         }
2574
2575         switch (wr->wr.opcode) {
2576         case IB_WR_SEND:
2577                 sqp->ud_header.bth.opcode        = IB_OPCODE_UD_SEND_ONLY;
2578                 sqp->ud_header.immediate_present = 0;
2579                 break;
2580         case IB_WR_SEND_WITH_IMM:
2581                 sqp->ud_header.bth.opcode        = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
2582                 sqp->ud_header.immediate_present = 1;
2583                 sqp->ud_header.immediate_data    = wr->wr.ex.imm_data;
2584                 break;
2585         default:
2586                 return -EINVAL;
2587         }
2588
2589         if (is_eth) {
2590                 struct in6_addr in6;
2591                 u16 ether_type;
2592                 u16 pcp = (be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 29) << 13;
2593
2594                 ether_type = (!is_udp) ? MLX4_IB_IBOE_ETHERTYPE :
2595                         (ip_version == 4 ? ETH_P_IP : ETH_P_IPV6);
2596
2597                 mlx->sched_prio = cpu_to_be16(pcp);
2598
2599                 ether_addr_copy(sqp->ud_header.eth.smac_h, ah->av.eth.s_mac);
2600                 memcpy(sqp->ud_header.eth.dmac_h, ah->av.eth.mac, 6);
2601                 memcpy(&ctrl->srcrb_flags16[0], ah->av.eth.mac, 2);
2602                 memcpy(&ctrl->imm, ah->av.eth.mac + 2, 4);
2603                 memcpy(&in6, sgid.raw, sizeof(in6));
2604
2605
2606                 if (!memcmp(sqp->ud_header.eth.smac_h, sqp->ud_header.eth.dmac_h, 6))
2607                         mlx->flags |= cpu_to_be32(MLX4_WQE_CTRL_FORCE_LOOPBACK);
2608                 if (!is_vlan) {
2609                         sqp->ud_header.eth.type = cpu_to_be16(ether_type);
2610                 } else {
2611                         sqp->ud_header.vlan.type = cpu_to_be16(ether_type);
2612                         sqp->ud_header.vlan.tag = cpu_to_be16(vlan | pcp);
2613                 }
2614         } else {
2615                 sqp->ud_header.lrh.virtual_lane    = !sqp->qp.ibqp.qp_num ? 15 :
2616                                                         sl_to_vl(to_mdev(ib_dev),
2617                                                                  sqp->ud_header.lrh.service_level,
2618                                                                  sqp->qp.port);
2619                 if (sqp->qp.ibqp.qp_num && sqp->ud_header.lrh.virtual_lane == 15)
2620                         return -EINVAL;
2621                 if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE)
2622                         sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE;
2623         }
2624         sqp->ud_header.bth.solicited_event = !!(wr->wr.send_flags & IB_SEND_SOLICITED);
2625         if (!sqp->qp.ibqp.qp_num)
2626                 err = ib_get_cached_pkey(ib_dev, sqp->qp.port, sqp->pkey_index,
2627                                          &pkey);
2628         else
2629                 err = ib_get_cached_pkey(ib_dev, sqp->qp.port, wr->pkey_index,
2630                                          &pkey);
2631         if (err)
2632                 return err;
2633
2634         sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
2635         sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->remote_qpn);
2636         sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
2637         sqp->ud_header.deth.qkey = cpu_to_be32(wr->remote_qkey & 0x80000000 ?
2638                                                sqp->qkey : wr->remote_qkey);
2639         sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
2640
2641         header_size = ib_ud_header_pack(&sqp->ud_header, sqp->header_buf);
2642
2643         if (0) {
2644                 pr_err("built UD header of size %d:\n", header_size);
2645                 for (i = 0; i < header_size / 4; ++i) {
2646                         if (i % 8 == 0)
2647                                 pr_err("  [%02x] ", i * 4);
2648                         pr_cont(" %08x",
2649                                 be32_to_cpu(((__be32 *) sqp->header_buf)[i]));
2650                         if ((i + 1) % 8 == 0)
2651                                 pr_cont("\n");
2652                 }
2653                 pr_err("\n");
2654         }
2655
2656         /*
2657          * Inline data segments may not cross a 64 byte boundary.  If
2658          * our UD header is bigger than the space available up to the
2659          * next 64 byte boundary in the WQE, use two inline data
2660          * segments to hold the UD header.
2661          */
2662         spc = MLX4_INLINE_ALIGN -
2663                 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2664         if (header_size <= spc) {
2665                 inl->byte_count = cpu_to_be32(1 << 31 | header_size);
2666                 memcpy(inl + 1, sqp->header_buf, header_size);
2667                 i = 1;
2668         } else {
2669                 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2670                 memcpy(inl + 1, sqp->header_buf, spc);
2671
2672                 inl = (void *) (inl + 1) + spc;
2673                 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
2674                 /*
2675                  * Need a barrier here to make sure all the data is
2676                  * visible before the byte_count field is set.
2677                  * Otherwise the HCA prefetcher could grab the 64-byte
2678                  * chunk with this inline segment and get a valid (!=
2679                  * 0xffffffff) byte count but stale data, and end up
2680                  * generating a packet with bad headers.
2681                  *
2682                  * The first inline segment's byte_count field doesn't
2683                  * need a barrier, because it comes after a
2684                  * control/MLX segment and therefore is at an offset
2685                  * of 16 mod 64.
2686                  */
2687                 wmb();
2688                 inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc));
2689                 i = 2;
2690         }
2691
2692         *mlx_seg_len =
2693                 ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + header_size, 16);
2694         return 0;
2695 }
2696
2697 static int mlx4_wq_overflow(struct mlx4_ib_wq *wq, int nreq, struct ib_cq *ib_cq)
2698 {
2699         unsigned cur;
2700         struct mlx4_ib_cq *cq;
2701
2702         cur = wq->head - wq->tail;
2703         if (likely(cur + nreq < wq->max_post))
2704                 return 0;
2705
2706         cq = to_mcq(ib_cq);
2707         spin_lock(&cq->lock);
2708         cur = wq->head - wq->tail;
2709         spin_unlock(&cq->lock);
2710
2711         return cur + nreq >= wq->max_post;
2712 }
2713
2714 static __be32 convert_access(int acc)
2715 {
2716         return (acc & IB_ACCESS_REMOTE_ATOMIC ?
2717                 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_ATOMIC)       : 0) |
2718                (acc & IB_ACCESS_REMOTE_WRITE  ?
2719                 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_WRITE) : 0) |
2720                (acc & IB_ACCESS_REMOTE_READ   ?
2721                 cpu_to_be32(MLX4_WQE_FMR_AND_BIND_PERM_REMOTE_READ)  : 0) |
2722                (acc & IB_ACCESS_LOCAL_WRITE   ? cpu_to_be32(MLX4_WQE_FMR_PERM_LOCAL_WRITE)  : 0) |
2723                 cpu_to_be32(MLX4_WQE_FMR_PERM_LOCAL_READ);
2724 }
2725
2726 static void set_reg_seg(struct mlx4_wqe_fmr_seg *fseg,
2727                         struct ib_reg_wr *wr)
2728 {
2729         struct mlx4_ib_mr *mr = to_mmr(wr->mr);
2730
2731         fseg->flags             = convert_access(wr->access);
2732         fseg->mem_key           = cpu_to_be32(wr->key);
2733         fseg->buf_list          = cpu_to_be64(mr->page_map);
2734         fseg->start_addr        = cpu_to_be64(mr->ibmr.iova);
2735         fseg->reg_len           = cpu_to_be64(mr->ibmr.length);
2736         fseg->offset            = 0; /* XXX -- is this just for ZBVA? */
2737         fseg->page_size         = cpu_to_be32(ilog2(mr->ibmr.page_size));
2738         fseg->reserved[0]       = 0;
2739         fseg->reserved[1]       = 0;
2740 }
2741
2742 static void set_local_inv_seg(struct mlx4_wqe_local_inval_seg *iseg, u32 rkey)
2743 {
2744         memset(iseg, 0, sizeof(*iseg));
2745         iseg->mem_key = cpu_to_be32(rkey);
2746 }
2747
2748 static __always_inline void set_raddr_seg(struct mlx4_wqe_raddr_seg *rseg,
2749                                           u64 remote_addr, u32 rkey)
2750 {
2751         rseg->raddr    = cpu_to_be64(remote_addr);
2752         rseg->rkey     = cpu_to_be32(rkey);
2753         rseg->reserved = 0;
2754 }
2755
2756 static void set_atomic_seg(struct mlx4_wqe_atomic_seg *aseg,
2757                 struct ib_atomic_wr *wr)
2758 {
2759         if (wr->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
2760                 aseg->swap_add = cpu_to_be64(wr->swap);
2761                 aseg->compare  = cpu_to_be64(wr->compare_add);
2762         } else if (wr->wr.opcode == IB_WR_MASKED_ATOMIC_FETCH_AND_ADD) {
2763                 aseg->swap_add = cpu_to_be64(wr->compare_add);
2764                 aseg->compare  = cpu_to_be64(wr->compare_add_mask);
2765         } else {
2766                 aseg->swap_add = cpu_to_be64(wr->compare_add);
2767                 aseg->compare  = 0;
2768         }
2769
2770 }
2771
2772 static void set_masked_atomic_seg(struct mlx4_wqe_masked_atomic_seg *aseg,
2773                                   struct ib_atomic_wr *wr)
2774 {
2775         aseg->swap_add          = cpu_to_be64(wr->swap);
2776         aseg->swap_add_mask     = cpu_to_be64(wr->swap_mask);
2777         aseg->compare           = cpu_to_be64(wr->compare_add);
2778         aseg->compare_mask      = cpu_to_be64(wr->compare_add_mask);
2779 }
2780
2781 static void set_datagram_seg(struct mlx4_wqe_datagram_seg *dseg,
2782                              struct ib_ud_wr *wr)
2783 {
2784         memcpy(dseg->av, &to_mah(wr->ah)->av, sizeof (struct mlx4_av));
2785         dseg->dqpn = cpu_to_be32(wr->remote_qpn);
2786         dseg->qkey = cpu_to_be32(wr->remote_qkey);
2787         dseg->vlan = to_mah(wr->ah)->av.eth.vlan;
2788         memcpy(dseg->mac, to_mah(wr->ah)->av.eth.mac, 6);
2789 }
2790
2791 static void set_tunnel_datagram_seg(struct mlx4_ib_dev *dev,
2792                                     struct mlx4_wqe_datagram_seg *dseg,
2793                                     struct ib_ud_wr *wr,
2794                                     enum mlx4_ib_qp_type qpt)
2795 {
2796         union mlx4_ext_av *av = &to_mah(wr->ah)->av;
2797         struct mlx4_av sqp_av = {0};
2798         int port = *((u8 *) &av->ib.port_pd) & 0x3;
2799
2800         /* force loopback */
2801         sqp_av.port_pd = av->ib.port_pd | cpu_to_be32(0x80000000);
2802         sqp_av.g_slid = av->ib.g_slid & 0x7f; /* no GRH */
2803         sqp_av.sl_tclass_flowlabel = av->ib.sl_tclass_flowlabel &
2804                         cpu_to_be32(0xf0000000);
2805
2806         memcpy(dseg->av, &sqp_av, sizeof (struct mlx4_av));
2807         if (qpt == MLX4_IB_QPT_PROXY_GSI)
2808                 dseg->dqpn = cpu_to_be32(dev->dev->caps.qp1_tunnel[port - 1]);
2809         else
2810                 dseg->dqpn = cpu_to_be32(dev->dev->caps.qp0_tunnel[port - 1]);
2811         /* Use QKEY from the QP context, which is set by master */
2812         dseg->qkey = cpu_to_be32(IB_QP_SET_QKEY);
2813 }
2814
2815 static void build_tunnel_header(struct ib_ud_wr *wr, void *wqe, unsigned *mlx_seg_len)
2816 {
2817         struct mlx4_wqe_inline_seg *inl = wqe;
2818         struct mlx4_ib_tunnel_header hdr;
2819         struct mlx4_ib_ah *ah = to_mah(wr->ah);
2820         int spc;
2821         int i;
2822
2823         memcpy(&hdr.av, &ah->av, sizeof hdr.av);
2824         hdr.remote_qpn = cpu_to_be32(wr->remote_qpn);
2825         hdr.pkey_index = cpu_to_be16(wr->pkey_index);
2826         hdr.qkey = cpu_to_be32(wr->remote_qkey);
2827         memcpy(hdr.mac, ah->av.eth.mac, 6);
2828         hdr.vlan = ah->av.eth.vlan;
2829
2830         spc = MLX4_INLINE_ALIGN -
2831                 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2832         if (sizeof (hdr) <= spc) {
2833                 memcpy(inl + 1, &hdr, sizeof (hdr));
2834                 wmb();
2835                 inl->byte_count = cpu_to_be32(1 << 31 | sizeof (hdr));
2836                 i = 1;
2837         } else {
2838                 memcpy(inl + 1, &hdr, spc);
2839                 wmb();
2840                 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2841
2842                 inl = (void *) (inl + 1) + spc;
2843                 memcpy(inl + 1, (void *) &hdr + spc, sizeof (hdr) - spc);
2844                 wmb();
2845                 inl->byte_count = cpu_to_be32(1 << 31 | (sizeof (hdr) - spc));
2846                 i = 2;
2847         }
2848
2849         *mlx_seg_len =
2850                 ALIGN(i * sizeof (struct mlx4_wqe_inline_seg) + sizeof (hdr), 16);
2851 }
2852
2853 static void set_mlx_icrc_seg(void *dseg)
2854 {
2855         u32 *t = dseg;
2856         struct mlx4_wqe_inline_seg *iseg = dseg;
2857
2858         t[1] = 0;
2859
2860         /*
2861          * Need a barrier here before writing the byte_count field to
2862          * make sure that all the data is visible before the
2863          * byte_count field is set.  Otherwise, if the segment begins
2864          * a new cacheline, the HCA prefetcher could grab the 64-byte
2865          * chunk and get a valid (!= * 0xffffffff) byte count but
2866          * stale data, and end up sending the wrong data.
2867          */
2868         wmb();
2869
2870         iseg->byte_count = cpu_to_be32((1 << 31) | 4);
2871 }
2872
2873 static void set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg)
2874 {
2875         dseg->lkey       = cpu_to_be32(sg->lkey);
2876         dseg->addr       = cpu_to_be64(sg->addr);
2877
2878         /*
2879          * Need a barrier here before writing the byte_count field to
2880          * make sure that all the data is visible before the
2881          * byte_count field is set.  Otherwise, if the segment begins
2882          * a new cacheline, the HCA prefetcher could grab the 64-byte
2883          * chunk and get a valid (!= * 0xffffffff) byte count but
2884          * stale data, and end up sending the wrong data.
2885          */
2886         wmb();
2887
2888         dseg->byte_count = cpu_to_be32(sg->length);
2889 }
2890
2891 static void __set_data_seg(struct mlx4_wqe_data_seg *dseg, struct ib_sge *sg)
2892 {
2893         dseg->byte_count = cpu_to_be32(sg->length);
2894         dseg->lkey       = cpu_to_be32(sg->lkey);
2895         dseg->addr       = cpu_to_be64(sg->addr);
2896 }
2897
2898 static int build_lso_seg(struct mlx4_wqe_lso_seg *wqe, struct ib_ud_wr *wr,
2899                          struct mlx4_ib_qp *qp, unsigned *lso_seg_len,
2900                          __be32 *lso_hdr_sz, __be32 *blh)
2901 {
2902         unsigned halign = ALIGN(sizeof *wqe + wr->hlen, 16);
2903
2904         if (unlikely(halign > MLX4_IB_CACHE_LINE_SIZE))
2905                 *blh = cpu_to_be32(1 << 6);
2906
2907         if (unlikely(!(qp->flags & MLX4_IB_QP_LSO) &&
2908                      wr->wr.num_sge > qp->sq.max_gs - (halign >> 4)))
2909                 return -EINVAL;
2910
2911         memcpy(wqe->header, wr->header, wr->hlen);
2912
2913         *lso_hdr_sz  = cpu_to_be32(wr->mss << 16 | wr->hlen);
2914         *lso_seg_len = halign;
2915         return 0;
2916 }
2917
2918 static __be32 send_ieth(struct ib_send_wr *wr)
2919 {
2920         switch (wr->opcode) {
2921         case IB_WR_SEND_WITH_IMM:
2922         case IB_WR_RDMA_WRITE_WITH_IMM:
2923                 return wr->ex.imm_data;
2924
2925         case IB_WR_SEND_WITH_INV:
2926                 return cpu_to_be32(wr->ex.invalidate_rkey);
2927
2928         default:
2929                 return 0;
2930         }
2931 }
2932
2933 static void add_zero_len_inline(void *wqe)
2934 {
2935         struct mlx4_wqe_inline_seg *inl = wqe;
2936         memset(wqe, 0, 16);
2937         inl->byte_count = cpu_to_be32(1 << 31);
2938 }
2939
2940 int mlx4_ib_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
2941                       struct ib_send_wr **bad_wr)
2942 {
2943         struct mlx4_ib_qp *qp = to_mqp(ibqp);
2944         void *wqe;
2945         struct mlx4_wqe_ctrl_seg *ctrl;
2946         struct mlx4_wqe_data_seg *dseg;
2947         unsigned long flags;
2948         int nreq;
2949         int err = 0;
2950         unsigned ind;
2951         int uninitialized_var(stamp);
2952         int uninitialized_var(size);
2953         unsigned uninitialized_var(seglen);
2954         __be32 dummy;
2955         __be32 *lso_wqe;
2956         __be32 uninitialized_var(lso_hdr_sz);
2957         __be32 blh;
2958         int i;
2959         struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
2960
2961         if (qp->mlx4_ib_qp_type == MLX4_IB_QPT_GSI) {
2962                 struct mlx4_ib_sqp *sqp = to_msqp(qp);
2963
2964                 if (sqp->roce_v2_gsi) {
2965                         struct mlx4_ib_ah *ah = to_mah(ud_wr(wr)->ah);
2966                         struct ib_gid_attr gid_attr;
2967                         union ib_gid gid;
2968
2969                         if (!ib_get_cached_gid(ibqp->device,
2970                                                be32_to_cpu(ah->av.ib.port_pd) >> 24,
2971                                                ah->av.ib.gid_index, &gid,
2972                                                &gid_attr)) {
2973                                 if (gid_attr.ndev)
2974                                         dev_put(gid_attr.ndev);
2975                                 qp = (gid_attr.gid_type == IB_GID_TYPE_ROCE_UDP_ENCAP) ?
2976                                         to_mqp(sqp->roce_v2_gsi) : qp;
2977                         } else {
2978                                 pr_err("Failed to get gid at index %d. RoCEv2 will not work properly\n",
2979                                        ah->av.ib.gid_index);
2980                         }
2981                 }
2982         }
2983
2984         spin_lock_irqsave(&qp->sq.lock, flags);
2985         if (mdev->dev->persist->state & MLX4_DEVICE_STATE_INTERNAL_ERROR) {
2986                 err = -EIO;
2987                 *bad_wr = wr;
2988                 nreq = 0;
2989                 goto out;
2990         }
2991
2992         ind = qp->sq_next_wqe;
2993
2994         for (nreq = 0; wr; ++nreq, wr = wr->next) {
2995                 lso_wqe = &dummy;
2996                 blh = 0;
2997
2998                 if (mlx4_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
2999                         err = -ENOMEM;
3000                         *bad_wr = wr;
3001                         goto out;
3002                 }
3003
3004                 if (unlikely(wr->num_sge > qp->sq.max_gs)) {
3005                         err = -EINVAL;
3006                         *bad_wr = wr;
3007                         goto out;
3008                 }
3009
3010                 ctrl = wqe = get_send_wqe(qp, ind & (qp->sq.wqe_cnt - 1));
3011                 qp->sq.wrid[(qp->sq.head + nreq) & (qp->sq.wqe_cnt - 1)] = wr->wr_id;
3012
3013                 ctrl->srcrb_flags =
3014                         (wr->send_flags & IB_SEND_SIGNALED ?
3015                          cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE) : 0) |
3016                         (wr->send_flags & IB_SEND_SOLICITED ?
3017                          cpu_to_be32(MLX4_WQE_CTRL_SOLICITED) : 0) |
3018                         ((wr->send_flags & IB_SEND_IP_CSUM) ?
3019                          cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM |
3020                                      MLX4_WQE_CTRL_TCP_UDP_CSUM) : 0) |
3021                         qp->sq_signal_bits;
3022
3023                 ctrl->imm = send_ieth(wr);
3024
3025                 wqe += sizeof *ctrl;
3026                 size = sizeof *ctrl / 16;
3027
3028                 switch (qp->mlx4_ib_qp_type) {
3029                 case MLX4_IB_QPT_RC:
3030                 case MLX4_IB_QPT_UC:
3031                         switch (wr->opcode) {
3032                         case IB_WR_ATOMIC_CMP_AND_SWP:
3033                         case IB_WR_ATOMIC_FETCH_AND_ADD:
3034                         case IB_WR_MASKED_ATOMIC_FETCH_AND_ADD:
3035                                 set_raddr_seg(wqe, atomic_wr(wr)->remote_addr,
3036                                               atomic_wr(wr)->rkey);
3037                                 wqe  += sizeof (struct mlx4_wqe_raddr_seg);
3038
3039                                 set_atomic_seg(wqe, atomic_wr(wr));
3040                                 wqe  += sizeof (struct mlx4_wqe_atomic_seg);
3041
3042                                 size += (sizeof (struct mlx4_wqe_raddr_seg) +
3043                                          sizeof (struct mlx4_wqe_atomic_seg)) / 16;
3044
3045                                 break;
3046
3047                         case IB_WR_MASKED_ATOMIC_CMP_AND_SWP:
3048                                 set_raddr_seg(wqe, atomic_wr(wr)->remote_addr,
3049                                               atomic_wr(wr)->rkey);
3050                                 wqe  += sizeof (struct mlx4_wqe_raddr_seg);
3051
3052                                 set_masked_atomic_seg(wqe, atomic_wr(wr));
3053                                 wqe  += sizeof (struct mlx4_wqe_masked_atomic_seg);
3054
3055                                 size += (sizeof (struct mlx4_wqe_raddr_seg) +
3056                                          sizeof (struct mlx4_wqe_masked_atomic_seg)) / 16;
3057
3058                                 break;
3059
3060                         case IB_WR_RDMA_READ:
3061                         case IB_WR_RDMA_WRITE:
3062                         case IB_WR_RDMA_WRITE_WITH_IMM:
3063                                 set_raddr_seg(wqe, rdma_wr(wr)->remote_addr,
3064                                               rdma_wr(wr)->rkey);
3065                                 wqe  += sizeof (struct mlx4_wqe_raddr_seg);
3066                                 size += sizeof (struct mlx4_wqe_raddr_seg) / 16;
3067                                 break;
3068
3069                         case IB_WR_LOCAL_INV:
3070                                 ctrl->srcrb_flags |=
3071                                         cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
3072                                 set_local_inv_seg(wqe, wr->ex.invalidate_rkey);
3073                                 wqe  += sizeof (struct mlx4_wqe_local_inval_seg);
3074                                 size += sizeof (struct mlx4_wqe_local_inval_seg) / 16;
3075                                 break;
3076
3077                         case IB_WR_REG_MR:
3078                                 ctrl->srcrb_flags |=
3079                                         cpu_to_be32(MLX4_WQE_CTRL_STRONG_ORDER);
3080                                 set_reg_seg(wqe, reg_wr(wr));
3081                                 wqe  += sizeof(struct mlx4_wqe_fmr_seg);
3082                                 size += sizeof(struct mlx4_wqe_fmr_seg) / 16;
3083                                 break;
3084
3085                         default:
3086                                 /* No extra segments required for sends */
3087                                 break;
3088                         }
3089                         break;
3090
3091                 case MLX4_IB_QPT_TUN_SMI_OWNER:
3092                         err =  build_sriov_qp0_header(to_msqp(qp), ud_wr(wr),
3093                                         ctrl, &seglen);
3094                         if (unlikely(err)) {
3095                                 *bad_wr = wr;
3096                                 goto out;
3097                         }
3098                         wqe  += seglen;
3099                         size += seglen / 16;
3100                         break;
3101                 case MLX4_IB_QPT_TUN_SMI:
3102                 case MLX4_IB_QPT_TUN_GSI:
3103                         /* this is a UD qp used in MAD responses to slaves. */
3104                         set_datagram_seg(wqe, ud_wr(wr));
3105                         /* set the forced-loopback bit in the data seg av */
3106                         *(__be32 *) wqe |= cpu_to_be32(0x80000000);
3107                         wqe  += sizeof (struct mlx4_wqe_datagram_seg);
3108                         size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
3109                         break;
3110                 case MLX4_IB_QPT_UD:
3111                         set_datagram_seg(wqe, ud_wr(wr));
3112                         wqe  += sizeof (struct mlx4_wqe_datagram_seg);
3113                         size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
3114
3115                         if (wr->opcode == IB_WR_LSO) {
3116                                 err = build_lso_seg(wqe, ud_wr(wr), qp, &seglen,
3117                                                 &lso_hdr_sz, &blh);
3118                                 if (unlikely(err)) {
3119                                         *bad_wr = wr;
3120                                         goto out;
3121                                 }
3122                                 lso_wqe = (__be32 *) wqe;
3123                                 wqe  += seglen;
3124                                 size += seglen / 16;
3125                         }
3126                         break;
3127
3128                 case MLX4_IB_QPT_PROXY_SMI_OWNER:
3129                         err = build_sriov_qp0_header(to_msqp(qp), ud_wr(wr),
3130                                         ctrl, &seglen);
3131                         if (unlikely(err)) {
3132                                 *bad_wr = wr;
3133                                 goto out;
3134                         }
3135                         wqe  += seglen;
3136                         size += seglen / 16;
3137                         /* to start tunnel header on a cache-line boundary */
3138                         add_zero_len_inline(wqe);
3139                         wqe += 16;
3140                         size++;
3141                         build_tunnel_header(ud_wr(wr), wqe, &seglen);
3142                         wqe  += seglen;
3143                         size += seglen / 16;
3144                         break;
3145                 case MLX4_IB_QPT_PROXY_SMI:
3146                 case MLX4_IB_QPT_PROXY_GSI:
3147                         /* If we are tunneling special qps, this is a UD qp.
3148                          * In this case we first add a UD segment targeting
3149                          * the tunnel qp, and then add a header with address
3150                          * information */
3151                         set_tunnel_datagram_seg(to_mdev(ibqp->device), wqe,
3152                                                 ud_wr(wr),
3153                                                 qp->mlx4_ib_qp_type);
3154                         wqe  += sizeof (struct mlx4_wqe_datagram_seg);
3155                         size += sizeof (struct mlx4_wqe_datagram_seg) / 16;
3156                         build_tunnel_header(ud_wr(wr), wqe, &seglen);
3157                         wqe  += seglen;
3158                         size += seglen / 16;
3159                         break;
3160
3161                 case MLX4_IB_QPT_SMI:
3162                 case MLX4_IB_QPT_GSI:
3163                         err = build_mlx_header(to_msqp(qp), ud_wr(wr), ctrl,
3164                                         &seglen);
3165                         if (unlikely(err)) {
3166                                 *bad_wr = wr;
3167                                 goto out;
3168                         }
3169                         wqe  += seglen;
3170                         size += seglen / 16;
3171                         break;
3172
3173                 default:
3174                         break;
3175                 }
3176
3177                 /*
3178                  * Write data segments in reverse order, so as to
3179                  * overwrite cacheline stamp last within each
3180                  * cacheline.  This avoids issues with WQE
3181                  * prefetching.
3182                  */
3183
3184                 dseg = wqe;
3185                 dseg += wr->num_sge - 1;
3186                 size += wr->num_sge * (sizeof (struct mlx4_wqe_data_seg) / 16);
3187
3188                 /* Add one more inline data segment for ICRC for MLX sends */
3189                 if (unlikely(qp->mlx4_ib_qp_type == MLX4_IB_QPT_SMI ||
3190                              qp->mlx4_ib_qp_type == MLX4_IB_QPT_GSI ||
3191                              qp->mlx4_ib_qp_type &
3192                              (MLX4_IB_QPT_PROXY_SMI_OWNER | MLX4_IB_QPT_TUN_SMI_OWNER))) {
3193                         set_mlx_icrc_seg(dseg + 1);
3194                         size += sizeof (struct mlx4_wqe_data_seg) / 16;
3195                 }
3196
3197                 for (i = wr->num_sge - 1; i >= 0; --i, --dseg)
3198                         set_data_seg(dseg, wr->sg_list + i);
3199
3200                 /*
3201                  * Possibly overwrite stamping in cacheline with LSO
3202                  * segment only after making sure all data segments
3203                  * are written.
3204                  */
3205                 wmb();
3206                 *lso_wqe = lso_hdr_sz;
3207
3208                 ctrl->qpn_vlan.fence_size = (wr->send_flags & IB_SEND_FENCE ?
3209                                              MLX4_WQE_CTRL_FENCE : 0) | size;
3210
3211                 /*
3212                  * Make sure descriptor is fully written before
3213                  * setting ownership bit (because HW can start
3214                  * executing as soon as we do).
3215                  */
3216                 wmb();
3217
3218                 if (wr->opcode < 0 || wr->opcode >= ARRAY_SIZE(mlx4_ib_opcode)) {
3219                         *bad_wr = wr;
3220                         err = -EINVAL;
3221                         goto out;
3222                 }
3223
3224                 ctrl->owner_opcode = mlx4_ib_opcode[wr->opcode] |
3225                         (ind & qp->sq.wqe_cnt ? cpu_to_be32(1 << 31) : 0) | blh;
3226
3227                 stamp = ind + qp->sq_spare_wqes;
3228                 ind += DIV_ROUND_UP(size * 16, 1U << qp->sq.wqe_shift);
3229
3230                 /*
3231                  * We can improve latency by not stamping the last
3232                  * send queue WQE until after ringing the doorbell, so
3233                  * only stamp here if there are still more WQEs to post.
3234                  *
3235                  * Same optimization applies to padding with NOP wqe
3236                  * in case of WQE shrinking (used to prevent wrap-around
3237                  * in the middle of WR).
3238                  */
3239                 if (wr->next) {
3240                         stamp_send_wqe(qp, stamp, size * 16);
3241                         ind = pad_wraparound(qp, ind);
3242                 }
3243         }
3244
3245 out:
3246         if (likely(nreq)) {
3247                 qp->sq.head += nreq;
3248
3249                 /*
3250                  * Make sure that descriptors are written before
3251                  * doorbell record.
3252                  */
3253                 wmb();
3254
3255                 writel(qp->doorbell_qpn,
3256                        to_mdev(ibqp->device)->uar_map + MLX4_SEND_DOORBELL);
3257
3258                 /*
3259                  * Make sure doorbells don't leak out of SQ spinlock
3260                  * and reach the HCA out of order.
3261                  */
3262                 mmiowb();
3263
3264                 stamp_send_wqe(qp, stamp, size * 16);
3265
3266                 ind = pad_wraparound(qp, ind);
3267                 qp->sq_next_wqe = ind;
3268         }
3269
3270         spin_unlock_irqrestore(&qp->sq.lock, flags);
3271
3272         return err;
3273 }
3274
3275 int mlx4_ib_post_recv(struct ib_qp *ibqp, struct ib_recv_wr *wr,
3276                       struct ib_recv_wr **bad_wr)
3277 {
3278         struct mlx4_ib_qp *qp = to_mqp(ibqp);
3279         struct mlx4_wqe_data_seg *scat;
3280         unsigned long flags;
3281         int err = 0;
3282         int nreq;
3283         int ind;
3284         int max_gs;
3285         int i;
3286         struct mlx4_ib_dev *mdev = to_mdev(ibqp->device);
3287
3288         max_gs = qp->rq.max_gs;
3289         spin_lock_irqsave(&qp->rq.lock, flags);
3290
3291         if (mdev->dev->persist->state & MLX4_DEVICE_STATE_INTERNAL_ERROR) {
3292                 err = -EIO;
3293                 *bad_wr = wr;
3294                 nreq = 0;
3295                 goto out;
3296         }
3297
3298         ind = qp->rq.head & (qp->rq.wqe_cnt - 1);
3299
3300         for (nreq = 0; wr; ++nreq, wr = wr->next) {
3301                 if (mlx4_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
3302                         err = -ENOMEM;
3303                         *bad_wr = wr;
3304                         goto out;
3305                 }
3306
3307                 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
3308                         err = -EINVAL;
3309                         *bad_wr = wr;
3310                         goto out;
3311                 }
3312
3313                 scat = get_recv_wqe(qp, ind);
3314
3315                 if (qp->mlx4_ib_qp_type & (MLX4_IB_QPT_PROXY_SMI_OWNER |
3316                     MLX4_IB_QPT_PROXY_SMI | MLX4_IB_QPT_PROXY_GSI)) {
3317                         ib_dma_sync_single_for_device(ibqp->device,
3318                                                       qp->sqp_proxy_rcv[ind].map,
3319                                                       sizeof (struct mlx4_ib_proxy_sqp_hdr),
3320                                                       DMA_FROM_DEVICE);
3321                         scat->byte_count =
3322                                 cpu_to_be32(sizeof (struct mlx4_ib_proxy_sqp_hdr));
3323                         /* use dma lkey from upper layer entry */
3324                         scat->lkey = cpu_to_be32(wr->sg_list->lkey);
3325                         scat->addr = cpu_to_be64(qp->sqp_proxy_rcv[ind].map);
3326                         scat++;
3327                         max_gs--;
3328                 }
3329
3330                 for (i = 0; i < wr->num_sge; ++i)
3331                         __set_data_seg(scat + i, wr->sg_list + i);
3332
3333                 if (i < max_gs) {
3334                         scat[i].byte_count = 0;
3335                         scat[i].lkey       = cpu_to_be32(MLX4_INVALID_LKEY);
3336                         scat[i].addr       = 0;
3337                 }
3338
3339                 qp->rq.wrid[ind] = wr->wr_id;
3340
3341                 ind = (ind + 1) & (qp->rq.wqe_cnt - 1);
3342         }
3343
3344 out:
3345         if (likely(nreq)) {
3346                 qp->rq.head += nreq;
3347
3348                 /*
3349                  * Make sure that descriptors are written before
3350                  * doorbell record.
3351                  */
3352                 wmb();
3353
3354                 *qp->db.db = cpu_to_be32(qp->rq.head & 0xffff);
3355         }
3356
3357         spin_unlock_irqrestore(&qp->rq.lock, flags);
3358
3359         return err;
3360 }
3361
3362 static inline enum ib_qp_state to_ib_qp_state(enum mlx4_qp_state mlx4_state)
3363 {
3364         switch (mlx4_state) {
3365         case MLX4_QP_STATE_RST:      return IB_QPS_RESET;
3366         case MLX4_QP_STATE_INIT:     return IB_QPS_INIT;
3367         case MLX4_QP_STATE_RTR:      return IB_QPS_RTR;
3368         case MLX4_QP_STATE_RTS:      return IB_QPS_RTS;
3369         case MLX4_QP_STATE_SQ_DRAINING:
3370         case MLX4_QP_STATE_SQD:      return IB_QPS_SQD;
3371         case MLX4_QP_STATE_SQER:     return IB_QPS_SQE;
3372         case MLX4_QP_STATE_ERR:      return IB_QPS_ERR;
3373         default:                     return -1;
3374         }
3375 }
3376
3377 static inline enum ib_mig_state to_ib_mig_state(int mlx4_mig_state)
3378 {
3379         switch (mlx4_mig_state) {
3380         case MLX4_QP_PM_ARMED:          return IB_MIG_ARMED;
3381         case MLX4_QP_PM_REARM:          return IB_MIG_REARM;
3382         case MLX4_QP_PM_MIGRATED:       return IB_MIG_MIGRATED;
3383         default: return -1;
3384         }
3385 }
3386
3387 static int to_ib_qp_access_flags(int mlx4_flags)
3388 {
3389         int ib_flags = 0;
3390
3391         if (mlx4_flags & MLX4_QP_BIT_RRE)
3392                 ib_flags |= IB_ACCESS_REMOTE_READ;
3393         if (mlx4_flags & MLX4_QP_BIT_RWE)
3394                 ib_flags |= IB_ACCESS_REMOTE_WRITE;
3395         if (mlx4_flags & MLX4_QP_BIT_RAE)
3396                 ib_flags |= IB_ACCESS_REMOTE_ATOMIC;
3397
3398         return ib_flags;
3399 }
3400
3401 static void to_ib_ah_attr(struct mlx4_ib_dev *ibdev, struct ib_ah_attr *ib_ah_attr,
3402                                 struct mlx4_qp_path *path)
3403 {
3404         struct mlx4_dev *dev = ibdev->dev;
3405         int is_eth;
3406
3407         memset(ib_ah_attr, 0, sizeof *ib_ah_attr);
3408         ib_ah_attr->port_num      = path->sched_queue & 0x40 ? 2 : 1;
3409
3410         if (ib_ah_attr->port_num == 0 || ib_ah_attr->port_num > dev->caps.num_ports)
3411                 return;
3412
3413         is_eth = rdma_port_get_link_layer(&ibdev->ib_dev, ib_ah_attr->port_num) ==
3414                 IB_LINK_LAYER_ETHERNET;
3415         if (is_eth)
3416                 ib_ah_attr->sl = ((path->sched_queue >> 3) & 0x7) |
3417                 ((path->sched_queue & 4) << 1);
3418         else
3419                 ib_ah_attr->sl = (path->sched_queue >> 2) & 0xf;
3420
3421         ib_ah_attr->dlid          = be16_to_cpu(path->rlid);
3422         ib_ah_attr->src_path_bits = path->grh_mylmc & 0x7f;
3423         ib_ah_attr->static_rate   = path->static_rate ? path->static_rate - 5 : 0;
3424         ib_ah_attr->ah_flags      = (path->grh_mylmc & (1 << 7)) ? IB_AH_GRH : 0;
3425         if (ib_ah_attr->ah_flags) {
3426                 ib_ah_attr->grh.sgid_index = path->mgid_index;
3427                 ib_ah_attr->grh.hop_limit  = path->hop_limit;
3428                 ib_ah_attr->grh.traffic_class =
3429                         (be32_to_cpu(path->tclass_flowlabel) >> 20) & 0xff;
3430                 ib_ah_attr->grh.flow_label =
3431                         be32_to_cpu(path->tclass_flowlabel) & 0xfffff;
3432                 memcpy(ib_ah_attr->grh.dgid.raw,
3433                         path->rgid, sizeof ib_ah_attr->grh.dgid.raw);
3434         }
3435 }
3436
3437 int mlx4_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask,
3438                      struct ib_qp_init_attr *qp_init_attr)
3439 {
3440         struct mlx4_ib_dev *dev = to_mdev(ibqp->device);
3441         struct mlx4_ib_qp *qp = to_mqp(ibqp);
3442         struct mlx4_qp_context context;
3443         int mlx4_state;
3444         int err = 0;
3445
3446         mutex_lock(&qp->mutex);
3447
3448         if (qp->state == IB_QPS_RESET) {
3449                 qp_attr->qp_state = IB_QPS_RESET;
3450                 goto done;
3451         }
3452
3453         err = mlx4_qp_query(dev->dev, &qp->mqp, &context);
3454         if (err) {
3455                 err = -EINVAL;
3456                 goto out;
3457         }
3458
3459         mlx4_state = be32_to_cpu(context.flags) >> 28;
3460
3461         qp->state                    = to_ib_qp_state(mlx4_state);
3462         qp_attr->qp_state            = qp->state;
3463         qp_attr->path_mtu            = context.mtu_msgmax >> 5;
3464         qp_attr->path_mig_state      =
3465                 to_ib_mig_state((be32_to_cpu(context.flags) >> 11) & 0x3);
3466         qp_attr->qkey                = be32_to_cpu(context.qkey);
3467         qp_attr->rq_psn              = be32_to_cpu(context.rnr_nextrecvpsn) & 0xffffff;
3468         qp_attr->sq_psn              = be32_to_cpu(context.next_send_psn) & 0xffffff;
3469         qp_attr->dest_qp_num         = be32_to_cpu(context.remote_qpn) & 0xffffff;
3470         qp_attr->qp_access_flags     =
3471                 to_ib_qp_access_flags(be32_to_cpu(context.params2));
3472
3473         if (qp->ibqp.qp_type == IB_QPT_RC || qp->ibqp.qp_type == IB_QPT_UC) {
3474                 to_ib_ah_attr(dev, &qp_attr->ah_attr, &context.pri_path);
3475                 to_ib_ah_attr(dev, &qp_attr->alt_ah_attr, &context.alt_path);
3476                 qp_attr->alt_pkey_index = context.alt_path.pkey_index & 0x7f;
3477                 qp_attr->alt_port_num   = qp_attr->alt_ah_attr.port_num;
3478         }
3479
3480         qp_attr->pkey_index = context.pri_path.pkey_index & 0x7f;
3481         if (qp_attr->qp_state == IB_QPS_INIT)
3482                 qp_attr->port_num = qp->port;
3483         else
3484                 qp_attr->port_num = context.pri_path.sched_queue & 0x40 ? 2 : 1;
3485
3486         /* qp_attr->en_sqd_async_notify is only applicable in modify qp */
3487         qp_attr->sq_draining = mlx4_state == MLX4_QP_STATE_SQ_DRAINING;
3488
3489         qp_attr->max_rd_atomic = 1 << ((be32_to_cpu(context.params1) >> 21) & 0x7);
3490
3491         qp_attr->max_dest_rd_atomic =
3492                 1 << ((be32_to_cpu(context.params2) >> 21) & 0x7);
3493         qp_attr->min_rnr_timer      =
3494                 (be32_to_cpu(context.rnr_nextrecvpsn) >> 24) & 0x1f;
3495         qp_attr->timeout            = context.pri_path.ackto >> 3;
3496         qp_attr->retry_cnt          = (be32_to_cpu(context.params1) >> 16) & 0x7;
3497         qp_attr->rnr_retry          = (be32_to_cpu(context.params1) >> 13) & 0x7;
3498         qp_attr->alt_timeout        = context.alt_path.ackto >> 3;
3499
3500 done:
3501         qp_attr->cur_qp_state        = qp_attr->qp_state;
3502         qp_attr->cap.max_recv_wr     = qp->rq.wqe_cnt;
3503         qp_attr->cap.max_recv_sge    = qp->rq.max_gs;
3504
3505         if (!ibqp->uobject) {
3506                 qp_attr->cap.max_send_wr  = qp->sq.wqe_cnt;
3507                 qp_attr->cap.max_send_sge = qp->sq.max_gs;
3508         } else {
3509                 qp_attr->cap.max_send_wr  = 0;
3510                 qp_attr->cap.max_send_sge = 0;
3511         }
3512
3513         /*
3514          * We don't support inline sends for kernel QPs (yet), and we
3515          * don't know what userspace's value should be.
3516          */
3517         qp_attr->cap.max_inline_data = 0;
3518
3519         qp_init_attr->cap            = qp_attr->cap;
3520
3521         qp_init_attr->create_flags = 0;
3522         if (qp->flags & MLX4_IB_QP_BLOCK_MULTICAST_LOOPBACK)
3523                 qp_init_attr->create_flags |= IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK;
3524
3525         if (qp->flags & MLX4_IB_QP_LSO)
3526                 qp_init_attr->create_flags |= IB_QP_CREATE_IPOIB_UD_LSO;
3527
3528         if (qp->flags & MLX4_IB_QP_NETIF)
3529                 qp_init_attr->create_flags |= IB_QP_CREATE_NETIF_QP;
3530
3531         qp_init_attr->sq_sig_type =
3532                 qp->sq_signal_bits == cpu_to_be32(MLX4_WQE_CTRL_CQ_UPDATE) ?
3533                 IB_SIGNAL_ALL_WR : IB_SIGNAL_REQ_WR;
3534
3535 out:
3536         mutex_unlock(&qp->mutex);
3537         return err;
3538 }
3539