blob: baf65fe5286eb9501c1b61d8e5d86845c5f52df9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
Roland Dreier80c8ec22005-07-07 17:57:20 -07003 * Copyright (c) 2005 Cisco Systems. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07004 * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
Roland Dreier2fa5e2e2006-02-01 13:38:24 -08005 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the
11 * OpenIB.org BSD license below:
12 *
13 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
15 * conditions are met:
16 *
17 * - Redistributions of source code must retain the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer.
20 *
21 * - Redistributions in binary form must reproduce the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer in the documentation and/or other materials
24 * provided with the distribution.
25 *
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 * SOFTWARE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
35
Tim Schmielau4e57b682005-10-30 15:03:48 -080036#include <linux/string.h>
37#include <linux/slab.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040038#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Arthur Kepner1f5c23e2006-10-16 20:22:35 -070040#include <asm/io.h>
41
Roland Dreiera4d61e82005-08-25 13:40:04 -070042#include <rdma/ib_verbs.h>
43#include <rdma/ib_cache.h>
44#include <rdma/ib_pack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include "mthca_dev.h"
47#include "mthca_cmd.h"
48#include "mthca_memfree.h"
Roland Dreierc04bc3d2005-08-19 10:33:35 -070049#include "mthca_wqe.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51enum {
52 MTHCA_MAX_DIRECT_QP_SIZE = 4 * PAGE_SIZE,
53 MTHCA_ACK_REQ_FREQ = 10,
54 MTHCA_FLIGHT_LIMIT = 9,
Roland Dreier80c8ec22005-07-07 17:57:20 -070055 MTHCA_UD_HEADER_SIZE = 72, /* largest UD header possible */
56 MTHCA_INLINE_HEADER_SIZE = 4, /* data segment overhead for inline */
57 MTHCA_INLINE_CHUNK_SIZE = 16 /* inline data segment chunk */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
60enum {
61 MTHCA_QP_STATE_RST = 0,
62 MTHCA_QP_STATE_INIT = 1,
63 MTHCA_QP_STATE_RTR = 2,
64 MTHCA_QP_STATE_RTS = 3,
65 MTHCA_QP_STATE_SQE = 4,
66 MTHCA_QP_STATE_SQD = 5,
67 MTHCA_QP_STATE_ERR = 6,
68 MTHCA_QP_STATE_DRAINING = 7
69};
70
71enum {
72 MTHCA_QP_ST_RC = 0x0,
73 MTHCA_QP_ST_UC = 0x1,
74 MTHCA_QP_ST_RD = 0x2,
75 MTHCA_QP_ST_UD = 0x3,
76 MTHCA_QP_ST_MLX = 0x7
77};
78
79enum {
80 MTHCA_QP_PM_MIGRATED = 0x3,
81 MTHCA_QP_PM_ARMED = 0x0,
82 MTHCA_QP_PM_REARM = 0x1
83};
84
85enum {
86 /* qp_context flags */
87 MTHCA_QP_BIT_DE = 1 << 8,
88 /* params1 */
89 MTHCA_QP_BIT_SRE = 1 << 15,
90 MTHCA_QP_BIT_SWE = 1 << 14,
91 MTHCA_QP_BIT_SAE = 1 << 13,
92 MTHCA_QP_BIT_SIC = 1 << 4,
93 MTHCA_QP_BIT_SSC = 1 << 3,
94 /* params2 */
95 MTHCA_QP_BIT_RRE = 1 << 15,
96 MTHCA_QP_BIT_RWE = 1 << 14,
97 MTHCA_QP_BIT_RAE = 1 << 13,
98 MTHCA_QP_BIT_RIC = 1 << 4,
99 MTHCA_QP_BIT_RSC = 1 << 3
100};
101
Michael S. Tsirkine54b82d2006-08-10 10:46:56 -0700102enum {
103 MTHCA_SEND_DOORBELL_FENCE = 1 << 5
104};
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106struct mthca_qp_path {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700107 __be32 port_pkey;
108 u8 rnr_retry;
109 u8 g_mylmc;
110 __be16 rlid;
111 u8 ackto;
112 u8 mgid_index;
113 u8 static_rate;
114 u8 hop_limit;
115 __be32 sl_tclass_flowlabel;
116 u8 rgid[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117} __attribute__((packed));
118
119struct mthca_qp_context {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700120 __be32 flags;
121 __be32 tavor_sched_queue; /* Reserved on Arbel */
122 u8 mtu_msgmax;
123 u8 rq_size_stride; /* Reserved on Tavor */
124 u8 sq_size_stride; /* Reserved on Tavor */
125 u8 rlkey_arbel_sched_queue; /* Reserved on Tavor */
126 __be32 usr_page;
127 __be32 local_qpn;
128 __be32 remote_qpn;
129 u32 reserved1[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 struct mthca_qp_path pri_path;
131 struct mthca_qp_path alt_path;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700132 __be32 rdd;
133 __be32 pd;
134 __be32 wqe_base;
135 __be32 wqe_lkey;
136 __be32 params1;
137 __be32 reserved2;
138 __be32 next_send_psn;
139 __be32 cqn_snd;
140 __be32 snd_wqe_base_l; /* Next send WQE on Tavor */
141 __be32 snd_db_index; /* (debugging only entries) */
142 __be32 last_acked_psn;
143 __be32 ssn;
144 __be32 params2;
145 __be32 rnr_nextrecvpsn;
146 __be32 ra_buff_indx;
147 __be32 cqn_rcv;
148 __be32 rcv_wqe_base_l; /* Next recv WQE on Tavor */
149 __be32 rcv_db_index; /* (debugging only entries) */
150 __be32 qkey;
151 __be32 srqn;
152 __be32 rmsn;
153 __be16 rq_wqe_counter; /* reserved on Tavor */
154 __be16 sq_wqe_counter; /* reserved on Tavor */
155 u32 reserved3[18];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156} __attribute__((packed));
157
158struct mthca_qp_param {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700159 __be32 opt_param_mask;
160 u32 reserved1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 struct mthca_qp_context context;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700162 u32 reserved2[62];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163} __attribute__((packed));
164
165enum {
166 MTHCA_QP_OPTPAR_ALT_ADDR_PATH = 1 << 0,
167 MTHCA_QP_OPTPAR_RRE = 1 << 1,
168 MTHCA_QP_OPTPAR_RAE = 1 << 2,
169 MTHCA_QP_OPTPAR_RWE = 1 << 3,
170 MTHCA_QP_OPTPAR_PKEY_INDEX = 1 << 4,
171 MTHCA_QP_OPTPAR_Q_KEY = 1 << 5,
172 MTHCA_QP_OPTPAR_RNR_TIMEOUT = 1 << 6,
173 MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH = 1 << 7,
174 MTHCA_QP_OPTPAR_SRA_MAX = 1 << 8,
175 MTHCA_QP_OPTPAR_RRA_MAX = 1 << 9,
176 MTHCA_QP_OPTPAR_PM_STATE = 1 << 10,
177 MTHCA_QP_OPTPAR_PORT_NUM = 1 << 11,
178 MTHCA_QP_OPTPAR_RETRY_COUNT = 1 << 12,
179 MTHCA_QP_OPTPAR_ALT_RNR_RETRY = 1 << 13,
180 MTHCA_QP_OPTPAR_ACK_TIMEOUT = 1 << 14,
181 MTHCA_QP_OPTPAR_RNR_RETRY = 1 << 15,
182 MTHCA_QP_OPTPAR_SCHED_QUEUE = 1 << 16
183};
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185static const u8 mthca_opcode[] = {
186 [IB_WR_SEND] = MTHCA_OPCODE_SEND,
187 [IB_WR_SEND_WITH_IMM] = MTHCA_OPCODE_SEND_IMM,
188 [IB_WR_RDMA_WRITE] = MTHCA_OPCODE_RDMA_WRITE,
189 [IB_WR_RDMA_WRITE_WITH_IMM] = MTHCA_OPCODE_RDMA_WRITE_IMM,
190 [IB_WR_RDMA_READ] = MTHCA_OPCODE_RDMA_READ,
191 [IB_WR_ATOMIC_CMP_AND_SWP] = MTHCA_OPCODE_ATOMIC_CS,
192 [IB_WR_ATOMIC_FETCH_AND_ADD] = MTHCA_OPCODE_ATOMIC_FA,
193};
194
195static int is_sqp(struct mthca_dev *dev, struct mthca_qp *qp)
196{
197 return qp->qpn >= dev->qp_table.sqp_start &&
198 qp->qpn <= dev->qp_table.sqp_start + 3;
199}
200
201static int is_qp0(struct mthca_dev *dev, struct mthca_qp *qp)
202{
203 return qp->qpn >= dev->qp_table.sqp_start &&
204 qp->qpn <= dev->qp_table.sqp_start + 1;
205}
206
207static void *get_recv_wqe(struct mthca_qp *qp, int n)
208{
209 if (qp->is_direct)
210 return qp->queue.direct.buf + (n << qp->rq.wqe_shift);
211 else
212 return qp->queue.page_list[(n << qp->rq.wqe_shift) >> PAGE_SHIFT].buf +
213 ((n << qp->rq.wqe_shift) & (PAGE_SIZE - 1));
214}
215
216static void *get_send_wqe(struct mthca_qp *qp, int n)
217{
218 if (qp->is_direct)
219 return qp->queue.direct.buf + qp->send_wqe_offset +
220 (n << qp->sq.wqe_shift);
221 else
222 return qp->queue.page_list[(qp->send_wqe_offset +
223 (n << qp->sq.wqe_shift)) >>
224 PAGE_SHIFT].buf +
225 ((qp->send_wqe_offset + (n << qp->sq.wqe_shift)) &
226 (PAGE_SIZE - 1));
227}
228
Michael S. Tsirkin0964d912006-07-14 00:23:51 -0700229static void mthca_wq_reset(struct mthca_wq *wq)
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700230{
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700231 wq->next_ind = 0;
232 wq->last_comp = wq->max - 1;
233 wq->head = 0;
234 wq->tail = 0;
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237void mthca_qp_event(struct mthca_dev *dev, u32 qpn,
238 enum ib_event_type event_type)
239{
240 struct mthca_qp *qp;
241 struct ib_event event;
242
243 spin_lock(&dev->qp_table.lock);
244 qp = mthca_array_get(&dev->qp_table.qp, qpn & (dev->limits.num_qps - 1));
245 if (qp)
Roland Dreiera3285aa2006-05-09 10:50:29 -0700246 ++qp->refcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 spin_unlock(&dev->qp_table.lock);
248
249 if (!qp) {
Dotan Barak9bbeb662012-07-11 15:39:27 +0000250 mthca_warn(dev, "Async event %d for bogus QP %08x\n",
251 event_type, qpn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return;
253 }
254
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700255 if (event_type == IB_EVENT_PATH_MIG)
256 qp->port = qp->alt_port;
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 event.device = &dev->ib_dev;
259 event.event = event_type;
260 event.element.qp = &qp->ibqp;
261 if (qp->ibqp.event_handler)
262 qp->ibqp.event_handler(&event, qp->ibqp.qp_context);
263
Roland Dreiera3285aa2006-05-09 10:50:29 -0700264 spin_lock(&dev->qp_table.lock);
265 if (!--qp->refcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 wake_up(&qp->wait);
Roland Dreiera3285aa2006-05-09 10:50:29 -0700267 spin_unlock(&dev->qp_table.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270static int to_mthca_state(enum ib_qp_state ib_state)
271{
272 switch (ib_state) {
273 case IB_QPS_RESET: return MTHCA_QP_STATE_RST;
274 case IB_QPS_INIT: return MTHCA_QP_STATE_INIT;
275 case IB_QPS_RTR: return MTHCA_QP_STATE_RTR;
276 case IB_QPS_RTS: return MTHCA_QP_STATE_RTS;
277 case IB_QPS_SQD: return MTHCA_QP_STATE_SQD;
278 case IB_QPS_SQE: return MTHCA_QP_STATE_SQE;
279 case IB_QPS_ERR: return MTHCA_QP_STATE_ERR;
280 default: return -1;
281 }
282}
283
284enum { RC, UC, UD, RD, RDEE, MLX, NUM_TRANS };
285
286static int to_mthca_st(int transport)
287{
288 switch (transport) {
289 case RC: return MTHCA_QP_ST_RC;
290 case UC: return MTHCA_QP_ST_UC;
291 case UD: return MTHCA_QP_ST_UD;
292 case RD: return MTHCA_QP_ST_RD;
293 case MLX: return MTHCA_QP_ST_MLX;
294 default: return -1;
295 }
296}
297
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300298static void store_attrs(struct mthca_sqp *sqp, const struct ib_qp_attr *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 int attr_mask)
300{
301 if (attr_mask & IB_QP_PKEY_INDEX)
302 sqp->pkey_index = attr->pkey_index;
303 if (attr_mask & IB_QP_QKEY)
304 sqp->qkey = attr->qkey;
305 if (attr_mask & IB_QP_SQ_PSN)
306 sqp->send_psn = attr->sq_psn;
307}
308
309static void init_port(struct mthca_dev *dev, int port)
310{
311 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 struct mthca_init_ib_param param;
313
314 memset(&param, 0, sizeof param);
315
Roland Dreierda6561c2005-08-17 07:39:10 -0700316 param.port_width = dev->limits.port_width_cap;
317 param.vl_cap = dev->limits.vl_cap;
318 param.mtu_cap = dev->limits.mtu_cap;
319 param.gid_cap = dev->limits.gid_table_len;
320 param.pkey_cap = dev->limits.pkey_table_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000322 err = mthca_INIT_IB(dev, &param, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (err)
324 mthca_warn(dev, "INIT_IB failed, return code %d.\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300327static __be32 get_hw_access_flags(struct mthca_qp *qp, const struct ib_qp_attr *attr,
Jack Morgensteind1646f82005-12-15 14:36:24 -0800328 int attr_mask)
329{
330 u8 dest_rd_atomic;
331 u32 access_flags;
332 u32 hw_access_flags = 0;
333
334 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
335 dest_rd_atomic = attr->max_dest_rd_atomic;
336 else
337 dest_rd_atomic = qp->resp_depth;
338
339 if (attr_mask & IB_QP_ACCESS_FLAGS)
340 access_flags = attr->qp_access_flags;
341 else
342 access_flags = qp->atomic_rd_en;
343
344 if (!dest_rd_atomic)
345 access_flags &= IB_ACCESS_REMOTE_WRITE;
346
347 if (access_flags & IB_ACCESS_REMOTE_READ)
348 hw_access_flags |= MTHCA_QP_BIT_RRE;
349 if (access_flags & IB_ACCESS_REMOTE_ATOMIC)
350 hw_access_flags |= MTHCA_QP_BIT_RAE;
351 if (access_flags & IB_ACCESS_REMOTE_WRITE)
352 hw_access_flags |= MTHCA_QP_BIT_RWE;
353
354 return cpu_to_be32(hw_access_flags);
355}
356
Eli Cohen8ebe5072006-02-13 16:40:21 -0800357static inline enum ib_qp_state to_ib_qp_state(int mthca_state)
358{
359 switch (mthca_state) {
360 case MTHCA_QP_STATE_RST: return IB_QPS_RESET;
361 case MTHCA_QP_STATE_INIT: return IB_QPS_INIT;
362 case MTHCA_QP_STATE_RTR: return IB_QPS_RTR;
363 case MTHCA_QP_STATE_RTS: return IB_QPS_RTS;
364 case MTHCA_QP_STATE_DRAINING:
365 case MTHCA_QP_STATE_SQD: return IB_QPS_SQD;
366 case MTHCA_QP_STATE_SQE: return IB_QPS_SQE;
367 case MTHCA_QP_STATE_ERR: return IB_QPS_ERR;
368 default: return -1;
369 }
370}
371
372static inline enum ib_mig_state to_ib_mig_state(int mthca_mig_state)
373{
374 switch (mthca_mig_state) {
375 case 0: return IB_MIG_ARMED;
376 case 1: return IB_MIG_REARM;
377 case 3: return IB_MIG_MIGRATED;
378 default: return -1;
379 }
380}
381
382static int to_ib_qp_access_flags(int mthca_flags)
383{
384 int ib_flags = 0;
385
386 if (mthca_flags & MTHCA_QP_BIT_RRE)
387 ib_flags |= IB_ACCESS_REMOTE_READ;
388 if (mthca_flags & MTHCA_QP_BIT_RWE)
389 ib_flags |= IB_ACCESS_REMOTE_WRITE;
390 if (mthca_flags & MTHCA_QP_BIT_RAE)
391 ib_flags |= IB_ACCESS_REMOTE_ATOMIC;
392
393 return ib_flags;
394}
395
Dasaratharaman Chandramouli766b7f62017-04-29 14:41:25 -0400396static void to_rdma_ah_attr(struct mthca_dev *dev,
397 struct rdma_ah_attr *ib_ah_attr,
398 struct mthca_qp_path *path)
Eli Cohen8ebe5072006-02-13 16:40:21 -0800399{
Roland Dreier99d4f222007-02-10 08:00:47 -0800400 memset(ib_ah_attr, 0, sizeof *ib_ah_attr);
Eli Cohen8ebe5072006-02-13 16:40:21 -0800401 ib_ah_attr->port_num = (be32_to_cpu(path->port_pkey) >> 24) & 0x3;
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700402
403 if (ib_ah_attr->port_num == 0 || ib_ah_attr->port_num > dev->limits.num_ports)
404 return;
405
Eli Cohen8ebe5072006-02-13 16:40:21 -0800406 ib_ah_attr->dlid = be16_to_cpu(path->rlid);
407 ib_ah_attr->sl = be32_to_cpu(path->sl_tclass_flowlabel) >> 28;
408 ib_ah_attr->src_path_bits = path->g_mylmc & 0x7f;
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700409 ib_ah_attr->static_rate = mthca_rate_to_ib(dev,
Jack Morgenstein9e583b82006-08-28 19:12:39 +0300410 path->static_rate & 0xf,
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700411 ib_ah_attr->port_num);
Eli Cohen8ebe5072006-02-13 16:40:21 -0800412 ib_ah_attr->ah_flags = (path->g_mylmc & (1 << 7)) ? IB_AH_GRH : 0;
413 if (ib_ah_attr->ah_flags) {
414 ib_ah_attr->grh.sgid_index = path->mgid_index & (dev->limits.gid_table_len - 1);
415 ib_ah_attr->grh.hop_limit = path->hop_limit;
416 ib_ah_attr->grh.traffic_class =
417 (be32_to_cpu(path->sl_tclass_flowlabel) >> 20) & 0xff;
418 ib_ah_attr->grh.flow_label =
419 be32_to_cpu(path->sl_tclass_flowlabel) & 0xfffff;
420 memcpy(ib_ah_attr->grh.dgid.raw,
421 path->rgid, sizeof ib_ah_attr->grh.dgid.raw);
422 }
423}
424
425int mthca_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask,
426 struct ib_qp_init_attr *qp_init_attr)
427{
428 struct mthca_dev *dev = to_mdev(ibqp->device);
429 struct mthca_qp *qp = to_mqp(ibqp);
Dotan Barakf5e10522006-12-27 15:46:06 +0200430 int err = 0;
431 struct mthca_mailbox *mailbox = NULL;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800432 struct mthca_qp_param *qp_param;
433 struct mthca_qp_context *context;
434 int mthca_state;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800435
Dotan Barak5121df32008-04-16 21:09:34 -0700436 mutex_lock(&qp->mutex);
437
Dotan Barakf5e10522006-12-27 15:46:06 +0200438 if (qp->state == IB_QPS_RESET) {
439 qp_attr->qp_state = IB_QPS_RESET;
440 goto done;
441 }
442
Eli Cohen8ebe5072006-02-13 16:40:21 -0800443 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
Dotan Barak5121df32008-04-16 21:09:34 -0700444 if (IS_ERR(mailbox)) {
445 err = PTR_ERR(mailbox);
446 goto out;
447 }
Eli Cohen8ebe5072006-02-13 16:40:21 -0800448
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000449 err = mthca_QUERY_QP(dev, qp->qpn, 0, mailbox);
450 if (err) {
451 mthca_warn(dev, "QUERY_QP failed (%d)\n", err);
Dotan Barak5121df32008-04-16 21:09:34 -0700452 goto out_mailbox;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800453 }
454
455 qp_param = mailbox->buf;
456 context = &qp_param->context;
457 mthca_state = be32_to_cpu(context->flags) >> 28;
458
Dotan Barak5121df32008-04-16 21:09:34 -0700459 qp->state = to_ib_qp_state(mthca_state);
460 qp_attr->qp_state = qp->state;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800461 qp_attr->path_mtu = context->mtu_msgmax >> 5;
462 qp_attr->path_mig_state =
463 to_ib_mig_state((be32_to_cpu(context->flags) >> 11) & 0x3);
464 qp_attr->qkey = be32_to_cpu(context->qkey);
465 qp_attr->rq_psn = be32_to_cpu(context->rnr_nextrecvpsn) & 0xffffff;
466 qp_attr->sq_psn = be32_to_cpu(context->next_send_psn) & 0xffffff;
467 qp_attr->dest_qp_num = be32_to_cpu(context->remote_qpn) & 0xffffff;
468 qp_attr->qp_access_flags =
469 to_ib_qp_access_flags(be32_to_cpu(context->params2));
Eli Cohen8ebe5072006-02-13 16:40:21 -0800470
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700471 if (qp->transport == RC || qp->transport == UC) {
Dasaratharaman Chandramouli766b7f62017-04-29 14:41:25 -0400472 to_rdma_ah_attr(dev, &qp_attr->ah_attr, &context->pri_path);
473 to_rdma_ah_attr(dev, &qp_attr->alt_ah_attr, &context->alt_path);
Jack Morgensteinf6f76722006-08-28 19:10:34 +0300474 qp_attr->alt_pkey_index =
475 be32_to_cpu(context->alt_path.port_pkey) & 0x7f;
476 qp_attr->alt_port_num = qp_attr->alt_ah_attr.port_num;
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700477 }
Eli Cohen8ebe5072006-02-13 16:40:21 -0800478
Jack Morgensteinf6f76722006-08-28 19:10:34 +0300479 qp_attr->pkey_index = be32_to_cpu(context->pri_path.port_pkey) & 0x7f;
480 qp_attr->port_num =
481 (be32_to_cpu(context->pri_path.port_pkey) >> 24) & 0x3;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800482
483 /* qp_attr->en_sqd_async_notify is only applicable in modify qp */
484 qp_attr->sq_draining = mthca_state == MTHCA_QP_STATE_DRAINING;
485
486 qp_attr->max_rd_atomic = 1 << ((be32_to_cpu(context->params1) >> 21) & 0x7);
487
488 qp_attr->max_dest_rd_atomic =
489 1 << ((be32_to_cpu(context->params2) >> 21) & 0x7);
490 qp_attr->min_rnr_timer =
491 (be32_to_cpu(context->rnr_nextrecvpsn) >> 24) & 0x1f;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800492 qp_attr->timeout = context->pri_path.ackto >> 3;
493 qp_attr->retry_cnt = (be32_to_cpu(context->params1) >> 16) & 0x7;
494 qp_attr->rnr_retry = context->pri_path.rnr_retry >> 5;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800495 qp_attr->alt_timeout = context->alt_path.ackto >> 3;
Dotan Barakf5e10522006-12-27 15:46:06 +0200496
497done:
498 qp_attr->cur_qp_state = qp_attr->qp_state;
499 qp_attr->cap.max_send_wr = qp->sq.max;
500 qp_attr->cap.max_recv_wr = qp->rq.max;
501 qp_attr->cap.max_send_sge = qp->sq.max_gs;
502 qp_attr->cap.max_recv_sge = qp->rq.max_gs;
503 qp_attr->cap.max_inline_data = qp->max_inline_data;
504
505 qp_init_attr->cap = qp_attr->cap;
Dotan Barak16551d42012-07-11 15:39:28 +0000506 qp_init_attr->sq_sig_type = qp->sq_policy;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800507
Dotan Barak5121df32008-04-16 21:09:34 -0700508out_mailbox:
Eli Cohen8ebe5072006-02-13 16:40:21 -0800509 mthca_free_mailbox(dev, mailbox);
Dotan Barak5121df32008-04-16 21:09:34 -0700510
511out:
512 mutex_unlock(&qp->mutex);
Eli Cohen8ebe5072006-02-13 16:40:21 -0800513 return err;
514}
515
Dasaratharaman Chandramouli90898852017-04-29 14:41:18 -0400516static int mthca_path_set(struct mthca_dev *dev, const struct rdma_ah_attr *ah,
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700517 struct mthca_qp_path *path, u8 port)
Dotan Barak4de144b2006-01-06 13:23:58 -0800518{
519 path->g_mylmc = ah->src_path_bits & 0x7f;
520 path->rlid = cpu_to_be16(ah->dlid);
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700521 path->static_rate = mthca_get_rate(dev, ah->static_rate, port);
Dotan Barak4de144b2006-01-06 13:23:58 -0800522
523 if (ah->ah_flags & IB_AH_GRH) {
Dotan Barak0ef61db2006-03-19 17:20:36 +0200524 if (ah->grh.sgid_index >= dev->limits.gid_table_len) {
525 mthca_dbg(dev, "sgid_index (%u) too large. max is %d\n",
526 ah->grh.sgid_index, dev->limits.gid_table_len-1);
527 return -1;
528 }
529
Dotan Barak4de144b2006-01-06 13:23:58 -0800530 path->g_mylmc |= 1 << 7;
531 path->mgid_index = ah->grh.sgid_index;
532 path->hop_limit = ah->grh.hop_limit;
Roland Dreier2fa5e2e2006-02-01 13:38:24 -0800533 path->sl_tclass_flowlabel =
Dotan Barak4de144b2006-01-06 13:23:58 -0800534 cpu_to_be32((ah->sl << 28) |
Roland Dreier2fa5e2e2006-02-01 13:38:24 -0800535 (ah->grh.traffic_class << 20) |
Dotan Barak4de144b2006-01-06 13:23:58 -0800536 (ah->grh.flow_label));
537 memcpy(path->rgid, ah->grh.dgid.raw, 16);
538 } else
539 path->sl_tclass_flowlabel = cpu_to_be32(ah->sl << 28);
Dotan Barak0ef61db2006-03-19 17:20:36 +0200540
541 return 0;
Dotan Barak4de144b2006-01-06 13:23:58 -0800542}
543
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300544static int __mthca_modify_qp(struct ib_qp *ibqp,
545 const struct ib_qp_attr *attr, int attr_mask,
546 enum ib_qp_state cur_state, enum ib_qp_state new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 struct mthca_dev *dev = to_mdev(ibqp->device);
549 struct mthca_qp *qp = to_mqp(ibqp);
Roland Dreiered878452005-06-27 14:36:45 -0700550 struct mthca_mailbox *mailbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 struct mthca_qp_param *qp_param;
552 struct mthca_qp_context *qp_context;
Roland Dreier3fa1fa32006-02-03 14:53:28 -0800553 u32 sqd_event = 0;
Roland Dreierc9c5d9f2006-06-17 20:37:41 -0700554 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Roland Dreiered878452005-06-27 14:36:45 -0700556 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700557 if (IS_ERR(mailbox)) {
558 err = PTR_ERR(mailbox);
559 goto out;
560 }
Roland Dreiered878452005-06-27 14:36:45 -0700561 qp_param = mailbox->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 qp_context = &qp_param->context;
563 memset(qp_param, 0, sizeof *qp_param);
564
565 qp_context->flags = cpu_to_be32((to_mthca_state(new_state) << 28) |
566 (to_mthca_st(qp->transport) << 16));
567 qp_context->flags |= cpu_to_be32(MTHCA_QP_BIT_DE);
568 if (!(attr_mask & IB_QP_PATH_MIG_STATE))
569 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
570 else {
571 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PM_STATE);
572 switch (attr->path_mig_state) {
573 case IB_MIG_MIGRATED:
574 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
575 break;
576 case IB_MIG_REARM:
577 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_REARM << 11);
578 break;
579 case IB_MIG_ARMED:
580 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_ARMED << 11);
581 break;
582 }
583 }
584
585 /* leave tavor_sched_queue as 0 */
586
587 if (qp->transport == MLX || qp->transport == UD)
588 qp_context->mtu_msgmax = (IB_MTU_2048 << 5) | 11;
Dotan Barak0ef61db2006-03-19 17:20:36 +0200589 else if (attr_mask & IB_QP_PATH_MTU) {
590 if (attr->path_mtu < IB_MTU_256 || attr->path_mtu > IB_MTU_2048) {
591 mthca_dbg(dev, "path MTU (%u) is invalid\n",
592 attr->path_mtu);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700593 goto out_mailbox;
Dotan Barak0ef61db2006-03-19 17:20:36 +0200594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 qp_context->mtu_msgmax = (attr->path_mtu << 5) | 31;
Dotan Barak0ef61db2006-03-19 17:20:36 +0200596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700598 if (mthca_is_memfree(dev)) {
Roland Dreierec34a922005-08-19 10:59:31 -0700599 if (qp->rq.max)
David Howellsf0d1b0b2006-12-08 02:37:49 -0800600 qp_context->rq_size_stride = ilog2(qp->rq.max) << 3;
Roland Dreierec34a922005-08-19 10:59:31 -0700601 qp_context->rq_size_stride |= qp->rq.wqe_shift - 4;
602
603 if (qp->sq.max)
David Howellsf0d1b0b2006-12-08 02:37:49 -0800604 qp_context->sq_size_stride = ilog2(qp->sq.max) << 3;
Roland Dreierec34a922005-08-19 10:59:31 -0700605 qp_context->sq_size_stride |= qp->sq.wqe_shift - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607
608 /* leave arbel_sched_queue as 0 */
609
Roland Dreier80c8ec22005-07-07 17:57:20 -0700610 if (qp->ibqp.uobject)
611 qp_context->usr_page =
612 cpu_to_be32(to_mucontext(qp->ibqp.uobject->context)->uar.index);
613 else
614 qp_context->usr_page = cpu_to_be32(dev->driver_uar.index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 qp_context->local_qpn = cpu_to_be32(qp->qpn);
616 if (attr_mask & IB_QP_DEST_QPN) {
617 qp_context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
618 }
619
620 if (qp->transport == MLX)
621 qp_context->pri_path.port_pkey |=
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700622 cpu_to_be32(qp->port << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 else {
624 if (attr_mask & IB_QP_PORT) {
625 qp_context->pri_path.port_pkey |=
626 cpu_to_be32(attr->port_num << 24);
627 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PORT_NUM);
628 }
629 }
630
631 if (attr_mask & IB_QP_PKEY_INDEX) {
632 qp_context->pri_path.port_pkey |=
633 cpu_to_be32(attr->pkey_index);
634 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PKEY_INDEX);
635 }
636
637 if (attr_mask & IB_QP_RNR_RETRY) {
Dotan Barak4de144b2006-01-06 13:23:58 -0800638 qp_context->alt_path.rnr_retry = qp_context->pri_path.rnr_retry =
639 attr->rnr_retry << 5;
Roland Dreier2fa5e2e2006-02-01 13:38:24 -0800640 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_RETRY |
Dotan Barak4de144b2006-01-06 13:23:58 -0800641 MTHCA_QP_OPTPAR_ALT_RNR_RETRY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
644 if (attr_mask & IB_QP_AV) {
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700645 if (mthca_path_set(dev, &attr->ah_attr, &qp_context->pri_path,
646 attr_mask & IB_QP_PORT ? attr->port_num : qp->port))
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700647 goto out_mailbox;
Dotan Barak0ef61db2006-03-19 17:20:36 +0200648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH);
650 }
651
Michael S. Tsirkin9ba6d552007-04-12 18:10:25 +0300652 if (ibqp->qp_type == IB_QPT_RC &&
653 cur_state == IB_QPS_INIT && new_state == IB_QPS_RTR) {
654 u8 sched_queue = ibqp->uobject ? 0x2 : 0x1;
655
656 if (mthca_is_memfree(dev))
657 qp_context->rlkey_arbel_sched_queue |= sched_queue;
658 else
659 qp_context->tavor_sched_queue |= cpu_to_be32(sched_queue);
660
661 qp_param->opt_param_mask |=
662 cpu_to_be32(MTHCA_QP_OPTPAR_SCHED_QUEUE);
663 }
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (attr_mask & IB_QP_TIMEOUT) {
Roland Dreierbb4a7f02005-09-12 14:08:51 -0700666 qp_context->pri_path.ackto = attr->timeout << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_ACK_TIMEOUT);
668 }
669
Dotan Barak4de144b2006-01-06 13:23:58 -0800670 if (attr_mask & IB_QP_ALT_PATH) {
Dotan Barak67e73772006-03-01 14:28:12 -0800671 if (attr->alt_pkey_index >= dev->limits.pkey_table_len) {
672 mthca_dbg(dev, "Alternate P_Key index (%u) too large. max is %d\n",
673 attr->alt_pkey_index, dev->limits.pkey_table_len-1);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700674 goto out_mailbox;
Dotan Barak67e73772006-03-01 14:28:12 -0800675 }
676
Dotan Barak4de144b2006-01-06 13:23:58 -0800677 if (attr->alt_port_num == 0 || attr->alt_port_num > dev->limits.num_ports) {
Roland Dreier2fa5e2e2006-02-01 13:38:24 -0800678 mthca_dbg(dev, "Alternate port number (%u) is invalid\n",
Dotan Barak4de144b2006-01-06 13:23:58 -0800679 attr->alt_port_num);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700680 goto out_mailbox;
Dotan Barak4de144b2006-01-06 13:23:58 -0800681 }
682
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700683 if (mthca_path_set(dev, &attr->alt_ah_attr, &qp_context->alt_path,
684 attr->alt_ah_attr.port_num))
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700685 goto out_mailbox;
Dotan Barak0ef61db2006-03-19 17:20:36 +0200686
Roland Dreier2fa5e2e2006-02-01 13:38:24 -0800687 qp_context->alt_path.port_pkey |= cpu_to_be32(attr->alt_pkey_index |
Dotan Barak4de144b2006-01-06 13:23:58 -0800688 attr->alt_port_num << 24);
689 qp_context->alt_path.ackto = attr->alt_timeout << 3;
690 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_ALT_ADDR_PATH);
691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 /* leave rdd as 0 */
694 qp_context->pd = cpu_to_be32(to_mpd(ibqp->pd)->pd_num);
695 /* leave wqe_base as 0 (we always create an MR based at 0 for WQs) */
696 qp_context->wqe_lkey = cpu_to_be32(qp->mr.ibmr.lkey);
697 qp_context->params1 = cpu_to_be32((MTHCA_ACK_REQ_FREQ << 28) |
698 (MTHCA_FLIGHT_LIMIT << 24) |
Jack Morgensteinc4342d82005-12-15 19:59:01 -0800699 MTHCA_QP_BIT_SWE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (qp->sq_policy == IB_SIGNAL_ALL_WR)
701 qp_context->params1 |= cpu_to_be32(MTHCA_QP_BIT_SSC);
702 if (attr_mask & IB_QP_RETRY_CNT) {
703 qp_context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
704 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RETRY_COUNT);
705 }
706
Roland Dreier34a4a752005-06-27 14:36:41 -0700707 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
Jack Morgensteinc4342d82005-12-15 19:59:01 -0800708 if (attr->max_rd_atomic) {
709 qp_context->params1 |=
710 cpu_to_be32(MTHCA_QP_BIT_SRE |
711 MTHCA_QP_BIT_SAE);
Jack Morgenstein6aa2e4e2005-12-09 16:38:04 -0800712 qp_context->params1 |=
713 cpu_to_be32(fls(attr->max_rd_atomic - 1) << 21);
Jack Morgensteinc4342d82005-12-15 19:59:01 -0800714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_SRA_MAX);
716 }
717
718 if (attr_mask & IB_QP_SQ_PSN)
719 qp_context->next_send_psn = cpu_to_be32(attr->sq_psn);
720 qp_context->cqn_snd = cpu_to_be32(to_mcq(ibqp->send_cq)->cqn);
721
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700722 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 qp_context->snd_wqe_base_l = cpu_to_be32(qp->send_wqe_offset);
724 qp_context->snd_db_index = cpu_to_be32(qp->sq.db_index);
725 }
726
Roland Dreier34a4a752005-06-27 14:36:41 -0700727 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
Jack Morgenstein6aa2e4e2005-12-09 16:38:04 -0800728 if (attr->max_dest_rd_atomic)
729 qp_context->params2 |=
730 cpu_to_be32(fls(attr->max_dest_rd_atomic - 1) << 21);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RRA_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
Jack Morgensteind1646f82005-12-15 14:36:24 -0800735 if (attr_mask & (IB_QP_ACCESS_FLAGS | IB_QP_MAX_DEST_RD_ATOMIC)) {
736 qp_context->params2 |= get_hw_access_flags(qp, attr, attr_mask);
737 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
738 MTHCA_QP_OPTPAR_RRE |
739 MTHCA_QP_OPTPAR_RAE);
740 }
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RSC);
743
Roland Dreierec34a922005-08-19 10:59:31 -0700744 if (ibqp->srq)
745 qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RIC);
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (attr_mask & IB_QP_MIN_RNR_TIMER) {
748 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
749 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_TIMEOUT);
750 }
751 if (attr_mask & IB_QP_RQ_PSN)
752 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
753
754 qp_context->ra_buff_indx =
755 cpu_to_be32(dev->qp_table.rdb_base +
756 ((qp->qpn & (dev->limits.num_qps - 1)) * MTHCA_RDB_ENTRY_SIZE <<
757 dev->qp_table.rdb_shift));
758
759 qp_context->cqn_rcv = cpu_to_be32(to_mcq(ibqp->recv_cq)->cqn);
760
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700761 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 qp_context->rcv_db_index = cpu_to_be32(qp->rq.db_index);
763
764 if (attr_mask & IB_QP_QKEY) {
765 qp_context->qkey = cpu_to_be32(attr->qkey);
766 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_Q_KEY);
767 }
768
Roland Dreierec34a922005-08-19 10:59:31 -0700769 if (ibqp->srq)
770 qp_context->srqn = cpu_to_be32(1 << 24 |
771 to_msrq(ibqp->srq)->srqn);
772
Roland Dreier3fa1fa32006-02-03 14:53:28 -0800773 if (cur_state == IB_QPS_RTS && new_state == IB_QPS_SQD &&
774 attr_mask & IB_QP_EN_SQD_ASYNC_NOTIFY &&
775 attr->en_sqd_async_notify)
776 sqd_event = 1 << 31;
777
Roland Dreierd8441832006-02-13 16:30:18 -0800778 err = mthca_MODIFY_QP(dev, cur_state, new_state, qp->qpn, 0,
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000779 mailbox, sqd_event);
780 if (err) {
781 mthca_warn(dev, "modify QP %d->%d returned %d.\n",
782 cur_state, new_state, err);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700783 goto out_mailbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
Roland Dreier192daa12006-03-24 15:47:30 -0800786 qp->state = new_state;
787 if (attr_mask & IB_QP_ACCESS_FLAGS)
788 qp->atomic_rd_en = attr->qp_access_flags;
789 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
790 qp->resp_depth = attr->max_dest_rd_atomic;
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700791 if (attr_mask & IB_QP_PORT)
792 qp->port = attr->port_num;
793 if (attr_mask & IB_QP_ALT_PATH)
794 qp->alt_port = attr->alt_port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 if (is_sqp(dev, qp))
797 store_attrs(to_msqp(qp), attr, attr_mask);
798
799 /*
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700800 * If we moved QP0 to RTR, bring the IB link up; if we moved
801 * QP0 to RESET or ERROR, bring the link back down.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 */
803 if (is_qp0(dev, qp)) {
804 if (cur_state != IB_QPS_RTR &&
805 new_state == IB_QPS_RTR)
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700806 init_port(dev, qp->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 if (cur_state != IB_QPS_RESET &&
809 cur_state != IB_QPS_ERR &&
810 (new_state == IB_QPS_RESET ||
811 new_state == IB_QPS_ERR))
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000812 mthca_CLOSE_IB(dev, qp->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700815 /*
816 * If we moved a kernel QP to RESET, clean up all old CQ
817 * entries and reinitialize the QP.
818 */
Roland Dreier192daa12006-03-24 15:47:30 -0800819 if (new_state == IB_QPS_RESET && !qp->ibqp.uobject) {
Roland Dreierd35cc332006-09-22 15:22:55 -0700820 mthca_cq_clean(dev, to_mcq(qp->ibqp.recv_cq), qp->qpn,
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700821 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
822 if (qp->ibqp.send_cq != qp->ibqp.recv_cq)
Roland Dreierd35cc332006-09-22 15:22:55 -0700823 mthca_cq_clean(dev, to_mcq(qp->ibqp.send_cq), qp->qpn, NULL);
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700824
Michael S. Tsirkin0964d912006-07-14 00:23:51 -0700825 mthca_wq_reset(&qp->sq);
Michael S. Tsirkin187a2582005-11-28 11:19:43 -0800826 qp->sq.last = get_send_wqe(qp, qp->sq.max - 1);
827
Michael S. Tsirkin0964d912006-07-14 00:23:51 -0700828 mthca_wq_reset(&qp->rq);
Michael S. Tsirkin187a2582005-11-28 11:19:43 -0800829 qp->rq.last = get_recv_wqe(qp, qp->rq.max - 1);
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700830
831 if (mthca_is_memfree(dev)) {
832 *qp->sq.db = 0;
833 *qp->rq.db = 0;
834 }
835 }
836
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700837out_mailbox:
Roland Dreier192daa12006-03-24 15:47:30 -0800838 mthca_free_mailbox(dev, mailbox);
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300839out:
840 return err;
841}
842
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300843int mthca_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, int attr_mask,
844 struct ib_udata *udata)
845{
846 struct mthca_dev *dev = to_mdev(ibqp->device);
847 struct mthca_qp *qp = to_mqp(ibqp);
848 enum ib_qp_state cur_state, new_state;
849 int err = -EINVAL;
850
851 mutex_lock(&qp->mutex);
852 if (attr_mask & IB_QP_CUR_STATE) {
853 cur_state = attr->cur_qp_state;
854 } else {
855 spin_lock_irq(&qp->sq.lock);
856 spin_lock(&qp->rq.lock);
857 cur_state = qp->state;
858 spin_unlock(&qp->rq.lock);
859 spin_unlock_irq(&qp->sq.lock);
860 }
861
862 new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state;
863
Matan Barakdd5f03b2013-12-12 18:03:11 +0200864 if (!ib_modify_qp_is_ok(cur_state, new_state, ibqp->qp_type, attr_mask,
865 IB_LINK_LAYER_UNSPECIFIED)) {
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300866 mthca_dbg(dev, "Bad QP transition (transport %d) "
867 "%d->%d with attr 0x%08x\n",
868 qp->transport, cur_state, new_state,
869 attr_mask);
870 goto out;
871 }
872
873 if ((attr_mask & IB_QP_PKEY_INDEX) &&
874 attr->pkey_index >= dev->limits.pkey_table_len) {
875 mthca_dbg(dev, "P_Key index (%u) too large. max is %d\n",
876 attr->pkey_index, dev->limits.pkey_table_len-1);
877 goto out;
878 }
879
880 if ((attr_mask & IB_QP_PORT) &&
881 (attr->port_num == 0 || attr->port_num > dev->limits.num_ports)) {
882 mthca_dbg(dev, "Port number (%u) is invalid\n", attr->port_num);
883 goto out;
884 }
885
886 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC &&
887 attr->max_rd_atomic > dev->limits.max_qp_init_rdma) {
888 mthca_dbg(dev, "Max rdma_atomic as initiator %u too large (max is %d)\n",
889 attr->max_rd_atomic, dev->limits.max_qp_init_rdma);
890 goto out;
891 }
892
893 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC &&
894 attr->max_dest_rd_atomic > 1 << dev->qp_table.rdb_shift) {
895 mthca_dbg(dev, "Max rdma_atomic as responder %u too large (max %d)\n",
896 attr->max_dest_rd_atomic, 1 << dev->qp_table.rdb_shift);
897 goto out;
898 }
899
900 if (cur_state == new_state && cur_state == IB_QPS_RESET) {
901 err = 0;
902 goto out;
903 }
904
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300905 err = __mthca_modify_qp(ibqp, attr, attr_mask, cur_state, new_state);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700906
907out:
908 mutex_unlock(&qp->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return err;
910}
911
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -0800912static int mthca_max_data_size(struct mthca_dev *dev, struct mthca_qp *qp, int desc_sz)
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800913{
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800914 /*
915 * Calculate the maximum size of WQE s/g segments, excluding
916 * the next segment and other non-data segments.
917 */
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -0800918 int max_data_size = desc_sz - sizeof (struct mthca_next_seg);
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800919
920 switch (qp->transport) {
921 case MLX:
922 max_data_size -= 2 * sizeof (struct mthca_data_seg);
923 break;
924
925 case UD:
926 if (mthca_is_memfree(dev))
927 max_data_size -= sizeof (struct mthca_arbel_ud_seg);
928 else
929 max_data_size -= sizeof (struct mthca_tavor_ud_seg);
930 break;
931
932 default:
933 max_data_size -= sizeof (struct mthca_raddr_seg);
934 break;
935 }
936
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -0800937 return max_data_size;
938}
939
940static inline int mthca_max_inline_data(struct mthca_pd *pd, int max_data_size)
941{
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800942 /* We don't support inline data for kernel QPs (yet). */
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -0800943 return pd->ibpd.uobject ? max_data_size - MTHCA_INLINE_HEADER_SIZE : 0;
944}
945
946static void mthca_adjust_qp_caps(struct mthca_dev *dev,
947 struct mthca_pd *pd,
948 struct mthca_qp *qp)
949{
950 int max_data_size = mthca_max_data_size(dev, qp,
951 min(dev->limits.max_desc_sz,
952 1 << qp->sq.wqe_shift));
953
954 qp->max_inline_data = mthca_max_inline_data(pd, max_data_size);
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800955
Michael S. Tsirkin48fd0d12005-11-18 14:11:17 -0800956 qp->sq.max_gs = min_t(int, dev->limits.max_sg,
957 max_data_size / sizeof (struct mthca_data_seg));
958 qp->rq.max_gs = min_t(int, dev->limits.max_sg,
959 (min(dev->limits.max_desc_sz, 1 << qp->rq.wqe_shift) -
960 sizeof (struct mthca_next_seg)) /
961 sizeof (struct mthca_data_seg));
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800962}
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964/*
965 * Allocate and register buffer for WQEs. qp->rq.max, sq.max,
966 * rq.max_gs and sq.max_gs must all be assigned.
967 * mthca_alloc_wqe_buf will calculate rq.wqe_shift and
968 * sq.wqe_shift (as well as send_wqe_offset, is_direct, and
969 * queue)
970 */
971static int mthca_alloc_wqe_buf(struct mthca_dev *dev,
972 struct mthca_pd *pd,
973 struct mthca_qp *qp)
974{
975 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 int err = -ENOMEM;
977
978 size = sizeof (struct mthca_next_seg) +
979 qp->rq.max_gs * sizeof (struct mthca_data_seg);
980
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800981 if (size > dev->limits.max_desc_sz)
982 return -EINVAL;
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 for (qp->rq.wqe_shift = 6; 1 << qp->rq.wqe_shift < size;
985 qp->rq.wqe_shift++)
986 ; /* nothing */
987
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800988 size = qp->sq.max_gs * sizeof (struct mthca_data_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 switch (qp->transport) {
990 case MLX:
991 size += 2 * sizeof (struct mthca_data_seg);
992 break;
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 case UD:
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800995 size += mthca_is_memfree(dev) ?
996 sizeof (struct mthca_arbel_ud_seg) :
997 sizeof (struct mthca_tavor_ud_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 break;
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800999
1000 case UC:
1001 size += sizeof (struct mthca_raddr_seg);
1002 break;
1003
1004 case RC:
1005 size += sizeof (struct mthca_raddr_seg);
1006 /*
1007 * An atomic op will require an atomic segment, a
1008 * remote address segment and one scatter entry.
1009 */
1010 size = max_t(int, size,
1011 sizeof (struct mthca_atomic_seg) +
1012 sizeof (struct mthca_raddr_seg) +
1013 sizeof (struct mthca_data_seg));
1014 break;
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 default:
Jack Morgenstein77369ed2005-11-09 11:26:07 -08001017 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
1019
Jack Morgenstein77369ed2005-11-09 11:26:07 -08001020 /* Make sure that we have enough space for a bind request */
1021 size = max_t(int, size, sizeof (struct mthca_bind_seg));
1022
1023 size += sizeof (struct mthca_next_seg);
1024
1025 if (size > dev->limits.max_desc_sz)
1026 return -EINVAL;
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 for (qp->sq.wqe_shift = 6; 1 << qp->sq.wqe_shift < size;
1029 qp->sq.wqe_shift++)
1030 ; /* nothing */
1031
1032 qp->send_wqe_offset = ALIGN(qp->rq.max << qp->rq.wqe_shift,
1033 1 << qp->sq.wqe_shift);
Roland Dreier80c8ec22005-07-07 17:57:20 -07001034
1035 /*
1036 * If this is a userspace QP, we don't actually have to
1037 * allocate anything. All we need is to calculate the WQE
1038 * sizes and the send_wqe_offset, so we're done now.
1039 */
1040 if (pd->ibpd.uobject)
1041 return 0;
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 size = PAGE_ALIGN(qp->send_wqe_offset +
1044 (qp->sq.max << qp->sq.wqe_shift));
1045
1046 qp->wrid = kmalloc((qp->rq.max + qp->sq.max) * sizeof (u64),
1047 GFP_KERNEL);
1048 if (!qp->wrid)
1049 goto err_out;
1050
Roland Dreier87b81672005-08-18 13:39:31 -07001051 err = mthca_buf_alloc(dev, size, MTHCA_MAX_DIRECT_QP_SIZE,
1052 &qp->queue, &qp->is_direct, pd, 0, &qp->mr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (err)
Roland Dreier87b81672005-08-18 13:39:31 -07001054 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return 0;
1057
Roland Dreier87b81672005-08-18 13:39:31 -07001058err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 kfree(qp->wrid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return err;
1061}
1062
Roland Dreier80c8ec22005-07-07 17:57:20 -07001063static void mthca_free_wqe_buf(struct mthca_dev *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 struct mthca_qp *qp)
1065{
Roland Dreier87b81672005-08-18 13:39:31 -07001066 mthca_buf_free(dev, PAGE_ALIGN(qp->send_wqe_offset +
1067 (qp->sq.max << qp->sq.wqe_shift)),
1068 &qp->queue, qp->is_direct, &qp->mr);
Roland Dreier80c8ec22005-07-07 17:57:20 -07001069 kfree(qp->wrid);
1070}
1071
1072static int mthca_map_memfree(struct mthca_dev *dev,
1073 struct mthca_qp *qp)
1074{
1075 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001077 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 ret = mthca_table_get(dev, dev->qp_table.qp_table, qp->qpn);
1079 if (ret)
1080 return ret;
1081
1082 ret = mthca_table_get(dev, dev->qp_table.eqp_table, qp->qpn);
1083 if (ret)
1084 goto err_qpc;
1085
Roland Dreier2fa5e2e2006-02-01 13:38:24 -08001086 ret = mthca_table_get(dev, dev->qp_table.rdb_table,
1087 qp->qpn << dev->qp_table.rdb_shift);
1088 if (ret)
1089 goto err_eqpc;
Roland Dreier08aeb142005-04-16 15:26:34 -07001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
1092
1093 return 0;
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095err_eqpc:
1096 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
1097
1098err_qpc:
1099 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
1100
1101 return ret;
1102}
1103
Roland Dreier80c8ec22005-07-07 17:57:20 -07001104static void mthca_unmap_memfree(struct mthca_dev *dev,
1105 struct mthca_qp *qp)
1106{
1107 mthca_table_put(dev, dev->qp_table.rdb_table,
1108 qp->qpn << dev->qp_table.rdb_shift);
1109 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
1110 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
1111}
1112
1113static int mthca_alloc_memfree(struct mthca_dev *dev,
1114 struct mthca_qp *qp)
1115{
Roland Dreier80c8ec22005-07-07 17:57:20 -07001116 if (mthca_is_memfree(dev)) {
1117 qp->rq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_RQ,
1118 qp->qpn, &qp->rq.db);
1119 if (qp->rq.db_index < 0)
Roland Dreier88171cf2007-03-01 13:17:14 -08001120 return -ENOMEM;
Roland Dreier80c8ec22005-07-07 17:57:20 -07001121
1122 qp->sq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_SQ,
1123 qp->qpn, &qp->sq.db);
Roland Dreier88171cf2007-03-01 13:17:14 -08001124 if (qp->sq.db_index < 0) {
Roland Dreier80c8ec22005-07-07 17:57:20 -07001125 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
Roland Dreier88171cf2007-03-01 13:17:14 -08001126 return -ENOMEM;
1127 }
Roland Dreier80c8ec22005-07-07 17:57:20 -07001128 }
1129
Roland Dreier88171cf2007-03-01 13:17:14 -08001130 return 0;
Roland Dreier80c8ec22005-07-07 17:57:20 -07001131}
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133static void mthca_free_memfree(struct mthca_dev *dev,
1134 struct mthca_qp *qp)
1135{
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001136 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 mthca_free_db(dev, MTHCA_DB_TYPE_SQ, qp->sq.db_index);
1138 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140}
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142static int mthca_alloc_qp_common(struct mthca_dev *dev,
1143 struct mthca_pd *pd,
1144 struct mthca_cq *send_cq,
1145 struct mthca_cq *recv_cq,
1146 enum ib_sig_type send_policy,
1147 struct mthca_qp *qp)
1148{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 int ret;
1150 int i;
Eli Cohen1d368c52008-01-24 06:38:06 -08001151 struct mthca_next_seg *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Roland Dreiera3285aa2006-05-09 10:50:29 -07001153 qp->refcount = 1;
Michael S. Tsirkin30a7e8e2005-09-07 09:45:00 -07001154 init_waitqueue_head(&qp->wait);
Roland Dreierc93b6fb2006-06-17 20:37:41 -07001155 mutex_init(&qp->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 qp->state = IB_QPS_RESET;
1157 qp->atomic_rd_en = 0;
1158 qp->resp_depth = 0;
1159 qp->sq_policy = send_policy;
Michael S. Tsirkin0964d912006-07-14 00:23:51 -07001160 mthca_wq_reset(&qp->sq);
1161 mthca_wq_reset(&qp->rq);
1162
Zach Browna46f9482006-07-04 02:57:52 -07001163 spin_lock_init(&qp->sq.lock);
1164 spin_lock_init(&qp->rq.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Roland Dreier80c8ec22005-07-07 17:57:20 -07001166 ret = mthca_map_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (ret)
1168 return ret;
1169
1170 ret = mthca_alloc_wqe_buf(dev, pd, qp);
1171 if (ret) {
Roland Dreier80c8ec22005-07-07 17:57:20 -07001172 mthca_unmap_memfree(dev, qp);
1173 return ret;
1174 }
1175
Jack Morgenstein77369ed2005-11-09 11:26:07 -08001176 mthca_adjust_qp_caps(dev, pd, qp);
1177
Roland Dreier80c8ec22005-07-07 17:57:20 -07001178 /*
1179 * If this is a userspace QP, we're done now. The doorbells
1180 * will be allocated and buffers will be initialized in
1181 * userspace.
1182 */
1183 if (pd->ibpd.uobject)
1184 return 0;
1185
1186 ret = mthca_alloc_memfree(dev, qp);
1187 if (ret) {
1188 mthca_free_wqe_buf(dev, qp);
1189 mthca_unmap_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return ret;
1191 }
1192
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001193 if (mthca_is_memfree(dev)) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001194 struct mthca_data_seg *scatter;
1195 int size = (sizeof (struct mthca_next_seg) +
1196 qp->rq.max_gs * sizeof (struct mthca_data_seg)) / 16;
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 for (i = 0; i < qp->rq.max; ++i) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001199 next = get_recv_wqe(qp, i);
1200 next->nda_op = cpu_to_be32(((i + 1) & (qp->rq.max - 1)) <<
1201 qp->rq.wqe_shift);
1202 next->ee_nds = cpu_to_be32(size);
1203
1204 for (scatter = (void *) (next + 1);
1205 (void *) scatter < (void *) next + (1 << qp->rq.wqe_shift);
1206 ++scatter)
1207 scatter->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
1209
1210 for (i = 0; i < qp->sq.max; ++i) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001211 next = get_send_wqe(qp, i);
1212 next->nda_op = cpu_to_be32((((i + 1) & (qp->sq.max - 1)) <<
1213 qp->sq.wqe_shift) +
1214 qp->send_wqe_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
Eli Cohen1d368c52008-01-24 06:38:06 -08001216 } else {
1217 for (i = 0; i < qp->rq.max; ++i) {
1218 next = get_recv_wqe(qp, i);
1219 next->nda_op = htonl((((i + 1) % qp->rq.max) <<
1220 qp->rq.wqe_shift) | 1);
1221 }
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
Roland Dreierd6cff022005-09-13 10:41:03 -07001225 qp->sq.last = get_send_wqe(qp, qp->sq.max - 1);
1226 qp->rq.last = get_recv_wqe(qp, qp->rq.max - 1);
1227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return 0;
1229}
1230
Roland Dreier80c8ec22005-07-07 17:57:20 -07001231static int mthca_set_qp_size(struct mthca_dev *dev, struct ib_qp_cap *cap,
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -08001232 struct mthca_pd *pd, struct mthca_qp *qp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -08001234 int max_data_size = mthca_max_data_size(dev, qp, dev->limits.max_desc_sz);
1235
Roland Dreier80c8ec22005-07-07 17:57:20 -07001236 /* Sanity check QP size before proceeding */
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -08001237 if (cap->max_send_wr > dev->limits.max_wqes ||
1238 cap->max_recv_wr > dev->limits.max_wqes ||
1239 cap->max_send_sge > dev->limits.max_sg ||
1240 cap->max_recv_sge > dev->limits.max_sg ||
1241 cap->max_inline_data > mthca_max_inline_data(pd, max_data_size))
1242 return -EINVAL;
1243
1244 /*
Roland Dreieraed01222008-07-14 23:48:52 -07001245 * For MLX transport we need 2 extra send gather entries:
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -08001246 * one for the header and one for the checksum at the end
1247 */
Roland Dreieraed01222008-07-14 23:48:52 -07001248 if (qp->transport == MLX && cap->max_send_sge + 2 > dev->limits.max_sg)
Roland Dreier80c8ec22005-07-07 17:57:20 -07001249 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Roland Dreier80c8ec22005-07-07 17:57:20 -07001251 if (mthca_is_memfree(dev)) {
1252 qp->rq.max = cap->max_recv_wr ?
1253 roundup_pow_of_two(cap->max_recv_wr) : 0;
1254 qp->sq.max = cap->max_send_wr ?
1255 roundup_pow_of_two(cap->max_send_wr) : 0;
1256 } else {
1257 qp->rq.max = cap->max_recv_wr;
1258 qp->sq.max = cap->max_send_wr;
1259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Roland Dreier80c8ec22005-07-07 17:57:20 -07001261 qp->rq.max_gs = cap->max_recv_sge;
1262 qp->sq.max_gs = max_t(int, cap->max_send_sge,
1263 ALIGN(cap->max_inline_data + MTHCA_INLINE_HEADER_SIZE,
1264 MTHCA_INLINE_CHUNK_SIZE) /
1265 sizeof (struct mthca_data_seg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Roland Dreier80c8ec22005-07-07 17:57:20 -07001267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
1270int mthca_alloc_qp(struct mthca_dev *dev,
1271 struct mthca_pd *pd,
1272 struct mthca_cq *send_cq,
1273 struct mthca_cq *recv_cq,
1274 enum ib_qp_type type,
1275 enum ib_sig_type send_policy,
Roland Dreier80c8ec22005-07-07 17:57:20 -07001276 struct ib_qp_cap *cap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 struct mthca_qp *qp)
1278{
1279 int err;
1280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 switch (type) {
1282 case IB_QPT_RC: qp->transport = RC; break;
1283 case IB_QPT_UC: qp->transport = UC; break;
1284 case IB_QPT_UD: qp->transport = UD; break;
1285 default: return -EINVAL;
1286 }
1287
Jack Morgensteinb3f64962006-03-22 09:52:31 +02001288 err = mthca_set_qp_size(dev, cap, pd, qp);
1289 if (err)
1290 return err;
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 qp->qpn = mthca_alloc(&dev->qp_table.alloc);
1293 if (qp->qpn == -1)
1294 return -ENOMEM;
1295
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -07001296 /* initialize port to zero for error-catching. */
1297 qp->port = 0;
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1300 send_policy, qp);
1301 if (err) {
1302 mthca_free(&dev->qp_table.alloc, qp->qpn);
1303 return err;
1304 }
1305
1306 spin_lock_irq(&dev->qp_table.lock);
1307 mthca_array_set(&dev->qp_table.qp,
1308 qp->qpn & (dev->limits.num_qps - 1), qp);
1309 spin_unlock_irq(&dev->qp_table.lock);
1310
1311 return 0;
1312}
1313
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001314static void mthca_lock_cqs(struct mthca_cq *send_cq, struct mthca_cq *recv_cq)
Roland Dreierffe063f2009-09-05 20:36:15 -07001315 __acquires(&send_cq->lock) __acquires(&recv_cq->lock)
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001316{
Roland Dreierffe063f2009-09-05 20:36:15 -07001317 if (send_cq == recv_cq) {
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001318 spin_lock_irq(&send_cq->lock);
Roland Dreierffe063f2009-09-05 20:36:15 -07001319 __acquire(&recv_cq->lock);
1320 } else if (send_cq->cqn < recv_cq->cqn) {
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001321 spin_lock_irq(&send_cq->lock);
1322 spin_lock_nested(&recv_cq->lock, SINGLE_DEPTH_NESTING);
1323 } else {
1324 spin_lock_irq(&recv_cq->lock);
1325 spin_lock_nested(&send_cq->lock, SINGLE_DEPTH_NESTING);
1326 }
1327}
1328
1329static void mthca_unlock_cqs(struct mthca_cq *send_cq, struct mthca_cq *recv_cq)
Roland Dreierffe063f2009-09-05 20:36:15 -07001330 __releases(&send_cq->lock) __releases(&recv_cq->lock)
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001331{
Roland Dreierffe063f2009-09-05 20:36:15 -07001332 if (send_cq == recv_cq) {
1333 __release(&recv_cq->lock);
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001334 spin_unlock_irq(&send_cq->lock);
Roland Dreierffe063f2009-09-05 20:36:15 -07001335 } else if (send_cq->cqn < recv_cq->cqn) {
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001336 spin_unlock(&recv_cq->lock);
1337 spin_unlock_irq(&send_cq->lock);
1338 } else {
1339 spin_unlock(&send_cq->lock);
1340 spin_unlock_irq(&recv_cq->lock);
1341 }
1342}
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344int mthca_alloc_sqp(struct mthca_dev *dev,
1345 struct mthca_pd *pd,
1346 struct mthca_cq *send_cq,
1347 struct mthca_cq *recv_cq,
1348 enum ib_sig_type send_policy,
Roland Dreier80c8ec22005-07-07 17:57:20 -07001349 struct ib_qp_cap *cap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 int qpn,
1351 int port,
1352 struct mthca_sqp *sqp)
1353{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 u32 mqpn = qpn * 2 + dev->qp_table.sqp_start + port - 1;
Roland Dreier80c8ec22005-07-07 17:57:20 -07001355 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Jack Morgensteinb3f64962006-03-22 09:52:31 +02001357 sqp->qp.transport = MLX;
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -08001358 err = mthca_set_qp_size(dev, cap, pd, &sqp->qp);
Roland Dreier80c8ec22005-07-07 17:57:20 -07001359 if (err)
1360 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
1362 sqp->header_buf_size = sqp->qp.sq.max * MTHCA_UD_HEADER_SIZE;
1363 sqp->header_buf = dma_alloc_coherent(&dev->pdev->dev, sqp->header_buf_size,
1364 &sqp->header_dma, GFP_KERNEL);
1365 if (!sqp->header_buf)
1366 return -ENOMEM;
1367
1368 spin_lock_irq(&dev->qp_table.lock);
1369 if (mthca_array_get(&dev->qp_table.qp, mqpn))
1370 err = -EBUSY;
1371 else
1372 mthca_array_set(&dev->qp_table.qp, mqpn, sqp);
1373 spin_unlock_irq(&dev->qp_table.lock);
1374
1375 if (err)
1376 goto err_out;
1377
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -07001378 sqp->qp.port = port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 sqp->qp.qpn = mqpn;
1380 sqp->qp.transport = MLX;
1381
1382 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1383 send_policy, &sqp->qp);
1384 if (err)
1385 goto err_out_free;
1386
1387 atomic_inc(&pd->sqp_count);
1388
1389 return 0;
1390
1391 err_out_free:
1392 /*
1393 * Lock CQs here, so that CQ polling code can do QP lookup
1394 * without taking a lock.
1395 */
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001396 mthca_lock_cqs(send_cq, recv_cq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 spin_lock(&dev->qp_table.lock);
1399 mthca_array_clear(&dev->qp_table.qp, mqpn);
1400 spin_unlock(&dev->qp_table.lock);
1401
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001402 mthca_unlock_cqs(send_cq, recv_cq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404 err_out:
1405 dma_free_coherent(&dev->pdev->dev, sqp->header_buf_size,
1406 sqp->header_buf, sqp->header_dma);
1407
1408 return err;
1409}
1410
Roland Dreiera3285aa2006-05-09 10:50:29 -07001411static inline int get_qp_refcount(struct mthca_dev *dev, struct mthca_qp *qp)
1412{
1413 int c;
1414
1415 spin_lock_irq(&dev->qp_table.lock);
1416 c = qp->refcount;
1417 spin_unlock_irq(&dev->qp_table.lock);
1418
1419 return c;
1420}
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422void mthca_free_qp(struct mthca_dev *dev,
1423 struct mthca_qp *qp)
1424{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 struct mthca_cq *send_cq;
1426 struct mthca_cq *recv_cq;
1427
1428 send_cq = to_mcq(qp->ibqp.send_cq);
1429 recv_cq = to_mcq(qp->ibqp.recv_cq);
1430
1431 /*
1432 * Lock CQs here, so that CQ polling code can do QP lookup
1433 * without taking a lock.
1434 */
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001435 mthca_lock_cqs(send_cq, recv_cq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437 spin_lock(&dev->qp_table.lock);
1438 mthca_array_clear(&dev->qp_table.qp,
1439 qp->qpn & (dev->limits.num_qps - 1));
Roland Dreiera3285aa2006-05-09 10:50:29 -07001440 --qp->refcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 spin_unlock(&dev->qp_table.lock);
1442
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001443 mthca_unlock_cqs(send_cq, recv_cq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Roland Dreiera3285aa2006-05-09 10:50:29 -07001445 wait_event(qp->wait, !get_qp_refcount(dev, qp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 if (qp->state != IB_QPS_RESET)
Roland Dreierd8441832006-02-13 16:30:18 -08001448 mthca_MODIFY_QP(dev, qp->state, IB_QPS_RESET, qp->qpn, 0,
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +00001449 NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Roland Dreier80c8ec22005-07-07 17:57:20 -07001451 /*
1452 * If this is a userspace QP, the buffers, MR, CQs and so on
1453 * will be cleaned up in userspace, so all we have to do is
1454 * unref the mem-free tables and free the QPN in our table.
1455 */
1456 if (!qp->ibqp.uobject) {
Roland Dreier30c00982007-04-24 16:31:11 -07001457 mthca_cq_clean(dev, recv_cq, qp->qpn,
Roland Dreierec34a922005-08-19 10:59:31 -07001458 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
Roland Dreier30c00982007-04-24 16:31:11 -07001459 if (send_cq != recv_cq)
1460 mthca_cq_clean(dev, send_cq, qp->qpn, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Roland Dreier80c8ec22005-07-07 17:57:20 -07001462 mthca_free_memfree(dev, qp);
1463 mthca_free_wqe_buf(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
1465
Roland Dreier80c8ec22005-07-07 17:57:20 -07001466 mthca_unmap_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468 if (is_sqp(dev, qp)) {
1469 atomic_dec(&(to_mpd(qp->ibqp.pd)->sqp_count));
1470 dma_free_coherent(&dev->pdev->dev,
1471 to_msqp(qp)->header_buf_size,
1472 to_msqp(qp)->header_buf,
1473 to_msqp(qp)->header_dma);
1474 } else
1475 mthca_free(&dev->qp_table.alloc, qp->qpn);
1476}
1477
1478/* Create UD header for an MLX send and build a data segment for it */
1479static int build_mlx_header(struct mthca_dev *dev, struct mthca_sqp *sqp,
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001480 int ind, struct ib_ud_wr *wr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 struct mthca_mlx_seg *mlx,
1482 struct mthca_data_seg *data)
1483{
1484 int header_size;
1485 int err;
Sean Hefty97f52eb2005-08-13 21:05:57 -07001486 u16 pkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Eli Cohenaf7bd462010-08-26 17:18:59 +03001488 ib_ud_header_init(256, /* assume a MAD */ 1, 0, 0,
Moni Shoua25f40222015-12-23 14:56:56 +02001489 mthca_ah_grh_present(to_mah(wr->ah)), 0, 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 &sqp->ud_header);
1491
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001492 err = mthca_read_ah(dev, to_mah(wr->ah), &sqp->ud_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 if (err)
1494 return err;
1495 mlx->flags &= ~cpu_to_be32(MTHCA_NEXT_SOLICIT | 1);
1496 mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MTHCA_MLX_VL15 : 0) |
Sean Hefty97f52eb2005-08-13 21:05:57 -07001497 (sqp->ud_header.lrh.destination_lid ==
1498 IB_LID_PERMISSIVE ? MTHCA_MLX_SLR : 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 (sqp->ud_header.lrh.service_level << 8));
1500 mlx->rlid = sqp->ud_header.lrh.destination_lid;
1501 mlx->vcrc = 0;
1502
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001503 switch (wr->wr.opcode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 case IB_WR_SEND:
1505 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
1506 sqp->ud_header.immediate_present = 0;
1507 break;
1508 case IB_WR_SEND_WITH_IMM:
1509 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
1510 sqp->ud_header.immediate_present = 1;
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001511 sqp->ud_header.immediate_data = wr->wr.ex.imm_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 break;
1513 default:
1514 return -EINVAL;
1515 }
1516
1517 sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0;
Sean Hefty97f52eb2005-08-13 21:05:57 -07001518 if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE)
1519 sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE;
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001520 sqp->ud_header.bth.solicited_event = !!(wr->wr.send_flags & IB_SEND_SOLICITED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (!sqp->qp.ibqp.qp_num)
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -07001522 ib_get_cached_pkey(&dev->ib_dev, sqp->qp.port,
Sean Hefty97f52eb2005-08-13 21:05:57 -07001523 sqp->pkey_index, &pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 else
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -07001525 ib_get_cached_pkey(&dev->ib_dev, sqp->qp.port,
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001526 wr->pkey_index, &pkey);
Sean Hefty97f52eb2005-08-13 21:05:57 -07001527 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001528 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->remote_qpn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001530 sqp->ud_header.deth.qkey = cpu_to_be32(wr->remote_qkey & 0x80000000 ?
1531 sqp->qkey : wr->remote_qkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
1533
1534 header_size = ib_ud_header_pack(&sqp->ud_header,
1535 sqp->header_buf +
1536 ind * MTHCA_UD_HEADER_SIZE);
1537
1538 data->byte_count = cpu_to_be32(header_size);
1539 data->lkey = cpu_to_be32(to_mpd(sqp->qp.ibqp.pd)->ntmr.ibmr.lkey);
1540 data->addr = cpu_to_be64(sqp->header_dma +
1541 ind * MTHCA_UD_HEADER_SIZE);
1542
1543 return 0;
1544}
1545
1546static inline int mthca_wq_overflow(struct mthca_wq *wq, int nreq,
1547 struct ib_cq *ib_cq)
1548{
1549 unsigned cur;
1550 struct mthca_cq *cq;
1551
1552 cur = wq->head - wq->tail;
1553 if (likely(cur + nreq < wq->max))
1554 return 0;
1555
1556 cq = to_mcq(ib_cq);
1557 spin_lock(&cq->lock);
1558 cur = wq->head - wq->tail;
1559 spin_unlock(&cq->lock);
1560
1561 return cur + nreq >= wq->max;
1562}
1563
Roland Dreier400ddc12007-07-18 12:55:42 -07001564static __always_inline void set_raddr_seg(struct mthca_raddr_seg *rseg,
1565 u64 remote_addr, u32 rkey)
1566{
1567 rseg->raddr = cpu_to_be64(remote_addr);
1568 rseg->rkey = cpu_to_be32(rkey);
1569 rseg->reserved = 0;
1570}
1571
1572static __always_inline void set_atomic_seg(struct mthca_atomic_seg *aseg,
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001573 struct ib_atomic_wr *wr)
Roland Dreier400ddc12007-07-18 12:55:42 -07001574{
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001575 if (wr->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
1576 aseg->swap_add = cpu_to_be64(wr->swap);
1577 aseg->compare = cpu_to_be64(wr->compare_add);
Roland Dreier400ddc12007-07-18 12:55:42 -07001578 } else {
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001579 aseg->swap_add = cpu_to_be64(wr->compare_add);
Roland Dreier400ddc12007-07-18 12:55:42 -07001580 aseg->compare = 0;
1581 }
1582
1583}
1584
Roland Dreiere535c692007-07-18 13:21:14 -07001585static void set_tavor_ud_seg(struct mthca_tavor_ud_seg *useg,
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001586 struct ib_ud_wr *wr)
Roland Dreiere535c692007-07-18 13:21:14 -07001587{
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001588 useg->lkey = cpu_to_be32(to_mah(wr->ah)->key);
1589 useg->av_addr = cpu_to_be64(to_mah(wr->ah)->avdma);
1590 useg->dqpn = cpu_to_be32(wr->remote_qpn);
1591 useg->qkey = cpu_to_be32(wr->remote_qkey);
Roland Dreiere535c692007-07-18 13:21:14 -07001592
1593}
1594
1595static void set_arbel_ud_seg(struct mthca_arbel_ud_seg *useg,
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001596 struct ib_ud_wr *wr)
Roland Dreiere535c692007-07-18 13:21:14 -07001597{
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001598 memcpy(useg->av, to_mah(wr->ah)->av, MTHCA_AV_SIZE);
1599 useg->dqpn = cpu_to_be32(wr->remote_qpn);
1600 useg->qkey = cpu_to_be32(wr->remote_qkey);
Roland Dreiere535c692007-07-18 13:21:14 -07001601}
1602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603int mthca_tavor_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
1604 struct ib_send_wr **bad_wr)
1605{
1606 struct mthca_dev *dev = to_mdev(ibqp->device);
1607 struct mthca_qp *qp = to_mqp(ibqp);
1608 void *wqe;
1609 void *prev_wqe;
1610 unsigned long flags;
1611 int err = 0;
1612 int nreq;
1613 int i;
1614 int size;
Roland Dreier6d7d0802007-07-17 19:30:51 -07001615 /*
Roland Dreier43509d12007-07-18 13:28:29 -07001616 * f0 and size0 are only used if nreq != 0, and they will
1617 * always be initialized the first time through the main loop
1618 * before nreq is incremented. So nreq cannot become non-zero
1619 * without initializing f0 and size0, and they are in fact
1620 * never used uninitialized.
Roland Dreier6d7d0802007-07-17 19:30:51 -07001621 */
Roland Dreier43509d12007-07-18 13:28:29 -07001622 int uninitialized_var(size0);
Roland Dreier6d7d0802007-07-17 19:30:51 -07001623 u32 uninitialized_var(f0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 int ind;
1625 u8 op0 = 0;
1626
1627 spin_lock_irqsave(&qp->sq.lock, flags);
1628
1629 /* XXX check that state is OK to post send */
1630
1631 ind = qp->sq.next_ind;
1632
1633 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1634 if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1635 mthca_err(dev, "SQ %06x full (%u head, %u tail,"
1636 " %d max, %d nreq)\n", qp->qpn,
1637 qp->sq.head, qp->sq.tail,
1638 qp->sq.max, nreq);
1639 err = -ENOMEM;
1640 *bad_wr = wr;
1641 goto out;
1642 }
1643
1644 wqe = get_send_wqe(qp, ind);
1645 prev_wqe = qp->sq.last;
1646 qp->sq.last = wqe;
1647
1648 ((struct mthca_next_seg *) wqe)->nda_op = 0;
1649 ((struct mthca_next_seg *) wqe)->ee_nds = 0;
1650 ((struct mthca_next_seg *) wqe)->flags =
1651 ((wr->send_flags & IB_SEND_SIGNALED) ?
1652 cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) |
1653 ((wr->send_flags & IB_SEND_SOLICITED) ?
1654 cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) |
1655 cpu_to_be32(1);
1656 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1657 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
Roland Dreier0f39cf32008-04-16 21:09:32 -07001658 ((struct mthca_next_seg *) wqe)->imm = wr->ex.imm_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 wqe += sizeof (struct mthca_next_seg);
1661 size = sizeof (struct mthca_next_seg) / 16;
1662
1663 switch (qp->transport) {
1664 case RC:
1665 switch (wr->opcode) {
1666 case IB_WR_ATOMIC_CMP_AND_SWP:
1667 case IB_WR_ATOMIC_FETCH_AND_ADD:
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001668 set_raddr_seg(wqe, atomic_wr(wr)->remote_addr,
1669 atomic_wr(wr)->rkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 wqe += sizeof (struct mthca_raddr_seg);
1671
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001672 set_atomic_seg(wqe, atomic_wr(wr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 wqe += sizeof (struct mthca_atomic_seg);
Michael S. Tsirkin62abb842005-11-09 11:30:14 -08001674 size += (sizeof (struct mthca_raddr_seg) +
1675 sizeof (struct mthca_atomic_seg)) / 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 break;
1677
1678 case IB_WR_RDMA_WRITE:
1679 case IB_WR_RDMA_WRITE_WITH_IMM:
1680 case IB_WR_RDMA_READ:
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001681 set_raddr_seg(wqe, rdma_wr(wr)->remote_addr,
1682 rdma_wr(wr)->rkey);
Roland Dreier400ddc12007-07-18 12:55:42 -07001683 wqe += sizeof (struct mthca_raddr_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 size += sizeof (struct mthca_raddr_seg) / 16;
1685 break;
1686
1687 default:
1688 /* No extra segments required for sends */
1689 break;
1690 }
1691
1692 break;
1693
Roland Dreier9e6970b2005-06-27 14:36:42 -07001694 case UC:
1695 switch (wr->opcode) {
1696 case IB_WR_RDMA_WRITE:
1697 case IB_WR_RDMA_WRITE_WITH_IMM:
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001698 set_raddr_seg(wqe, rdma_wr(wr)->remote_addr,
1699 rdma_wr(wr)->rkey);
Roland Dreier400ddc12007-07-18 12:55:42 -07001700 wqe += sizeof (struct mthca_raddr_seg);
Roland Dreier9e6970b2005-06-27 14:36:42 -07001701 size += sizeof (struct mthca_raddr_seg) / 16;
1702 break;
1703
1704 default:
1705 /* No extra segments required for sends */
1706 break;
1707 }
1708
1709 break;
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 case UD:
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001712 set_tavor_ud_seg(wqe, ud_wr(wr));
Roland Dreiere535c692007-07-18 13:21:14 -07001713 wqe += sizeof (struct mthca_tavor_ud_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 size += sizeof (struct mthca_tavor_ud_seg) / 16;
1715 break;
1716
1717 case MLX:
Christoph Hellwige622f2f2015-10-08 09:16:33 +01001718 err = build_mlx_header(dev, to_msqp(qp), ind, ud_wr(wr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 wqe - sizeof (struct mthca_next_seg),
1720 wqe);
1721 if (err) {
1722 *bad_wr = wr;
1723 goto out;
1724 }
1725 wqe += sizeof (struct mthca_data_seg);
1726 size += sizeof (struct mthca_data_seg) / 16;
1727 break;
1728 }
1729
1730 if (wr->num_sge > qp->sq.max_gs) {
1731 mthca_err(dev, "too many gathers\n");
1732 err = -EINVAL;
1733 *bad_wr = wr;
1734 goto out;
1735 }
1736
1737 for (i = 0; i < wr->num_sge; ++i) {
Roland Dreier80885452007-07-18 11:30:34 -07001738 mthca_set_data_seg(wqe, wr->sg_list + i);
1739 wqe += sizeof (struct mthca_data_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 size += sizeof (struct mthca_data_seg) / 16;
1741 }
1742
1743 /* Add one more inline data segment for ICRC */
1744 if (qp->transport == MLX) {
1745 ((struct mthca_data_seg *) wqe)->byte_count =
1746 cpu_to_be32((1 << 31) | 4);
1747 ((u32 *) wqe)[1] = 0;
1748 wqe += sizeof (struct mthca_data_seg);
1749 size += sizeof (struct mthca_data_seg) / 16;
1750 }
1751
1752 qp->wrid[ind + qp->rq.max] = wr->wr_id;
1753
1754 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
1755 mthca_err(dev, "opcode invalid\n");
1756 err = -EINVAL;
1757 *bad_wr = wr;
1758 goto out;
1759 }
1760
Roland Dreierd6cff022005-09-13 10:41:03 -07001761 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1762 cpu_to_be32(((ind << qp->sq.wqe_shift) +
1763 qp->send_wqe_offset) |
1764 mthca_opcode[wr->opcode]);
1765 wmb();
1766 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
Roland Dreier43509d12007-07-18 13:28:29 -07001767 cpu_to_be32((nreq ? 0 : MTHCA_NEXT_DBD) | size |
Dotan Barak7667abd12006-02-27 21:02:00 -08001768 ((wr->send_flags & IB_SEND_FENCE) ?
1769 MTHCA_NEXT_FENCE : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Roland Dreier43509d12007-07-18 13:28:29 -07001771 if (!nreq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 size0 = size;
1773 op0 = mthca_opcode[wr->opcode];
Michael S. Tsirkine54b82d2006-08-10 10:46:56 -07001774 f0 = wr->send_flags & IB_SEND_FENCE ?
1775 MTHCA_SEND_DOORBELL_FENCE : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 }
1777
1778 ++ind;
1779 if (unlikely(ind >= qp->sq.max))
1780 ind -= qp->sq.max;
1781 }
1782
1783out:
1784 if (likely(nreq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 wmb();
1786
Roland Dreierab8403c2007-10-14 20:40:27 -07001787 mthca_write64(((qp->sq.next_ind << qp->sq.wqe_shift) +
1788 qp->send_wqe_offset) | f0 | op0,
1789 (qp->qpn << 8) | size0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 dev->kar + MTHCA_SEND_DOORBELL,
1791 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
Arthur Kepner1f5c23e2006-10-16 20:22:35 -07001792 /*
1793 * Make sure doorbells don't leak out of SQ spinlock
1794 * and reach the HCA out of order:
1795 */
1796 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 }
1798
1799 qp->sq.next_ind = ind;
1800 qp->sq.head += nreq;
1801
1802 spin_unlock_irqrestore(&qp->sq.lock, flags);
1803 return err;
1804}
1805
1806int mthca_tavor_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
1807 struct ib_recv_wr **bad_wr)
1808{
1809 struct mthca_dev *dev = to_mdev(ibqp->device);
1810 struct mthca_qp *qp = to_mqp(ibqp);
1811 unsigned long flags;
1812 int err = 0;
1813 int nreq;
1814 int i;
1815 int size;
Roland Dreier43509d12007-07-18 13:28:29 -07001816 /*
1817 * size0 is only used if nreq != 0, and it will always be
1818 * initialized the first time through the main loop before
1819 * nreq is incremented. So nreq cannot become non-zero
1820 * without initializing size0, and it is in fact never used
1821 * uninitialized.
1822 */
1823 int uninitialized_var(size0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 int ind;
1825 void *wqe;
1826 void *prev_wqe;
1827
1828 spin_lock_irqsave(&qp->rq.lock, flags);
1829
1830 /* XXX check that state is OK to post receive */
1831
1832 ind = qp->rq.next_ind;
1833
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001834 for (nreq = 0; wr; wr = wr->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
1836 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
1837 " %d max, %d nreq)\n", qp->qpn,
1838 qp->rq.head, qp->rq.tail,
1839 qp->rq.max, nreq);
1840 err = -ENOMEM;
1841 *bad_wr = wr;
1842 goto out;
1843 }
1844
1845 wqe = get_recv_wqe(qp, ind);
1846 prev_wqe = qp->rq.last;
1847 qp->rq.last = wqe;
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 ((struct mthca_next_seg *) wqe)->ee_nds =
1850 cpu_to_be32(MTHCA_NEXT_DBD);
1851 ((struct mthca_next_seg *) wqe)->flags = 0;
1852
1853 wqe += sizeof (struct mthca_next_seg);
1854 size = sizeof (struct mthca_next_seg) / 16;
1855
1856 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
1857 err = -EINVAL;
1858 *bad_wr = wr;
1859 goto out;
1860 }
1861
1862 for (i = 0; i < wr->num_sge; ++i) {
Roland Dreier80885452007-07-18 11:30:34 -07001863 mthca_set_data_seg(wqe, wr->sg_list + i);
1864 wqe += sizeof (struct mthca_data_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 size += sizeof (struct mthca_data_seg) / 16;
1866 }
1867
1868 qp->wrid[ind] = wr->wr_id;
1869
Roland Dreierd6cff022005-09-13 10:41:03 -07001870 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1871 cpu_to_be32(MTHCA_NEXT_DBD | size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Roland Dreier43509d12007-07-18 13:28:29 -07001873 if (!nreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 size0 = size;
1875
1876 ++ind;
1877 if (unlikely(ind >= qp->rq.max))
1878 ind -= qp->rq.max;
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001879
1880 ++nreq;
1881 if (unlikely(nreq == MTHCA_TAVOR_MAX_WQES_PER_RECV_DB)) {
1882 nreq = 0;
1883
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001884 wmb();
1885
Roland Dreierab8403c2007-10-14 20:40:27 -07001886 mthca_write64((qp->rq.next_ind << qp->rq.wqe_shift) | size0,
1887 qp->qpn << 8, dev->kar + MTHCA_RECEIVE_DOORBELL,
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001888 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1889
Michael S. Tsirkin3e28c562007-05-14 07:26:51 +03001890 qp->rq.next_ind = ind;
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001891 qp->rq.head += MTHCA_TAVOR_MAX_WQES_PER_RECV_DB;
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 }
1894
1895out:
1896 if (likely(nreq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 wmb();
1898
Roland Dreierab8403c2007-10-14 20:40:27 -07001899 mthca_write64((qp->rq.next_ind << qp->rq.wqe_shift) | size0,
1900 qp->qpn << 8 | nreq, dev->kar + MTHCA_RECEIVE_DOORBELL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1902 }
1903
1904 qp->rq.next_ind = ind;
1905 qp->rq.head += nreq;
1906
Arthur Kepner1f5c23e2006-10-16 20:22:35 -07001907 /*
1908 * Make sure doorbells don't leak out of RQ spinlock and reach
1909 * the HCA out of order:
1910 */
1911 mmiowb();
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 spin_unlock_irqrestore(&qp->rq.lock, flags);
1914 return err;
1915}
1916
1917int mthca_arbel_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
1918 struct ib_send_wr **bad_wr)
1919{
1920 struct mthca_dev *dev = to_mdev(ibqp->device);
1921 struct mthca_qp *qp = to_mqp(ibqp);
Roland Dreierab8403c2007-10-14 20:40:27 -07001922 u32 dbhi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 void *wqe;
1924 void *prev_wqe;
1925 unsigned long flags;
1926 int err = 0;
1927 int nreq;
1928 int i;
1929 int size;
Roland Dreier6d7d0802007-07-17 19:30:51 -07001930 /*
Roland Dreier43509d12007-07-18 13:28:29 -07001931 * f0 and size0 are only used if nreq != 0, and they will
1932 * always be initialized the first time through the main loop
1933 * before nreq is incremented. So nreq cannot become non-zero
1934 * without initializing f0 and size0, and they are in fact
1935 * never used uninitialized.
Roland Dreier6d7d0802007-07-17 19:30:51 -07001936 */
Roland Dreier43509d12007-07-18 13:28:29 -07001937 int uninitialized_var(size0);
Roland Dreier6d7d0802007-07-17 19:30:51 -07001938 u32 uninitialized_var(f0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 int ind;
1940 u8 op0 = 0;
1941
1942 spin_lock_irqsave(&qp->sq.lock, flags);
1943
1944 /* XXX check that state is OK to post send */
1945
1946 ind = qp->sq.head & (qp->sq.max - 1);
1947
1948 for (nreq = 0; wr; ++nreq, wr = wr->next) {
Michael S. Tsirkine0ae9ec2005-11-29 11:33:46 -08001949 if (unlikely(nreq == MTHCA_ARBEL_MAX_WQES_PER_SEND_DB)) {
1950 nreq = 0;
1951
Roland Dreierab8403c2007-10-14 20:40:27 -07001952 dbhi = (MTHCA_ARBEL_MAX_WQES_PER_SEND_DB << 24) |
1953 ((qp->sq.head & 0xffff) << 8) | f0 | op0;
Michael S. Tsirkine0ae9ec2005-11-29 11:33:46 -08001954
1955 qp->sq.head += MTHCA_ARBEL_MAX_WQES_PER_SEND_DB;
Michael S. Tsirkine0ae9ec2005-11-29 11:33:46 -08001956
1957 /*
1958 * Make sure that descriptors are written before
1959 * doorbell record.
1960 */
1961 wmb();
1962 *qp->sq.db = cpu_to_be32(qp->sq.head & 0xffff);
1963
1964 /*
1965 * Make sure doorbell record is written before we
1966 * write MMIO send doorbell.
1967 */
1968 wmb();
Roland Dreierab8403c2007-10-14 20:40:27 -07001969
1970 mthca_write64(dbhi, (qp->qpn << 8) | size0,
Michael S. Tsirkine0ae9ec2005-11-29 11:33:46 -08001971 dev->kar + MTHCA_SEND_DOORBELL,
1972 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1973 }
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1976 mthca_err(dev, "SQ %06x full (%u head, %u tail,"
1977 " %d max, %d nreq)\n", qp->qpn,
1978 qp->sq.head, qp->sq.tail,
1979 qp->sq.max, nreq);
1980 err = -ENOMEM;
1981 *bad_wr = wr;
1982 goto out;
1983 }
1984
1985 wqe = get_send_wqe(qp, ind);
1986 prev_wqe = qp->sq.last;
1987 qp->sq.last = wqe;
1988
1989 ((struct mthca_next_seg *) wqe)->flags =
1990 ((wr->send_flags & IB_SEND_SIGNALED) ?
1991 cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) |
1992 ((wr->send_flags & IB_SEND_SOLICITED) ?
1993 cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) |
Eli Cohen680b5752008-04-16 21:01:11 -07001994 ((wr->send_flags & IB_SEND_IP_CSUM) ?
1995 cpu_to_be32(MTHCA_NEXT_IP_CSUM | MTHCA_NEXT_TCP_UDP_CSUM) : 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 cpu_to_be32(1);
1997 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1998 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
Roland Dreier0f39cf32008-04-16 21:09:32 -07001999 ((struct mthca_next_seg *) wqe)->imm = wr->ex.imm_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001 wqe += sizeof (struct mthca_next_seg);
2002 size = sizeof (struct mthca_next_seg) / 16;
2003
2004 switch (qp->transport) {
Roland Dreierddb934e2005-04-16 15:26:23 -07002005 case RC:
2006 switch (wr->opcode) {
2007 case IB_WR_ATOMIC_CMP_AND_SWP:
2008 case IB_WR_ATOMIC_FETCH_AND_ADD:
Christoph Hellwige622f2f2015-10-08 09:16:33 +01002009 set_raddr_seg(wqe, atomic_wr(wr)->remote_addr,
2010 atomic_wr(wr)->rkey);
Roland Dreierddb934e2005-04-16 15:26:23 -07002011 wqe += sizeof (struct mthca_raddr_seg);
2012
Christoph Hellwige622f2f2015-10-08 09:16:33 +01002013 set_atomic_seg(wqe, atomic_wr(wr));
Roland Dreier400ddc12007-07-18 12:55:42 -07002014 wqe += sizeof (struct mthca_atomic_seg);
Michael S. Tsirkin62abb842005-11-09 11:30:14 -08002015 size += (sizeof (struct mthca_raddr_seg) +
2016 sizeof (struct mthca_atomic_seg)) / 16;
Roland Dreierddb934e2005-04-16 15:26:23 -07002017 break;
2018
Roland Dreier9e6970b2005-06-27 14:36:42 -07002019 case IB_WR_RDMA_READ:
Roland Dreierddb934e2005-04-16 15:26:23 -07002020 case IB_WR_RDMA_WRITE:
2021 case IB_WR_RDMA_WRITE_WITH_IMM:
Christoph Hellwige622f2f2015-10-08 09:16:33 +01002022 set_raddr_seg(wqe, rdma_wr(wr)->remote_addr,
2023 rdma_wr(wr)->rkey);
Roland Dreier400ddc12007-07-18 12:55:42 -07002024 wqe += sizeof (struct mthca_raddr_seg);
Roland Dreier9e6970b2005-06-27 14:36:42 -07002025 size += sizeof (struct mthca_raddr_seg) / 16;
2026 break;
2027
2028 default:
2029 /* No extra segments required for sends */
2030 break;
2031 }
2032
2033 break;
2034
2035 case UC:
2036 switch (wr->opcode) {
2037 case IB_WR_RDMA_WRITE:
2038 case IB_WR_RDMA_WRITE_WITH_IMM:
Christoph Hellwige622f2f2015-10-08 09:16:33 +01002039 set_raddr_seg(wqe, rdma_wr(wr)->remote_addr,
2040 rdma_wr(wr)->rkey);
Roland Dreier400ddc12007-07-18 12:55:42 -07002041 wqe += sizeof (struct mthca_raddr_seg);
Roland Dreierddb934e2005-04-16 15:26:23 -07002042 size += sizeof (struct mthca_raddr_seg) / 16;
2043 break;
2044
2045 default:
2046 /* No extra segments required for sends */
2047 break;
2048 }
2049
2050 break;
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 case UD:
Christoph Hellwige622f2f2015-10-08 09:16:33 +01002053 set_arbel_ud_seg(wqe, ud_wr(wr));
Roland Dreiere535c692007-07-18 13:21:14 -07002054 wqe += sizeof (struct mthca_arbel_ud_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 size += sizeof (struct mthca_arbel_ud_seg) / 16;
2056 break;
2057
2058 case MLX:
Christoph Hellwige622f2f2015-10-08 09:16:33 +01002059 err = build_mlx_header(dev, to_msqp(qp), ind, ud_wr(wr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 wqe - sizeof (struct mthca_next_seg),
2061 wqe);
2062 if (err) {
2063 *bad_wr = wr;
2064 goto out;
2065 }
2066 wqe += sizeof (struct mthca_data_seg);
2067 size += sizeof (struct mthca_data_seg) / 16;
2068 break;
2069 }
2070
2071 if (wr->num_sge > qp->sq.max_gs) {
2072 mthca_err(dev, "too many gathers\n");
2073 err = -EINVAL;
2074 *bad_wr = wr;
2075 goto out;
2076 }
2077
2078 for (i = 0; i < wr->num_sge; ++i) {
Roland Dreier80885452007-07-18 11:30:34 -07002079 mthca_set_data_seg(wqe, wr->sg_list + i);
2080 wqe += sizeof (struct mthca_data_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 size += sizeof (struct mthca_data_seg) / 16;
2082 }
2083
2084 /* Add one more inline data segment for ICRC */
2085 if (qp->transport == MLX) {
2086 ((struct mthca_data_seg *) wqe)->byte_count =
2087 cpu_to_be32((1 << 31) | 4);
2088 ((u32 *) wqe)[1] = 0;
2089 wqe += sizeof (struct mthca_data_seg);
2090 size += sizeof (struct mthca_data_seg) / 16;
2091 }
2092
2093 qp->wrid[ind + qp->rq.max] = wr->wr_id;
2094
2095 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
2096 mthca_err(dev, "opcode invalid\n");
2097 err = -EINVAL;
2098 *bad_wr = wr;
2099 goto out;
2100 }
2101
Roland Dreierd6cff022005-09-13 10:41:03 -07002102 ((struct mthca_next_seg *) prev_wqe)->nda_op =
2103 cpu_to_be32(((ind << qp->sq.wqe_shift) +
2104 qp->send_wqe_offset) |
2105 mthca_opcode[wr->opcode]);
2106 wmb();
2107 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
Dotan Barak7667abd12006-02-27 21:02:00 -08002108 cpu_to_be32(MTHCA_NEXT_DBD | size |
Roland Dreierb0b3a8e2006-03-24 15:47:29 -08002109 ((wr->send_flags & IB_SEND_FENCE) ?
2110 MTHCA_NEXT_FENCE : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Roland Dreier43509d12007-07-18 13:28:29 -07002112 if (!nreq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 size0 = size;
2114 op0 = mthca_opcode[wr->opcode];
Michael S. Tsirkine54b82d2006-08-10 10:46:56 -07002115 f0 = wr->send_flags & IB_SEND_FENCE ?
2116 MTHCA_SEND_DOORBELL_FENCE : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 }
2118
2119 ++ind;
2120 if (unlikely(ind >= qp->sq.max))
2121 ind -= qp->sq.max;
2122 }
2123
2124out:
2125 if (likely(nreq)) {
Roland Dreierab8403c2007-10-14 20:40:27 -07002126 dbhi = (nreq << 24) | ((qp->sq.head & 0xffff) << 8) | f0 | op0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128 qp->sq.head += nreq;
2129
2130 /*
2131 * Make sure that descriptors are written before
2132 * doorbell record.
2133 */
2134 wmb();
2135 *qp->sq.db = cpu_to_be32(qp->sq.head & 0xffff);
2136
2137 /*
2138 * Make sure doorbell record is written before we
2139 * write MMIO send doorbell.
2140 */
2141 wmb();
Roland Dreierab8403c2007-10-14 20:40:27 -07002142
2143 mthca_write64(dbhi, (qp->qpn << 8) | size0, dev->kar + MTHCA_SEND_DOORBELL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
2145 }
2146
Arthur Kepner1f5c23e2006-10-16 20:22:35 -07002147 /*
2148 * Make sure doorbells don't leak out of SQ spinlock and reach
2149 * the HCA out of order:
2150 */
2151 mmiowb();
2152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 spin_unlock_irqrestore(&qp->sq.lock, flags);
2154 return err;
2155}
2156
2157int mthca_arbel_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
2158 struct ib_recv_wr **bad_wr)
2159{
2160 struct mthca_dev *dev = to_mdev(ibqp->device);
2161 struct mthca_qp *qp = to_mqp(ibqp);
2162 unsigned long flags;
2163 int err = 0;
2164 int nreq;
2165 int ind;
2166 int i;
2167 void *wqe;
2168
Roland Dreier2fa5e2e2006-02-01 13:38:24 -08002169 spin_lock_irqsave(&qp->rq.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171 /* XXX check that state is OK to post receive */
2172
2173 ind = qp->rq.head & (qp->rq.max - 1);
2174
2175 for (nreq = 0; wr; ++nreq, wr = wr->next) {
2176 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
2177 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
2178 " %d max, %d nreq)\n", qp->qpn,
2179 qp->rq.head, qp->rq.tail,
2180 qp->rq.max, nreq);
2181 err = -ENOMEM;
2182 *bad_wr = wr;
2183 goto out;
2184 }
2185
2186 wqe = get_recv_wqe(qp, ind);
2187
2188 ((struct mthca_next_seg *) wqe)->flags = 0;
2189
2190 wqe += sizeof (struct mthca_next_seg);
2191
2192 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
2193 err = -EINVAL;
2194 *bad_wr = wr;
2195 goto out;
2196 }
2197
2198 for (i = 0; i < wr->num_sge; ++i) {
Roland Dreier80885452007-07-18 11:30:34 -07002199 mthca_set_data_seg(wqe, wr->sg_list + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 wqe += sizeof (struct mthca_data_seg);
2201 }
2202
Roland Dreier80885452007-07-18 11:30:34 -07002203 if (i < qp->rq.max_gs)
2204 mthca_set_data_seg_inval(wqe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 qp->wrid[ind] = wr->wr_id;
2207
2208 ++ind;
2209 if (unlikely(ind >= qp->rq.max))
2210 ind -= qp->rq.max;
2211 }
2212out:
2213 if (likely(nreq)) {
2214 qp->rq.head += nreq;
2215
2216 /*
2217 * Make sure that descriptors are written before
2218 * doorbell record.
2219 */
2220 wmb();
2221 *qp->rq.db = cpu_to_be32(qp->rq.head & 0xffff);
2222 }
2223
2224 spin_unlock_irqrestore(&qp->rq.lock, flags);
2225 return err;
2226}
2227
Roland Dreierd9b98b02006-01-31 20:45:51 -08002228void mthca_free_err_wqe(struct mthca_dev *dev, struct mthca_qp *qp, int is_send,
2229 int index, int *dbd, __be32 *new_wqe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
2231 struct mthca_next_seg *next;
2232
Roland Dreierec34a922005-08-19 10:59:31 -07002233 /*
Michael S. Tsirkin8b7e15772007-05-27 18:06:42 +03002234 * For SRQs, all receive WQEs generate a CQE, so we're always
2235 * at the end of the doorbell chain.
Roland Dreierec34a922005-08-19 10:59:31 -07002236 */
Michael S. Tsirkin8b7e15772007-05-27 18:06:42 +03002237 if (qp->ibqp.srq && !is_send) {
Roland Dreierec34a922005-08-19 10:59:31 -07002238 *new_wqe = 0;
Roland Dreierd9b98b02006-01-31 20:45:51 -08002239 return;
Roland Dreierec34a922005-08-19 10:59:31 -07002240 }
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 if (is_send)
2243 next = get_send_wqe(qp, index);
2244 else
2245 next = get_recv_wqe(qp, index);
2246
Roland Dreier288bdeb2005-08-19 09:19:05 -07002247 *dbd = !!(next->ee_nds & cpu_to_be32(MTHCA_NEXT_DBD));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 if (next->ee_nds & cpu_to_be32(0x3f))
2249 *new_wqe = (next->nda_op & cpu_to_be32(~0x3f)) |
2250 (next->ee_nds & cpu_to_be32(0x3f));
2251 else
2252 *new_wqe = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253}
2254
Roland Dreierf4f3d0f2006-11-29 15:33:06 -08002255int mthca_init_qp_table(struct mthca_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
2257 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 int i;
2259
2260 spin_lock_init(&dev->qp_table.lock);
2261
2262 /*
2263 * We reserve 2 extra QPs per port for the special QPs. The
2264 * special QP for port 1 has to be even, so round up.
2265 */
2266 dev->qp_table.sqp_start = (dev->limits.reserved_qps + 1) & ~1UL;
2267 err = mthca_alloc_init(&dev->qp_table.alloc,
2268 dev->limits.num_qps,
2269 (1 << 24) - 1,
2270 dev->qp_table.sqp_start +
2271 MTHCA_MAX_PORTS * 2);
2272 if (err)
2273 return err;
2274
2275 err = mthca_array_init(&dev->qp_table.qp,
2276 dev->limits.num_qps);
2277 if (err) {
2278 mthca_alloc_cleanup(&dev->qp_table.alloc);
2279 return err;
2280 }
2281
2282 for (i = 0; i < 2; ++i) {
2283 err = mthca_CONF_SPECIAL_QP(dev, i ? IB_QPT_GSI : IB_QPT_SMI,
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +00002284 dev->qp_table.sqp_start + i * 2);
2285 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 mthca_warn(dev, "CONF_SPECIAL_QP returned "
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +00002287 "%d, aborting.\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 goto err_out;
2289 }
2290 }
2291 return 0;
2292
2293 err_out:
2294 for (i = 0; i < 2; ++i)
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +00002295 mthca_CONF_SPECIAL_QP(dev, i, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
2297 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps);
2298 mthca_alloc_cleanup(&dev->qp_table.alloc);
2299
2300 return err;
2301}
2302
Roland Dreiere1f78682006-03-29 09:36:46 -08002303void mthca_cleanup_qp_table(struct mthca_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
2305 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 for (i = 0; i < 2; ++i)
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +00002308 mthca_CONF_SPECIAL_QP(dev, i, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Michael S. Tsirkin71eea472005-09-20 10:54:48 -07002310 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 mthca_alloc_cleanup(&dev->qp_table.alloc);
2312}