OSDN Git Service

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