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