blob: c3074a1d34ed01c70adb487af0950a9183d9b8a7 [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
396static void to_ib_ah_attr(struct mthca_dev *dev, struct ib_ah_attr *ib_ah_attr,
397 struct mthca_qp_path *path)
398{
Roland Dreier99d4f222007-02-10 08:00:47 -0800399 memset(ib_ah_attr, 0, sizeof *ib_ah_attr);
Eli Cohen8ebe5072006-02-13 16:40:21 -0800400 ib_ah_attr->port_num = (be32_to_cpu(path->port_pkey) >> 24) & 0x3;
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700401
402 if (ib_ah_attr->port_num == 0 || ib_ah_attr->port_num > dev->limits.num_ports)
403 return;
404
Eli Cohen8ebe5072006-02-13 16:40:21 -0800405 ib_ah_attr->dlid = be16_to_cpu(path->rlid);
406 ib_ah_attr->sl = be32_to_cpu(path->sl_tclass_flowlabel) >> 28;
407 ib_ah_attr->src_path_bits = path->g_mylmc & 0x7f;
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700408 ib_ah_attr->static_rate = mthca_rate_to_ib(dev,
Jack Morgenstein9e583b82006-08-28 19:12:39 +0300409 path->static_rate & 0xf,
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700410 ib_ah_attr->port_num);
Eli Cohen8ebe5072006-02-13 16:40:21 -0800411 ib_ah_attr->ah_flags = (path->g_mylmc & (1 << 7)) ? IB_AH_GRH : 0;
412 if (ib_ah_attr->ah_flags) {
413 ib_ah_attr->grh.sgid_index = path->mgid_index & (dev->limits.gid_table_len - 1);
414 ib_ah_attr->grh.hop_limit = path->hop_limit;
415 ib_ah_attr->grh.traffic_class =
416 (be32_to_cpu(path->sl_tclass_flowlabel) >> 20) & 0xff;
417 ib_ah_attr->grh.flow_label =
418 be32_to_cpu(path->sl_tclass_flowlabel) & 0xfffff;
419 memcpy(ib_ah_attr->grh.dgid.raw,
420 path->rgid, sizeof ib_ah_attr->grh.dgid.raw);
421 }
422}
423
424int mthca_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask,
425 struct ib_qp_init_attr *qp_init_attr)
426{
427 struct mthca_dev *dev = to_mdev(ibqp->device);
428 struct mthca_qp *qp = to_mqp(ibqp);
Dotan Barakf5e10522006-12-27 15:46:06 +0200429 int err = 0;
430 struct mthca_mailbox *mailbox = NULL;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800431 struct mthca_qp_param *qp_param;
432 struct mthca_qp_context *context;
433 int mthca_state;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800434
Dotan Barak5121df32008-04-16 21:09:34 -0700435 mutex_lock(&qp->mutex);
436
Dotan Barakf5e10522006-12-27 15:46:06 +0200437 if (qp->state == IB_QPS_RESET) {
438 qp_attr->qp_state = IB_QPS_RESET;
439 goto done;
440 }
441
Eli Cohen8ebe5072006-02-13 16:40:21 -0800442 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
Dotan Barak5121df32008-04-16 21:09:34 -0700443 if (IS_ERR(mailbox)) {
444 err = PTR_ERR(mailbox);
445 goto out;
446 }
Eli Cohen8ebe5072006-02-13 16:40:21 -0800447
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000448 err = mthca_QUERY_QP(dev, qp->qpn, 0, mailbox);
449 if (err) {
450 mthca_warn(dev, "QUERY_QP failed (%d)\n", err);
Dotan Barak5121df32008-04-16 21:09:34 -0700451 goto out_mailbox;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800452 }
453
454 qp_param = mailbox->buf;
455 context = &qp_param->context;
456 mthca_state = be32_to_cpu(context->flags) >> 28;
457
Dotan Barak5121df32008-04-16 21:09:34 -0700458 qp->state = to_ib_qp_state(mthca_state);
459 qp_attr->qp_state = qp->state;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800460 qp_attr->path_mtu = context->mtu_msgmax >> 5;
461 qp_attr->path_mig_state =
462 to_ib_mig_state((be32_to_cpu(context->flags) >> 11) & 0x3);
463 qp_attr->qkey = be32_to_cpu(context->qkey);
464 qp_attr->rq_psn = be32_to_cpu(context->rnr_nextrecvpsn) & 0xffffff;
465 qp_attr->sq_psn = be32_to_cpu(context->next_send_psn) & 0xffffff;
466 qp_attr->dest_qp_num = be32_to_cpu(context->remote_qpn) & 0xffffff;
467 qp_attr->qp_access_flags =
468 to_ib_qp_access_flags(be32_to_cpu(context->params2));
Eli Cohen8ebe5072006-02-13 16:40:21 -0800469
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700470 if (qp->transport == RC || qp->transport == UC) {
471 to_ib_ah_attr(dev, &qp_attr->ah_attr, &context->pri_path);
472 to_ib_ah_attr(dev, &qp_attr->alt_ah_attr, &context->alt_path);
Jack Morgensteinf6f76722006-08-28 19:10:34 +0300473 qp_attr->alt_pkey_index =
474 be32_to_cpu(context->alt_path.port_pkey) & 0x7f;
475 qp_attr->alt_port_num = qp_attr->alt_ah_attr.port_num;
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700476 }
Eli Cohen8ebe5072006-02-13 16:40:21 -0800477
Jack Morgensteinf6f76722006-08-28 19:10:34 +0300478 qp_attr->pkey_index = be32_to_cpu(context->pri_path.port_pkey) & 0x7f;
479 qp_attr->port_num =
480 (be32_to_cpu(context->pri_path.port_pkey) >> 24) & 0x3;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800481
482 /* qp_attr->en_sqd_async_notify is only applicable in modify qp */
483 qp_attr->sq_draining = mthca_state == MTHCA_QP_STATE_DRAINING;
484
485 qp_attr->max_rd_atomic = 1 << ((be32_to_cpu(context->params1) >> 21) & 0x7);
486
487 qp_attr->max_dest_rd_atomic =
488 1 << ((be32_to_cpu(context->params2) >> 21) & 0x7);
489 qp_attr->min_rnr_timer =
490 (be32_to_cpu(context->rnr_nextrecvpsn) >> 24) & 0x1f;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800491 qp_attr->timeout = context->pri_path.ackto >> 3;
492 qp_attr->retry_cnt = (be32_to_cpu(context->params1) >> 16) & 0x7;
493 qp_attr->rnr_retry = context->pri_path.rnr_retry >> 5;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800494 qp_attr->alt_timeout = context->alt_path.ackto >> 3;
Dotan Barakf5e10522006-12-27 15:46:06 +0200495
496done:
497 qp_attr->cur_qp_state = qp_attr->qp_state;
498 qp_attr->cap.max_send_wr = qp->sq.max;
499 qp_attr->cap.max_recv_wr = qp->rq.max;
500 qp_attr->cap.max_send_sge = qp->sq.max_gs;
501 qp_attr->cap.max_recv_sge = qp->rq.max_gs;
502 qp_attr->cap.max_inline_data = qp->max_inline_data;
503
504 qp_init_attr->cap = qp_attr->cap;
Eli Cohen8ebe5072006-02-13 16:40:21 -0800505
Dotan Barak5121df32008-04-16 21:09:34 -0700506out_mailbox:
Eli Cohen8ebe5072006-02-13 16:40:21 -0800507 mthca_free_mailbox(dev, mailbox);
Dotan Barak5121df32008-04-16 21:09:34 -0700508
509out:
510 mutex_unlock(&qp->mutex);
Eli Cohen8ebe5072006-02-13 16:40:21 -0800511 return err;
512}
513
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300514static int mthca_path_set(struct mthca_dev *dev, const struct ib_ah_attr *ah,
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700515 struct mthca_qp_path *path, u8 port)
Dotan Barak4de144b2006-01-06 13:23:58 -0800516{
517 path->g_mylmc = ah->src_path_bits & 0x7f;
518 path->rlid = cpu_to_be16(ah->dlid);
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700519 path->static_rate = mthca_get_rate(dev, ah->static_rate, port);
Dotan Barak4de144b2006-01-06 13:23:58 -0800520
521 if (ah->ah_flags & IB_AH_GRH) {
Dotan Barak0ef61db2006-03-19 17:20:36 +0200522 if (ah->grh.sgid_index >= dev->limits.gid_table_len) {
523 mthca_dbg(dev, "sgid_index (%u) too large. max is %d\n",
524 ah->grh.sgid_index, dev->limits.gid_table_len-1);
525 return -1;
526 }
527
Dotan Barak4de144b2006-01-06 13:23:58 -0800528 path->g_mylmc |= 1 << 7;
529 path->mgid_index = ah->grh.sgid_index;
530 path->hop_limit = ah->grh.hop_limit;
Roland Dreier2fa5e2e2006-02-01 13:38:24 -0800531 path->sl_tclass_flowlabel =
Dotan Barak4de144b2006-01-06 13:23:58 -0800532 cpu_to_be32((ah->sl << 28) |
Roland Dreier2fa5e2e2006-02-01 13:38:24 -0800533 (ah->grh.traffic_class << 20) |
Dotan Barak4de144b2006-01-06 13:23:58 -0800534 (ah->grh.flow_label));
535 memcpy(path->rgid, ah->grh.dgid.raw, 16);
536 } else
537 path->sl_tclass_flowlabel = cpu_to_be32(ah->sl << 28);
Dotan Barak0ef61db2006-03-19 17:20:36 +0200538
539 return 0;
Dotan Barak4de144b2006-01-06 13:23:58 -0800540}
541
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300542static int __mthca_modify_qp(struct ib_qp *ibqp,
543 const struct ib_qp_attr *attr, int attr_mask,
544 enum ib_qp_state cur_state, enum ib_qp_state new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 struct mthca_dev *dev = to_mdev(ibqp->device);
547 struct mthca_qp *qp = to_mqp(ibqp);
Roland Dreiered878452005-06-27 14:36:45 -0700548 struct mthca_mailbox *mailbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 struct mthca_qp_param *qp_param;
550 struct mthca_qp_context *qp_context;
Roland Dreier3fa1fa32006-02-03 14:53:28 -0800551 u32 sqd_event = 0;
Roland Dreierc9c5d9f2006-06-17 20:37:41 -0700552 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Roland Dreiered878452005-06-27 14:36:45 -0700554 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700555 if (IS_ERR(mailbox)) {
556 err = PTR_ERR(mailbox);
557 goto out;
558 }
Roland Dreiered878452005-06-27 14:36:45 -0700559 qp_param = mailbox->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 qp_context = &qp_param->context;
561 memset(qp_param, 0, sizeof *qp_param);
562
563 qp_context->flags = cpu_to_be32((to_mthca_state(new_state) << 28) |
564 (to_mthca_st(qp->transport) << 16));
565 qp_context->flags |= cpu_to_be32(MTHCA_QP_BIT_DE);
566 if (!(attr_mask & IB_QP_PATH_MIG_STATE))
567 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
568 else {
569 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PM_STATE);
570 switch (attr->path_mig_state) {
571 case IB_MIG_MIGRATED:
572 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
573 break;
574 case IB_MIG_REARM:
575 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_REARM << 11);
576 break;
577 case IB_MIG_ARMED:
578 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_ARMED << 11);
579 break;
580 }
581 }
582
583 /* leave tavor_sched_queue as 0 */
584
585 if (qp->transport == MLX || qp->transport == UD)
586 qp_context->mtu_msgmax = (IB_MTU_2048 << 5) | 11;
Dotan Barak0ef61db2006-03-19 17:20:36 +0200587 else if (attr_mask & IB_QP_PATH_MTU) {
588 if (attr->path_mtu < IB_MTU_256 || attr->path_mtu > IB_MTU_2048) {
589 mthca_dbg(dev, "path MTU (%u) is invalid\n",
590 attr->path_mtu);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700591 goto out_mailbox;
Dotan Barak0ef61db2006-03-19 17:20:36 +0200592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 qp_context->mtu_msgmax = (attr->path_mtu << 5) | 31;
Dotan Barak0ef61db2006-03-19 17:20:36 +0200594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700596 if (mthca_is_memfree(dev)) {
Roland Dreierec34a922005-08-19 10:59:31 -0700597 if (qp->rq.max)
David Howellsf0d1b0b2006-12-08 02:37:49 -0800598 qp_context->rq_size_stride = ilog2(qp->rq.max) << 3;
Roland Dreierec34a922005-08-19 10:59:31 -0700599 qp_context->rq_size_stride |= qp->rq.wqe_shift - 4;
600
601 if (qp->sq.max)
David Howellsf0d1b0b2006-12-08 02:37:49 -0800602 qp_context->sq_size_stride = ilog2(qp->sq.max) << 3;
Roland Dreierec34a922005-08-19 10:59:31 -0700603 qp_context->sq_size_stride |= qp->sq.wqe_shift - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605
606 /* leave arbel_sched_queue as 0 */
607
Roland Dreier80c8ec22005-07-07 17:57:20 -0700608 if (qp->ibqp.uobject)
609 qp_context->usr_page =
610 cpu_to_be32(to_mucontext(qp->ibqp.uobject->context)->uar.index);
611 else
612 qp_context->usr_page = cpu_to_be32(dev->driver_uar.index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 qp_context->local_qpn = cpu_to_be32(qp->qpn);
614 if (attr_mask & IB_QP_DEST_QPN) {
615 qp_context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
616 }
617
618 if (qp->transport == MLX)
619 qp_context->pri_path.port_pkey |=
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700620 cpu_to_be32(qp->port << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 else {
622 if (attr_mask & IB_QP_PORT) {
623 qp_context->pri_path.port_pkey |=
624 cpu_to_be32(attr->port_num << 24);
625 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PORT_NUM);
626 }
627 }
628
629 if (attr_mask & IB_QP_PKEY_INDEX) {
630 qp_context->pri_path.port_pkey |=
631 cpu_to_be32(attr->pkey_index);
632 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PKEY_INDEX);
633 }
634
635 if (attr_mask & IB_QP_RNR_RETRY) {
Dotan Barak4de144b2006-01-06 13:23:58 -0800636 qp_context->alt_path.rnr_retry = qp_context->pri_path.rnr_retry =
637 attr->rnr_retry << 5;
Roland Dreier2fa5e2e2006-02-01 13:38:24 -0800638 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_RETRY |
Dotan Barak4de144b2006-01-06 13:23:58 -0800639 MTHCA_QP_OPTPAR_ALT_RNR_RETRY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641
642 if (attr_mask & IB_QP_AV) {
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700643 if (mthca_path_set(dev, &attr->ah_attr, &qp_context->pri_path,
644 attr_mask & IB_QP_PORT ? attr->port_num : qp->port))
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700645 goto out_mailbox;
Dotan Barak0ef61db2006-03-19 17:20:36 +0200646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH);
648 }
649
Michael S. Tsirkin9ba6d552007-04-12 18:10:25 +0300650 if (ibqp->qp_type == IB_QPT_RC &&
651 cur_state == IB_QPS_INIT && new_state == IB_QPS_RTR) {
652 u8 sched_queue = ibqp->uobject ? 0x2 : 0x1;
653
654 if (mthca_is_memfree(dev))
655 qp_context->rlkey_arbel_sched_queue |= sched_queue;
656 else
657 qp_context->tavor_sched_queue |= cpu_to_be32(sched_queue);
658
659 qp_param->opt_param_mask |=
660 cpu_to_be32(MTHCA_QP_OPTPAR_SCHED_QUEUE);
661 }
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (attr_mask & IB_QP_TIMEOUT) {
Roland Dreierbb4a7f02005-09-12 14:08:51 -0700664 qp_context->pri_path.ackto = attr->timeout << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_ACK_TIMEOUT);
666 }
667
Dotan Barak4de144b2006-01-06 13:23:58 -0800668 if (attr_mask & IB_QP_ALT_PATH) {
Dotan Barak67e73772006-03-01 14:28:12 -0800669 if (attr->alt_pkey_index >= dev->limits.pkey_table_len) {
670 mthca_dbg(dev, "Alternate P_Key index (%u) too large. max is %d\n",
671 attr->alt_pkey_index, dev->limits.pkey_table_len-1);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700672 goto out_mailbox;
Dotan Barak67e73772006-03-01 14:28:12 -0800673 }
674
Dotan Barak4de144b2006-01-06 13:23:58 -0800675 if (attr->alt_port_num == 0 || attr->alt_port_num > dev->limits.num_ports) {
Roland Dreier2fa5e2e2006-02-01 13:38:24 -0800676 mthca_dbg(dev, "Alternate port number (%u) is invalid\n",
Dotan Barak4de144b2006-01-06 13:23:58 -0800677 attr->alt_port_num);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700678 goto out_mailbox;
Dotan Barak4de144b2006-01-06 13:23:58 -0800679 }
680
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700681 if (mthca_path_set(dev, &attr->alt_ah_attr, &qp_context->alt_path,
682 attr->alt_ah_attr.port_num))
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700683 goto out_mailbox;
Dotan Barak0ef61db2006-03-19 17:20:36 +0200684
Roland Dreier2fa5e2e2006-02-01 13:38:24 -0800685 qp_context->alt_path.port_pkey |= cpu_to_be32(attr->alt_pkey_index |
Dotan Barak4de144b2006-01-06 13:23:58 -0800686 attr->alt_port_num << 24);
687 qp_context->alt_path.ackto = attr->alt_timeout << 3;
688 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_ALT_ADDR_PATH);
689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 /* leave rdd as 0 */
692 qp_context->pd = cpu_to_be32(to_mpd(ibqp->pd)->pd_num);
693 /* leave wqe_base as 0 (we always create an MR based at 0 for WQs) */
694 qp_context->wqe_lkey = cpu_to_be32(qp->mr.ibmr.lkey);
695 qp_context->params1 = cpu_to_be32((MTHCA_ACK_REQ_FREQ << 28) |
696 (MTHCA_FLIGHT_LIMIT << 24) |
Jack Morgensteinc4342d82005-12-15 19:59:01 -0800697 MTHCA_QP_BIT_SWE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (qp->sq_policy == IB_SIGNAL_ALL_WR)
699 qp_context->params1 |= cpu_to_be32(MTHCA_QP_BIT_SSC);
700 if (attr_mask & IB_QP_RETRY_CNT) {
701 qp_context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
702 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RETRY_COUNT);
703 }
704
Roland Dreier34a4a752005-06-27 14:36:41 -0700705 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
Jack Morgensteinc4342d82005-12-15 19:59:01 -0800706 if (attr->max_rd_atomic) {
707 qp_context->params1 |=
708 cpu_to_be32(MTHCA_QP_BIT_SRE |
709 MTHCA_QP_BIT_SAE);
Jack Morgenstein6aa2e4e2005-12-09 16:38:04 -0800710 qp_context->params1 |=
711 cpu_to_be32(fls(attr->max_rd_atomic - 1) << 21);
Jack Morgensteinc4342d82005-12-15 19:59:01 -0800712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_SRA_MAX);
714 }
715
716 if (attr_mask & IB_QP_SQ_PSN)
717 qp_context->next_send_psn = cpu_to_be32(attr->sq_psn);
718 qp_context->cqn_snd = cpu_to_be32(to_mcq(ibqp->send_cq)->cqn);
719
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700720 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 qp_context->snd_wqe_base_l = cpu_to_be32(qp->send_wqe_offset);
722 qp_context->snd_db_index = cpu_to_be32(qp->sq.db_index);
723 }
724
Roland Dreier34a4a752005-06-27 14:36:41 -0700725 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
Jack Morgenstein6aa2e4e2005-12-09 16:38:04 -0800726 if (attr->max_dest_rd_atomic)
727 qp_context->params2 |=
728 cpu_to_be32(fls(attr->max_dest_rd_atomic - 1) << 21);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RRA_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
732
Jack Morgensteind1646f82005-12-15 14:36:24 -0800733 if (attr_mask & (IB_QP_ACCESS_FLAGS | IB_QP_MAX_DEST_RD_ATOMIC)) {
734 qp_context->params2 |= get_hw_access_flags(qp, attr, attr_mask);
735 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
736 MTHCA_QP_OPTPAR_RRE |
737 MTHCA_QP_OPTPAR_RAE);
738 }
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RSC);
741
Roland Dreierec34a922005-08-19 10:59:31 -0700742 if (ibqp->srq)
743 qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RIC);
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (attr_mask & IB_QP_MIN_RNR_TIMER) {
746 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
747 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_TIMEOUT);
748 }
749 if (attr_mask & IB_QP_RQ_PSN)
750 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
751
752 qp_context->ra_buff_indx =
753 cpu_to_be32(dev->qp_table.rdb_base +
754 ((qp->qpn & (dev->limits.num_qps - 1)) * MTHCA_RDB_ENTRY_SIZE <<
755 dev->qp_table.rdb_shift));
756
757 qp_context->cqn_rcv = cpu_to_be32(to_mcq(ibqp->recv_cq)->cqn);
758
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700759 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 qp_context->rcv_db_index = cpu_to_be32(qp->rq.db_index);
761
762 if (attr_mask & IB_QP_QKEY) {
763 qp_context->qkey = cpu_to_be32(attr->qkey);
764 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_Q_KEY);
765 }
766
Roland Dreierec34a922005-08-19 10:59:31 -0700767 if (ibqp->srq)
768 qp_context->srqn = cpu_to_be32(1 << 24 |
769 to_msrq(ibqp->srq)->srqn);
770
Roland Dreier3fa1fa32006-02-03 14:53:28 -0800771 if (cur_state == IB_QPS_RTS && new_state == IB_QPS_SQD &&
772 attr_mask & IB_QP_EN_SQD_ASYNC_NOTIFY &&
773 attr->en_sqd_async_notify)
774 sqd_event = 1 << 31;
775
Roland Dreierd8441832006-02-13 16:30:18 -0800776 err = mthca_MODIFY_QP(dev, cur_state, new_state, qp->qpn, 0,
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000777 mailbox, sqd_event);
778 if (err) {
779 mthca_warn(dev, "modify QP %d->%d returned %d.\n",
780 cur_state, new_state, err);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700781 goto out_mailbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783
Roland Dreier192daa12006-03-24 15:47:30 -0800784 qp->state = new_state;
785 if (attr_mask & IB_QP_ACCESS_FLAGS)
786 qp->atomic_rd_en = attr->qp_access_flags;
787 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
788 qp->resp_depth = attr->max_dest_rd_atomic;
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700789 if (attr_mask & IB_QP_PORT)
790 qp->port = attr->port_num;
791 if (attr_mask & IB_QP_ALT_PATH)
792 qp->alt_port = attr->alt_port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 if (is_sqp(dev, qp))
795 store_attrs(to_msqp(qp), attr, attr_mask);
796
797 /*
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700798 * If we moved QP0 to RTR, bring the IB link up; if we moved
799 * QP0 to RESET or ERROR, bring the link back down.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 */
801 if (is_qp0(dev, qp)) {
802 if (cur_state != IB_QPS_RTR &&
803 new_state == IB_QPS_RTR)
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700804 init_port(dev, qp->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 if (cur_state != IB_QPS_RESET &&
807 cur_state != IB_QPS_ERR &&
808 (new_state == IB_QPS_RESET ||
809 new_state == IB_QPS_ERR))
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +0000810 mthca_CLOSE_IB(dev, qp->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700813 /*
814 * If we moved a kernel QP to RESET, clean up all old CQ
815 * entries and reinitialize the QP.
816 */
Roland Dreier192daa12006-03-24 15:47:30 -0800817 if (new_state == IB_QPS_RESET && !qp->ibqp.uobject) {
Roland Dreierd35cc332006-09-22 15:22:55 -0700818 mthca_cq_clean(dev, to_mcq(qp->ibqp.recv_cq), qp->qpn,
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700819 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
820 if (qp->ibqp.send_cq != qp->ibqp.recv_cq)
Roland Dreierd35cc332006-09-22 15:22:55 -0700821 mthca_cq_clean(dev, to_mcq(qp->ibqp.send_cq), qp->qpn, NULL);
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700822
Michael S. Tsirkin0964d912006-07-14 00:23:51 -0700823 mthca_wq_reset(&qp->sq);
Michael S. Tsirkin187a2582005-11-28 11:19:43 -0800824 qp->sq.last = get_send_wqe(qp, qp->sq.max - 1);
825
Michael S. Tsirkin0964d912006-07-14 00:23:51 -0700826 mthca_wq_reset(&qp->rq);
Michael S. Tsirkin187a2582005-11-28 11:19:43 -0800827 qp->rq.last = get_recv_wqe(qp, qp->rq.max - 1);
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700828
829 if (mthca_is_memfree(dev)) {
830 *qp->sq.db = 0;
831 *qp->rq.db = 0;
832 }
833 }
834
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700835out_mailbox:
Roland Dreier192daa12006-03-24 15:47:30 -0800836 mthca_free_mailbox(dev, mailbox);
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300837out:
838 return err;
839}
840
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300841int mthca_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, int attr_mask,
842 struct ib_udata *udata)
843{
844 struct mthca_dev *dev = to_mdev(ibqp->device);
845 struct mthca_qp *qp = to_mqp(ibqp);
846 enum ib_qp_state cur_state, new_state;
847 int err = -EINVAL;
848
849 mutex_lock(&qp->mutex);
850 if (attr_mask & IB_QP_CUR_STATE) {
851 cur_state = attr->cur_qp_state;
852 } else {
853 spin_lock_irq(&qp->sq.lock);
854 spin_lock(&qp->rq.lock);
855 cur_state = qp->state;
856 spin_unlock(&qp->rq.lock);
857 spin_unlock_irq(&qp->sq.lock);
858 }
859
860 new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state;
861
862 if (!ib_modify_qp_is_ok(cur_state, new_state, ibqp->qp_type, attr_mask)) {
863 mthca_dbg(dev, "Bad QP transition (transport %d) "
864 "%d->%d with attr 0x%08x\n",
865 qp->transport, cur_state, new_state,
866 attr_mask);
867 goto out;
868 }
869
870 if ((attr_mask & IB_QP_PKEY_INDEX) &&
871 attr->pkey_index >= dev->limits.pkey_table_len) {
872 mthca_dbg(dev, "P_Key index (%u) too large. max is %d\n",
873 attr->pkey_index, dev->limits.pkey_table_len-1);
874 goto out;
875 }
876
877 if ((attr_mask & IB_QP_PORT) &&
878 (attr->port_num == 0 || attr->port_num > dev->limits.num_ports)) {
879 mthca_dbg(dev, "Port number (%u) is invalid\n", attr->port_num);
880 goto out;
881 }
882
883 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC &&
884 attr->max_rd_atomic > dev->limits.max_qp_init_rdma) {
885 mthca_dbg(dev, "Max rdma_atomic as initiator %u too large (max is %d)\n",
886 attr->max_rd_atomic, dev->limits.max_qp_init_rdma);
887 goto out;
888 }
889
890 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC &&
891 attr->max_dest_rd_atomic > 1 << dev->qp_table.rdb_shift) {
892 mthca_dbg(dev, "Max rdma_atomic as responder %u too large (max %d)\n",
893 attr->max_dest_rd_atomic, 1 << dev->qp_table.rdb_shift);
894 goto out;
895 }
896
897 if (cur_state == new_state && cur_state == IB_QPS_RESET) {
898 err = 0;
899 goto out;
900 }
901
Michael S. Tsirkinb18aad72007-05-14 07:26:51 +0300902 err = __mthca_modify_qp(ibqp, attr, attr_mask, cur_state, new_state);
Roland Dreierc93b6fb2006-06-17 20:37:41 -0700903
904out:
905 mutex_unlock(&qp->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return err;
907}
908
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -0800909static int mthca_max_data_size(struct mthca_dev *dev, struct mthca_qp *qp, int desc_sz)
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800910{
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800911 /*
912 * Calculate the maximum size of WQE s/g segments, excluding
913 * the next segment and other non-data segments.
914 */
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -0800915 int max_data_size = desc_sz - sizeof (struct mthca_next_seg);
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800916
917 switch (qp->transport) {
918 case MLX:
919 max_data_size -= 2 * sizeof (struct mthca_data_seg);
920 break;
921
922 case UD:
923 if (mthca_is_memfree(dev))
924 max_data_size -= sizeof (struct mthca_arbel_ud_seg);
925 else
926 max_data_size -= sizeof (struct mthca_tavor_ud_seg);
927 break;
928
929 default:
930 max_data_size -= sizeof (struct mthca_raddr_seg);
931 break;
932 }
933
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -0800934 return max_data_size;
935}
936
937static inline int mthca_max_inline_data(struct mthca_pd *pd, int max_data_size)
938{
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800939 /* We don't support inline data for kernel QPs (yet). */
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -0800940 return pd->ibpd.uobject ? max_data_size - MTHCA_INLINE_HEADER_SIZE : 0;
941}
942
943static void mthca_adjust_qp_caps(struct mthca_dev *dev,
944 struct mthca_pd *pd,
945 struct mthca_qp *qp)
946{
947 int max_data_size = mthca_max_data_size(dev, qp,
948 min(dev->limits.max_desc_sz,
949 1 << qp->sq.wqe_shift));
950
951 qp->max_inline_data = mthca_max_inline_data(pd, max_data_size);
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800952
Michael S. Tsirkin48fd0d12005-11-18 14:11:17 -0800953 qp->sq.max_gs = min_t(int, dev->limits.max_sg,
954 max_data_size / sizeof (struct mthca_data_seg));
955 qp->rq.max_gs = min_t(int, dev->limits.max_sg,
956 (min(dev->limits.max_desc_sz, 1 << qp->rq.wqe_shift) -
957 sizeof (struct mthca_next_seg)) /
958 sizeof (struct mthca_data_seg));
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800959}
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961/*
962 * Allocate and register buffer for WQEs. qp->rq.max, sq.max,
963 * rq.max_gs and sq.max_gs must all be assigned.
964 * mthca_alloc_wqe_buf will calculate rq.wqe_shift and
965 * sq.wqe_shift (as well as send_wqe_offset, is_direct, and
966 * queue)
967 */
968static int mthca_alloc_wqe_buf(struct mthca_dev *dev,
969 struct mthca_pd *pd,
970 struct mthca_qp *qp)
971{
972 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 int err = -ENOMEM;
974
975 size = sizeof (struct mthca_next_seg) +
976 qp->rq.max_gs * sizeof (struct mthca_data_seg);
977
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800978 if (size > dev->limits.max_desc_sz)
979 return -EINVAL;
980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 for (qp->rq.wqe_shift = 6; 1 << qp->rq.wqe_shift < size;
982 qp->rq.wqe_shift++)
983 ; /* nothing */
984
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800985 size = qp->sq.max_gs * sizeof (struct mthca_data_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 switch (qp->transport) {
987 case MLX:
988 size += 2 * sizeof (struct mthca_data_seg);
989 break;
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 case UD:
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800992 size += mthca_is_memfree(dev) ?
993 sizeof (struct mthca_arbel_ud_seg) :
994 sizeof (struct mthca_tavor_ud_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 break;
Jack Morgenstein77369ed2005-11-09 11:26:07 -0800996
997 case UC:
998 size += sizeof (struct mthca_raddr_seg);
999 break;
1000
1001 case RC:
1002 size += sizeof (struct mthca_raddr_seg);
1003 /*
1004 * An atomic op will require an atomic segment, a
1005 * remote address segment and one scatter entry.
1006 */
1007 size = max_t(int, size,
1008 sizeof (struct mthca_atomic_seg) +
1009 sizeof (struct mthca_raddr_seg) +
1010 sizeof (struct mthca_data_seg));
1011 break;
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 default:
Jack Morgenstein77369ed2005-11-09 11:26:07 -08001014 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016
Jack Morgenstein77369ed2005-11-09 11:26:07 -08001017 /* Make sure that we have enough space for a bind request */
1018 size = max_t(int, size, sizeof (struct mthca_bind_seg));
1019
1020 size += sizeof (struct mthca_next_seg);
1021
1022 if (size > dev->limits.max_desc_sz)
1023 return -EINVAL;
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 for (qp->sq.wqe_shift = 6; 1 << qp->sq.wqe_shift < size;
1026 qp->sq.wqe_shift++)
1027 ; /* nothing */
1028
1029 qp->send_wqe_offset = ALIGN(qp->rq.max << qp->rq.wqe_shift,
1030 1 << qp->sq.wqe_shift);
Roland Dreier80c8ec22005-07-07 17:57:20 -07001031
1032 /*
1033 * If this is a userspace QP, we don't actually have to
1034 * allocate anything. All we need is to calculate the WQE
1035 * sizes and the send_wqe_offset, so we're done now.
1036 */
1037 if (pd->ibpd.uobject)
1038 return 0;
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 size = PAGE_ALIGN(qp->send_wqe_offset +
1041 (qp->sq.max << qp->sq.wqe_shift));
1042
1043 qp->wrid = kmalloc((qp->rq.max + qp->sq.max) * sizeof (u64),
1044 GFP_KERNEL);
1045 if (!qp->wrid)
1046 goto err_out;
1047
Roland Dreier87b81672005-08-18 13:39:31 -07001048 err = mthca_buf_alloc(dev, size, MTHCA_MAX_DIRECT_QP_SIZE,
1049 &qp->queue, &qp->is_direct, pd, 0, &qp->mr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (err)
Roland Dreier87b81672005-08-18 13:39:31 -07001051 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return 0;
1054
Roland Dreier87b81672005-08-18 13:39:31 -07001055err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 kfree(qp->wrid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return err;
1058}
1059
Roland Dreier80c8ec22005-07-07 17:57:20 -07001060static void mthca_free_wqe_buf(struct mthca_dev *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct mthca_qp *qp)
1062{
Roland Dreier87b81672005-08-18 13:39:31 -07001063 mthca_buf_free(dev, PAGE_ALIGN(qp->send_wqe_offset +
1064 (qp->sq.max << qp->sq.wqe_shift)),
1065 &qp->queue, qp->is_direct, &qp->mr);
Roland Dreier80c8ec22005-07-07 17:57:20 -07001066 kfree(qp->wrid);
1067}
1068
1069static int mthca_map_memfree(struct mthca_dev *dev,
1070 struct mthca_qp *qp)
1071{
1072 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001074 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 ret = mthca_table_get(dev, dev->qp_table.qp_table, qp->qpn);
1076 if (ret)
1077 return ret;
1078
1079 ret = mthca_table_get(dev, dev->qp_table.eqp_table, qp->qpn);
1080 if (ret)
1081 goto err_qpc;
1082
Roland Dreier2fa5e2e2006-02-01 13:38:24 -08001083 ret = mthca_table_get(dev, dev->qp_table.rdb_table,
1084 qp->qpn << dev->qp_table.rdb_shift);
1085 if (ret)
1086 goto err_eqpc;
Roland Dreier08aeb142005-04-16 15:26:34 -07001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
1089
1090 return 0;
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092err_eqpc:
1093 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
1094
1095err_qpc:
1096 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
1097
1098 return ret;
1099}
1100
Roland Dreier80c8ec22005-07-07 17:57:20 -07001101static void mthca_unmap_memfree(struct mthca_dev *dev,
1102 struct mthca_qp *qp)
1103{
1104 mthca_table_put(dev, dev->qp_table.rdb_table,
1105 qp->qpn << dev->qp_table.rdb_shift);
1106 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
1107 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
1108}
1109
1110static int mthca_alloc_memfree(struct mthca_dev *dev,
1111 struct mthca_qp *qp)
1112{
Roland Dreier80c8ec22005-07-07 17:57:20 -07001113 if (mthca_is_memfree(dev)) {
1114 qp->rq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_RQ,
1115 qp->qpn, &qp->rq.db);
1116 if (qp->rq.db_index < 0)
Roland Dreier88171cf2007-03-01 13:17:14 -08001117 return -ENOMEM;
Roland Dreier80c8ec22005-07-07 17:57:20 -07001118
1119 qp->sq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_SQ,
1120 qp->qpn, &qp->sq.db);
Roland Dreier88171cf2007-03-01 13:17:14 -08001121 if (qp->sq.db_index < 0) {
Roland Dreier80c8ec22005-07-07 17:57:20 -07001122 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
Roland Dreier88171cf2007-03-01 13:17:14 -08001123 return -ENOMEM;
1124 }
Roland Dreier80c8ec22005-07-07 17:57:20 -07001125 }
1126
Roland Dreier88171cf2007-03-01 13:17:14 -08001127 return 0;
Roland Dreier80c8ec22005-07-07 17:57:20 -07001128}
1129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130static void mthca_free_memfree(struct mthca_dev *dev,
1131 struct mthca_qp *qp)
1132{
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001133 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 mthca_free_db(dev, MTHCA_DB_TYPE_SQ, qp->sq.db_index);
1135 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137}
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139static int mthca_alloc_qp_common(struct mthca_dev *dev,
1140 struct mthca_pd *pd,
1141 struct mthca_cq *send_cq,
1142 struct mthca_cq *recv_cq,
1143 enum ib_sig_type send_policy,
1144 struct mthca_qp *qp)
1145{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 int ret;
1147 int i;
Eli Cohen1d368c52008-01-24 06:38:06 -08001148 struct mthca_next_seg *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Roland Dreiera3285aa2006-05-09 10:50:29 -07001150 qp->refcount = 1;
Michael S. Tsirkin30a7e8e2005-09-07 09:45:00 -07001151 init_waitqueue_head(&qp->wait);
Roland Dreierc93b6fb2006-06-17 20:37:41 -07001152 mutex_init(&qp->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 qp->state = IB_QPS_RESET;
1154 qp->atomic_rd_en = 0;
1155 qp->resp_depth = 0;
1156 qp->sq_policy = send_policy;
Michael S. Tsirkin0964d912006-07-14 00:23:51 -07001157 mthca_wq_reset(&qp->sq);
1158 mthca_wq_reset(&qp->rq);
1159
Zach Browna46f9482006-07-04 02:57:52 -07001160 spin_lock_init(&qp->sq.lock);
1161 spin_lock_init(&qp->rq.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Roland Dreier80c8ec22005-07-07 17:57:20 -07001163 ret = mthca_map_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (ret)
1165 return ret;
1166
1167 ret = mthca_alloc_wqe_buf(dev, pd, qp);
1168 if (ret) {
Roland Dreier80c8ec22005-07-07 17:57:20 -07001169 mthca_unmap_memfree(dev, qp);
1170 return ret;
1171 }
1172
Jack Morgenstein77369ed2005-11-09 11:26:07 -08001173 mthca_adjust_qp_caps(dev, pd, qp);
1174
Roland Dreier80c8ec22005-07-07 17:57:20 -07001175 /*
1176 * If this is a userspace QP, we're done now. The doorbells
1177 * will be allocated and buffers will be initialized in
1178 * userspace.
1179 */
1180 if (pd->ibpd.uobject)
1181 return 0;
1182
1183 ret = mthca_alloc_memfree(dev, qp);
1184 if (ret) {
1185 mthca_free_wqe_buf(dev, qp);
1186 mthca_unmap_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return ret;
1188 }
1189
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001190 if (mthca_is_memfree(dev)) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001191 struct mthca_data_seg *scatter;
1192 int size = (sizeof (struct mthca_next_seg) +
1193 qp->rq.max_gs * sizeof (struct mthca_data_seg)) / 16;
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 for (i = 0; i < qp->rq.max; ++i) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001196 next = get_recv_wqe(qp, i);
1197 next->nda_op = cpu_to_be32(((i + 1) & (qp->rq.max - 1)) <<
1198 qp->rq.wqe_shift);
1199 next->ee_nds = cpu_to_be32(size);
1200
1201 for (scatter = (void *) (next + 1);
1202 (void *) scatter < (void *) next + (1 << qp->rq.wqe_shift);
1203 ++scatter)
1204 scatter->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
1206
1207 for (i = 0; i < qp->sq.max; ++i) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001208 next = get_send_wqe(qp, i);
1209 next->nda_op = cpu_to_be32((((i + 1) & (qp->sq.max - 1)) <<
1210 qp->sq.wqe_shift) +
1211 qp->send_wqe_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
Eli Cohen1d368c52008-01-24 06:38:06 -08001213 } else {
1214 for (i = 0; i < qp->rq.max; ++i) {
1215 next = get_recv_wqe(qp, i);
1216 next->nda_op = htonl((((i + 1) % qp->rq.max) <<
1217 qp->rq.wqe_shift) | 1);
1218 }
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221
Roland Dreierd6cff022005-09-13 10:41:03 -07001222 qp->sq.last = get_send_wqe(qp, qp->sq.max - 1);
1223 qp->rq.last = get_recv_wqe(qp, qp->rq.max - 1);
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 return 0;
1226}
1227
Roland Dreier80c8ec22005-07-07 17:57:20 -07001228static int mthca_set_qp_size(struct mthca_dev *dev, struct ib_qp_cap *cap,
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -08001229 struct mthca_pd *pd, struct mthca_qp *qp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -08001231 int max_data_size = mthca_max_data_size(dev, qp, dev->limits.max_desc_sz);
1232
Roland Dreier80c8ec22005-07-07 17:57:20 -07001233 /* Sanity check QP size before proceeding */
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -08001234 if (cap->max_send_wr > dev->limits.max_wqes ||
1235 cap->max_recv_wr > dev->limits.max_wqes ||
1236 cap->max_send_sge > dev->limits.max_sg ||
1237 cap->max_recv_sge > dev->limits.max_sg ||
1238 cap->max_inline_data > mthca_max_inline_data(pd, max_data_size))
1239 return -EINVAL;
1240
1241 /*
Roland Dreieraed01222008-07-14 23:48:52 -07001242 * For MLX transport we need 2 extra send gather entries:
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -08001243 * one for the header and one for the checksum at the end
1244 */
Roland Dreieraed01222008-07-14 23:48:52 -07001245 if (qp->transport == MLX && cap->max_send_sge + 2 > dev->limits.max_sg)
Roland Dreier80c8ec22005-07-07 17:57:20 -07001246 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Roland Dreier80c8ec22005-07-07 17:57:20 -07001248 if (mthca_is_memfree(dev)) {
1249 qp->rq.max = cap->max_recv_wr ?
1250 roundup_pow_of_two(cap->max_recv_wr) : 0;
1251 qp->sq.max = cap->max_send_wr ?
1252 roundup_pow_of_two(cap->max_send_wr) : 0;
1253 } else {
1254 qp->rq.max = cap->max_recv_wr;
1255 qp->sq.max = cap->max_send_wr;
1256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Roland Dreier80c8ec22005-07-07 17:57:20 -07001258 qp->rq.max_gs = cap->max_recv_sge;
1259 qp->sq.max_gs = max_t(int, cap->max_send_sge,
1260 ALIGN(cap->max_inline_data + MTHCA_INLINE_HEADER_SIZE,
1261 MTHCA_INLINE_CHUNK_SIZE) /
1262 sizeof (struct mthca_data_seg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Roland Dreier80c8ec22005-07-07 17:57:20 -07001264 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
1267int mthca_alloc_qp(struct mthca_dev *dev,
1268 struct mthca_pd *pd,
1269 struct mthca_cq *send_cq,
1270 struct mthca_cq *recv_cq,
1271 enum ib_qp_type type,
1272 enum ib_sig_type send_policy,
Roland Dreier80c8ec22005-07-07 17:57:20 -07001273 struct ib_qp_cap *cap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 struct mthca_qp *qp)
1275{
1276 int err;
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 switch (type) {
1279 case IB_QPT_RC: qp->transport = RC; break;
1280 case IB_QPT_UC: qp->transport = UC; break;
1281 case IB_QPT_UD: qp->transport = UD; break;
1282 default: return -EINVAL;
1283 }
1284
Jack Morgensteinb3f64962006-03-22 09:52:31 +02001285 err = mthca_set_qp_size(dev, cap, pd, qp);
1286 if (err)
1287 return err;
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 qp->qpn = mthca_alloc(&dev->qp_table.alloc);
1290 if (qp->qpn == -1)
1291 return -ENOMEM;
1292
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -07001293 /* initialize port to zero for error-catching. */
1294 qp->port = 0;
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1297 send_policy, qp);
1298 if (err) {
1299 mthca_free(&dev->qp_table.alloc, qp->qpn);
1300 return err;
1301 }
1302
1303 spin_lock_irq(&dev->qp_table.lock);
1304 mthca_array_set(&dev->qp_table.qp,
1305 qp->qpn & (dev->limits.num_qps - 1), qp);
1306 spin_unlock_irq(&dev->qp_table.lock);
1307
1308 return 0;
1309}
1310
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001311static void mthca_lock_cqs(struct mthca_cq *send_cq, struct mthca_cq *recv_cq)
Roland Dreierffe063f2009-09-05 20:36:15 -07001312 __acquires(&send_cq->lock) __acquires(&recv_cq->lock)
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001313{
Roland Dreierffe063f2009-09-05 20:36:15 -07001314 if (send_cq == recv_cq) {
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001315 spin_lock_irq(&send_cq->lock);
Roland Dreierffe063f2009-09-05 20:36:15 -07001316 __acquire(&recv_cq->lock);
1317 } else if (send_cq->cqn < recv_cq->cqn) {
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001318 spin_lock_irq(&send_cq->lock);
1319 spin_lock_nested(&recv_cq->lock, SINGLE_DEPTH_NESTING);
1320 } else {
1321 spin_lock_irq(&recv_cq->lock);
1322 spin_lock_nested(&send_cq->lock, SINGLE_DEPTH_NESTING);
1323 }
1324}
1325
1326static void mthca_unlock_cqs(struct mthca_cq *send_cq, struct mthca_cq *recv_cq)
Roland Dreierffe063f2009-09-05 20:36:15 -07001327 __releases(&send_cq->lock) __releases(&recv_cq->lock)
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001328{
Roland Dreierffe063f2009-09-05 20:36:15 -07001329 if (send_cq == recv_cq) {
1330 __release(&recv_cq->lock);
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001331 spin_unlock_irq(&send_cq->lock);
Roland Dreierffe063f2009-09-05 20:36:15 -07001332 } else if (send_cq->cqn < recv_cq->cqn) {
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001333 spin_unlock(&recv_cq->lock);
1334 spin_unlock_irq(&send_cq->lock);
1335 } else {
1336 spin_unlock(&send_cq->lock);
1337 spin_unlock_irq(&recv_cq->lock);
1338 }
1339}
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341int mthca_alloc_sqp(struct mthca_dev *dev,
1342 struct mthca_pd *pd,
1343 struct mthca_cq *send_cq,
1344 struct mthca_cq *recv_cq,
1345 enum ib_sig_type send_policy,
Roland Dreier80c8ec22005-07-07 17:57:20 -07001346 struct ib_qp_cap *cap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 int qpn,
1348 int port,
1349 struct mthca_sqp *sqp)
1350{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 u32 mqpn = qpn * 2 + dev->qp_table.sqp_start + port - 1;
Roland Dreier80c8ec22005-07-07 17:57:20 -07001352 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Jack Morgensteinb3f64962006-03-22 09:52:31 +02001354 sqp->qp.transport = MLX;
Jack Morgenstein5b3bc7a2006-01-06 12:57:30 -08001355 err = mthca_set_qp_size(dev, cap, pd, &sqp->qp);
Roland Dreier80c8ec22005-07-07 17:57:20 -07001356 if (err)
1357 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 sqp->header_buf_size = sqp->qp.sq.max * MTHCA_UD_HEADER_SIZE;
1360 sqp->header_buf = dma_alloc_coherent(&dev->pdev->dev, sqp->header_buf_size,
1361 &sqp->header_dma, GFP_KERNEL);
1362 if (!sqp->header_buf)
1363 return -ENOMEM;
1364
1365 spin_lock_irq(&dev->qp_table.lock);
1366 if (mthca_array_get(&dev->qp_table.qp, mqpn))
1367 err = -EBUSY;
1368 else
1369 mthca_array_set(&dev->qp_table.qp, mqpn, sqp);
1370 spin_unlock_irq(&dev->qp_table.lock);
1371
1372 if (err)
1373 goto err_out;
1374
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -07001375 sqp->qp.port = port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 sqp->qp.qpn = mqpn;
1377 sqp->qp.transport = MLX;
1378
1379 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1380 send_policy, &sqp->qp);
1381 if (err)
1382 goto err_out_free;
1383
1384 atomic_inc(&pd->sqp_count);
1385
1386 return 0;
1387
1388 err_out_free:
1389 /*
1390 * Lock CQs here, so that CQ polling code can do QP lookup
1391 * without taking a lock.
1392 */
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001393 mthca_lock_cqs(send_cq, recv_cq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 spin_lock(&dev->qp_table.lock);
1396 mthca_array_clear(&dev->qp_table.qp, mqpn);
1397 spin_unlock(&dev->qp_table.lock);
1398
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001399 mthca_unlock_cqs(send_cq, recv_cq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 err_out:
1402 dma_free_coherent(&dev->pdev->dev, sqp->header_buf_size,
1403 sqp->header_buf, sqp->header_dma);
1404
1405 return err;
1406}
1407
Roland Dreiera3285aa2006-05-09 10:50:29 -07001408static inline int get_qp_refcount(struct mthca_dev *dev, struct mthca_qp *qp)
1409{
1410 int c;
1411
1412 spin_lock_irq(&dev->qp_table.lock);
1413 c = qp->refcount;
1414 spin_unlock_irq(&dev->qp_table.lock);
1415
1416 return c;
1417}
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419void mthca_free_qp(struct mthca_dev *dev,
1420 struct mthca_qp *qp)
1421{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 struct mthca_cq *send_cq;
1423 struct mthca_cq *recv_cq;
1424
1425 send_cq = to_mcq(qp->ibqp.send_cq);
1426 recv_cq = to_mcq(qp->ibqp.recv_cq);
1427
1428 /*
1429 * Lock CQs here, so that CQ polling code can do QP lookup
1430 * without taking a lock.
1431 */
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001432 mthca_lock_cqs(send_cq, recv_cq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 spin_lock(&dev->qp_table.lock);
1435 mthca_array_clear(&dev->qp_table.qp,
1436 qp->qpn & (dev->limits.num_qps - 1));
Roland Dreiera3285aa2006-05-09 10:50:29 -07001437 --qp->refcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 spin_unlock(&dev->qp_table.lock);
1439
Roland Dreiera19aa5c2006-08-11 08:56:57 -07001440 mthca_unlock_cqs(send_cq, recv_cq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Roland Dreiera3285aa2006-05-09 10:50:29 -07001442 wait_event(qp->wait, !get_qp_refcount(dev, qp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
1444 if (qp->state != IB_QPS_RESET)
Roland Dreierd8441832006-02-13 16:30:18 -08001445 mthca_MODIFY_QP(dev, qp->state, IB_QPS_RESET, qp->qpn, 0,
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +00001446 NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Roland Dreier80c8ec22005-07-07 17:57:20 -07001448 /*
1449 * If this is a userspace QP, the buffers, MR, CQs and so on
1450 * will be cleaned up in userspace, so all we have to do is
1451 * unref the mem-free tables and free the QPN in our table.
1452 */
1453 if (!qp->ibqp.uobject) {
Roland Dreier30c00982007-04-24 16:31:11 -07001454 mthca_cq_clean(dev, recv_cq, qp->qpn,
Roland Dreierec34a922005-08-19 10:59:31 -07001455 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
Roland Dreier30c00982007-04-24 16:31:11 -07001456 if (send_cq != recv_cq)
1457 mthca_cq_clean(dev, send_cq, qp->qpn, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Roland Dreier80c8ec22005-07-07 17:57:20 -07001459 mthca_free_memfree(dev, qp);
1460 mthca_free_wqe_buf(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
1462
Roland Dreier80c8ec22005-07-07 17:57:20 -07001463 mthca_unmap_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 if (is_sqp(dev, qp)) {
1466 atomic_dec(&(to_mpd(qp->ibqp.pd)->sqp_count));
1467 dma_free_coherent(&dev->pdev->dev,
1468 to_msqp(qp)->header_buf_size,
1469 to_msqp(qp)->header_buf,
1470 to_msqp(qp)->header_dma);
1471 } else
1472 mthca_free(&dev->qp_table.alloc, qp->qpn);
1473}
1474
1475/* Create UD header for an MLX send and build a data segment for it */
1476static int build_mlx_header(struct mthca_dev *dev, struct mthca_sqp *sqp,
1477 int ind, struct ib_send_wr *wr,
1478 struct mthca_mlx_seg *mlx,
1479 struct mthca_data_seg *data)
1480{
1481 int header_size;
1482 int err;
Sean Hefty97f52eb2005-08-13 21:05:57 -07001483 u16 pkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Eli Cohenaf7bd462010-08-26 17:18:59 +03001485 ib_ud_header_init(256, /* assume a MAD */ 1, 0, 0,
Eli Cohen920d7062010-02-08 11:40:37 +00001486 mthca_ah_grh_present(to_mah(wr->wr.ud.ah)), 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 &sqp->ud_header);
1488
1489 err = mthca_read_ah(dev, to_mah(wr->wr.ud.ah), &sqp->ud_header);
1490 if (err)
1491 return err;
1492 mlx->flags &= ~cpu_to_be32(MTHCA_NEXT_SOLICIT | 1);
1493 mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MTHCA_MLX_VL15 : 0) |
Sean Hefty97f52eb2005-08-13 21:05:57 -07001494 (sqp->ud_header.lrh.destination_lid ==
1495 IB_LID_PERMISSIVE ? MTHCA_MLX_SLR : 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 (sqp->ud_header.lrh.service_level << 8));
1497 mlx->rlid = sqp->ud_header.lrh.destination_lid;
1498 mlx->vcrc = 0;
1499
1500 switch (wr->opcode) {
1501 case IB_WR_SEND:
1502 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
1503 sqp->ud_header.immediate_present = 0;
1504 break;
1505 case IB_WR_SEND_WITH_IMM:
1506 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
1507 sqp->ud_header.immediate_present = 1;
Roland Dreier0f39cf32008-04-16 21:09:32 -07001508 sqp->ud_header.immediate_data = wr->ex.imm_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 break;
1510 default:
1511 return -EINVAL;
1512 }
1513
1514 sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0;
Sean Hefty97f52eb2005-08-13 21:05:57 -07001515 if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE)
1516 sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
1518 if (!sqp->qp.ibqp.qp_num)
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -07001519 ib_get_cached_pkey(&dev->ib_dev, sqp->qp.port,
Sean Hefty97f52eb2005-08-13 21:05:57 -07001520 sqp->pkey_index, &pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 else
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 wr->wr.ud.pkey_index, &pkey);
1524 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
1526 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
1527 sqp->ud_header.deth.qkey = cpu_to_be32(wr->wr.ud.remote_qkey & 0x80000000 ?
1528 sqp->qkey : wr->wr.ud.remote_qkey);
1529 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
1530
1531 header_size = ib_ud_header_pack(&sqp->ud_header,
1532 sqp->header_buf +
1533 ind * MTHCA_UD_HEADER_SIZE);
1534
1535 data->byte_count = cpu_to_be32(header_size);
1536 data->lkey = cpu_to_be32(to_mpd(sqp->qp.ibqp.pd)->ntmr.ibmr.lkey);
1537 data->addr = cpu_to_be64(sqp->header_dma +
1538 ind * MTHCA_UD_HEADER_SIZE);
1539
1540 return 0;
1541}
1542
1543static inline int mthca_wq_overflow(struct mthca_wq *wq, int nreq,
1544 struct ib_cq *ib_cq)
1545{
1546 unsigned cur;
1547 struct mthca_cq *cq;
1548
1549 cur = wq->head - wq->tail;
1550 if (likely(cur + nreq < wq->max))
1551 return 0;
1552
1553 cq = to_mcq(ib_cq);
1554 spin_lock(&cq->lock);
1555 cur = wq->head - wq->tail;
1556 spin_unlock(&cq->lock);
1557
1558 return cur + nreq >= wq->max;
1559}
1560
Roland Dreier400ddc12007-07-18 12:55:42 -07001561static __always_inline void set_raddr_seg(struct mthca_raddr_seg *rseg,
1562 u64 remote_addr, u32 rkey)
1563{
1564 rseg->raddr = cpu_to_be64(remote_addr);
1565 rseg->rkey = cpu_to_be32(rkey);
1566 rseg->reserved = 0;
1567}
1568
1569static __always_inline void set_atomic_seg(struct mthca_atomic_seg *aseg,
1570 struct ib_send_wr *wr)
1571{
1572 if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
1573 aseg->swap_add = cpu_to_be64(wr->wr.atomic.swap);
1574 aseg->compare = cpu_to_be64(wr->wr.atomic.compare_add);
1575 } else {
1576 aseg->swap_add = cpu_to_be64(wr->wr.atomic.compare_add);
1577 aseg->compare = 0;
1578 }
1579
1580}
1581
Roland Dreiere535c692007-07-18 13:21:14 -07001582static void set_tavor_ud_seg(struct mthca_tavor_ud_seg *useg,
1583 struct ib_send_wr *wr)
1584{
1585 useg->lkey = cpu_to_be32(to_mah(wr->wr.ud.ah)->key);
1586 useg->av_addr = cpu_to_be64(to_mah(wr->wr.ud.ah)->avdma);
1587 useg->dqpn = cpu_to_be32(wr->wr.ud.remote_qpn);
1588 useg->qkey = cpu_to_be32(wr->wr.ud.remote_qkey);
1589
1590}
1591
1592static void set_arbel_ud_seg(struct mthca_arbel_ud_seg *useg,
1593 struct ib_send_wr *wr)
1594{
1595 memcpy(useg->av, to_mah(wr->wr.ud.ah)->av, MTHCA_AV_SIZE);
1596 useg->dqpn = cpu_to_be32(wr->wr.ud.remote_qpn);
1597 useg->qkey = cpu_to_be32(wr->wr.ud.remote_qkey);
1598}
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600int mthca_tavor_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
1601 struct ib_send_wr **bad_wr)
1602{
1603 struct mthca_dev *dev = to_mdev(ibqp->device);
1604 struct mthca_qp *qp = to_mqp(ibqp);
1605 void *wqe;
1606 void *prev_wqe;
1607 unsigned long flags;
1608 int err = 0;
1609 int nreq;
1610 int i;
1611 int size;
Roland Dreier6d7d0802007-07-17 19:30:51 -07001612 /*
Roland Dreier43509d12007-07-18 13:28:29 -07001613 * f0 and size0 are only used if nreq != 0, and they will
1614 * always be initialized the first time through the main loop
1615 * before nreq is incremented. So nreq cannot become non-zero
1616 * without initializing f0 and size0, and they are in fact
1617 * never used uninitialized.
Roland Dreier6d7d0802007-07-17 19:30:51 -07001618 */
Roland Dreier43509d12007-07-18 13:28:29 -07001619 int uninitialized_var(size0);
Roland Dreier6d7d0802007-07-17 19:30:51 -07001620 u32 uninitialized_var(f0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 int ind;
1622 u8 op0 = 0;
1623
1624 spin_lock_irqsave(&qp->sq.lock, flags);
1625
1626 /* XXX check that state is OK to post send */
1627
1628 ind = qp->sq.next_ind;
1629
1630 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1631 if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1632 mthca_err(dev, "SQ %06x full (%u head, %u tail,"
1633 " %d max, %d nreq)\n", qp->qpn,
1634 qp->sq.head, qp->sq.tail,
1635 qp->sq.max, nreq);
1636 err = -ENOMEM;
1637 *bad_wr = wr;
1638 goto out;
1639 }
1640
1641 wqe = get_send_wqe(qp, ind);
1642 prev_wqe = qp->sq.last;
1643 qp->sq.last = wqe;
1644
1645 ((struct mthca_next_seg *) wqe)->nda_op = 0;
1646 ((struct mthca_next_seg *) wqe)->ee_nds = 0;
1647 ((struct mthca_next_seg *) wqe)->flags =
1648 ((wr->send_flags & IB_SEND_SIGNALED) ?
1649 cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) |
1650 ((wr->send_flags & IB_SEND_SOLICITED) ?
1651 cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) |
1652 cpu_to_be32(1);
1653 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1654 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
Roland Dreier0f39cf32008-04-16 21:09:32 -07001655 ((struct mthca_next_seg *) wqe)->imm = wr->ex.imm_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657 wqe += sizeof (struct mthca_next_seg);
1658 size = sizeof (struct mthca_next_seg) / 16;
1659
1660 switch (qp->transport) {
1661 case RC:
1662 switch (wr->opcode) {
1663 case IB_WR_ATOMIC_CMP_AND_SWP:
1664 case IB_WR_ATOMIC_FETCH_AND_ADD:
Roland Dreier400ddc12007-07-18 12:55:42 -07001665 set_raddr_seg(wqe, wr->wr.atomic.remote_addr,
1666 wr->wr.atomic.rkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 wqe += sizeof (struct mthca_raddr_seg);
1668
Roland Dreier400ddc12007-07-18 12:55:42 -07001669 set_atomic_seg(wqe, wr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 wqe += sizeof (struct mthca_atomic_seg);
Michael S. Tsirkin62abb842005-11-09 11:30:14 -08001671 size += (sizeof (struct mthca_raddr_seg) +
1672 sizeof (struct mthca_atomic_seg)) / 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 break;
1674
1675 case IB_WR_RDMA_WRITE:
1676 case IB_WR_RDMA_WRITE_WITH_IMM:
1677 case IB_WR_RDMA_READ:
Roland Dreier400ddc12007-07-18 12:55:42 -07001678 set_raddr_seg(wqe, wr->wr.rdma.remote_addr,
1679 wr->wr.rdma.rkey);
1680 wqe += sizeof (struct mthca_raddr_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 size += sizeof (struct mthca_raddr_seg) / 16;
1682 break;
1683
1684 default:
1685 /* No extra segments required for sends */
1686 break;
1687 }
1688
1689 break;
1690
Roland Dreier9e6970b2005-06-27 14:36:42 -07001691 case UC:
1692 switch (wr->opcode) {
1693 case IB_WR_RDMA_WRITE:
1694 case IB_WR_RDMA_WRITE_WITH_IMM:
Roland Dreier400ddc12007-07-18 12:55:42 -07001695 set_raddr_seg(wqe, wr->wr.rdma.remote_addr,
1696 wr->wr.rdma.rkey);
1697 wqe += sizeof (struct mthca_raddr_seg);
Roland Dreier9e6970b2005-06-27 14:36:42 -07001698 size += sizeof (struct mthca_raddr_seg) / 16;
1699 break;
1700
1701 default:
1702 /* No extra segments required for sends */
1703 break;
1704 }
1705
1706 break;
1707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 case UD:
Roland Dreiere535c692007-07-18 13:21:14 -07001709 set_tavor_ud_seg(wqe, wr);
1710 wqe += sizeof (struct mthca_tavor_ud_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 size += sizeof (struct mthca_tavor_ud_seg) / 16;
1712 break;
1713
1714 case MLX:
1715 err = build_mlx_header(dev, to_msqp(qp), ind, wr,
1716 wqe - sizeof (struct mthca_next_seg),
1717 wqe);
1718 if (err) {
1719 *bad_wr = wr;
1720 goto out;
1721 }
1722 wqe += sizeof (struct mthca_data_seg);
1723 size += sizeof (struct mthca_data_seg) / 16;
1724 break;
1725 }
1726
1727 if (wr->num_sge > qp->sq.max_gs) {
1728 mthca_err(dev, "too many gathers\n");
1729 err = -EINVAL;
1730 *bad_wr = wr;
1731 goto out;
1732 }
1733
1734 for (i = 0; i < wr->num_sge; ++i) {
Roland Dreier80885452007-07-18 11:30:34 -07001735 mthca_set_data_seg(wqe, wr->sg_list + i);
1736 wqe += sizeof (struct mthca_data_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 size += sizeof (struct mthca_data_seg) / 16;
1738 }
1739
1740 /* Add one more inline data segment for ICRC */
1741 if (qp->transport == MLX) {
1742 ((struct mthca_data_seg *) wqe)->byte_count =
1743 cpu_to_be32((1 << 31) | 4);
1744 ((u32 *) wqe)[1] = 0;
1745 wqe += sizeof (struct mthca_data_seg);
1746 size += sizeof (struct mthca_data_seg) / 16;
1747 }
1748
1749 qp->wrid[ind + qp->rq.max] = wr->wr_id;
1750
1751 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
1752 mthca_err(dev, "opcode invalid\n");
1753 err = -EINVAL;
1754 *bad_wr = wr;
1755 goto out;
1756 }
1757
Roland Dreierd6cff022005-09-13 10:41:03 -07001758 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1759 cpu_to_be32(((ind << qp->sq.wqe_shift) +
1760 qp->send_wqe_offset) |
1761 mthca_opcode[wr->opcode]);
1762 wmb();
1763 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
Roland Dreier43509d12007-07-18 13:28:29 -07001764 cpu_to_be32((nreq ? 0 : MTHCA_NEXT_DBD) | size |
Dotan Barak7667abd12006-02-27 21:02:00 -08001765 ((wr->send_flags & IB_SEND_FENCE) ?
1766 MTHCA_NEXT_FENCE : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Roland Dreier43509d12007-07-18 13:28:29 -07001768 if (!nreq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 size0 = size;
1770 op0 = mthca_opcode[wr->opcode];
Michael S. Tsirkine54b82d2006-08-10 10:46:56 -07001771 f0 = wr->send_flags & IB_SEND_FENCE ?
1772 MTHCA_SEND_DOORBELL_FENCE : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 }
1774
1775 ++ind;
1776 if (unlikely(ind >= qp->sq.max))
1777 ind -= qp->sq.max;
1778 }
1779
1780out:
1781 if (likely(nreq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 wmb();
1783
Roland Dreierab8403c2007-10-14 20:40:27 -07001784 mthca_write64(((qp->sq.next_ind << qp->sq.wqe_shift) +
1785 qp->send_wqe_offset) | f0 | op0,
1786 (qp->qpn << 8) | size0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 dev->kar + MTHCA_SEND_DOORBELL,
1788 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
Arthur Kepner1f5c23e2006-10-16 20:22:35 -07001789 /*
1790 * Make sure doorbells don't leak out of SQ spinlock
1791 * and reach the HCA out of order:
1792 */
1793 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
1795
1796 qp->sq.next_ind = ind;
1797 qp->sq.head += nreq;
1798
1799 spin_unlock_irqrestore(&qp->sq.lock, flags);
1800 return err;
1801}
1802
1803int mthca_tavor_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
1804 struct ib_recv_wr **bad_wr)
1805{
1806 struct mthca_dev *dev = to_mdev(ibqp->device);
1807 struct mthca_qp *qp = to_mqp(ibqp);
1808 unsigned long flags;
1809 int err = 0;
1810 int nreq;
1811 int i;
1812 int size;
Roland Dreier43509d12007-07-18 13:28:29 -07001813 /*
1814 * size0 is only used if nreq != 0, and it will always be
1815 * initialized the first time through the main loop before
1816 * nreq is incremented. So nreq cannot become non-zero
1817 * without initializing size0, and it is in fact never used
1818 * uninitialized.
1819 */
1820 int uninitialized_var(size0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 int ind;
1822 void *wqe;
1823 void *prev_wqe;
1824
1825 spin_lock_irqsave(&qp->rq.lock, flags);
1826
1827 /* XXX check that state is OK to post receive */
1828
1829 ind = qp->rq.next_ind;
1830
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001831 for (nreq = 0; wr; wr = wr->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
1833 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
1834 " %d max, %d nreq)\n", qp->qpn,
1835 qp->rq.head, qp->rq.tail,
1836 qp->rq.max, nreq);
1837 err = -ENOMEM;
1838 *bad_wr = wr;
1839 goto out;
1840 }
1841
1842 wqe = get_recv_wqe(qp, ind);
1843 prev_wqe = qp->rq.last;
1844 qp->rq.last = wqe;
1845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 ((struct mthca_next_seg *) wqe)->ee_nds =
1847 cpu_to_be32(MTHCA_NEXT_DBD);
1848 ((struct mthca_next_seg *) wqe)->flags = 0;
1849
1850 wqe += sizeof (struct mthca_next_seg);
1851 size = sizeof (struct mthca_next_seg) / 16;
1852
1853 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
1854 err = -EINVAL;
1855 *bad_wr = wr;
1856 goto out;
1857 }
1858
1859 for (i = 0; i < wr->num_sge; ++i) {
Roland Dreier80885452007-07-18 11:30:34 -07001860 mthca_set_data_seg(wqe, wr->sg_list + i);
1861 wqe += sizeof (struct mthca_data_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 size += sizeof (struct mthca_data_seg) / 16;
1863 }
1864
1865 qp->wrid[ind] = wr->wr_id;
1866
Roland Dreierd6cff022005-09-13 10:41:03 -07001867 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1868 cpu_to_be32(MTHCA_NEXT_DBD | size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Roland Dreier43509d12007-07-18 13:28:29 -07001870 if (!nreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 size0 = size;
1872
1873 ++ind;
1874 if (unlikely(ind >= qp->rq.max))
1875 ind -= qp->rq.max;
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001876
1877 ++nreq;
1878 if (unlikely(nreq == MTHCA_TAVOR_MAX_WQES_PER_RECV_DB)) {
1879 nreq = 0;
1880
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001881 wmb();
1882
Roland Dreierab8403c2007-10-14 20:40:27 -07001883 mthca_write64((qp->rq.next_ind << qp->rq.wqe_shift) | size0,
1884 qp->qpn << 8, dev->kar + MTHCA_RECEIVE_DOORBELL,
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001885 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1886
Michael S. Tsirkin3e28c562007-05-14 07:26:51 +03001887 qp->rq.next_ind = ind;
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001888 qp->rq.head += MTHCA_TAVOR_MAX_WQES_PER_RECV_DB;
Michael S. Tsirkin23f3bc02006-05-18 18:32:54 +03001889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 }
1891
1892out:
1893 if (likely(nreq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 wmb();
1895
Roland Dreierab8403c2007-10-14 20:40:27 -07001896 mthca_write64((qp->rq.next_ind << qp->rq.wqe_shift) | size0,
1897 qp->qpn << 8 | nreq, dev->kar + MTHCA_RECEIVE_DOORBELL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1899 }
1900
1901 qp->rq.next_ind = ind;
1902 qp->rq.head += nreq;
1903
Arthur Kepner1f5c23e2006-10-16 20:22:35 -07001904 /*
1905 * Make sure doorbells don't leak out of RQ spinlock and reach
1906 * the HCA out of order:
1907 */
1908 mmiowb();
1909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 spin_unlock_irqrestore(&qp->rq.lock, flags);
1911 return err;
1912}
1913
1914int mthca_arbel_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
1915 struct ib_send_wr **bad_wr)
1916{
1917 struct mthca_dev *dev = to_mdev(ibqp->device);
1918 struct mthca_qp *qp = to_mqp(ibqp);
Roland Dreierab8403c2007-10-14 20:40:27 -07001919 u32 dbhi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 void *wqe;
1921 void *prev_wqe;
1922 unsigned long flags;
1923 int err = 0;
1924 int nreq;
1925 int i;
1926 int size;
Roland Dreier6d7d0802007-07-17 19:30:51 -07001927 /*
Roland Dreier43509d12007-07-18 13:28:29 -07001928 * f0 and size0 are only used if nreq != 0, and they will
1929 * always be initialized the first time through the main loop
1930 * before nreq is incremented. So nreq cannot become non-zero
1931 * without initializing f0 and size0, and they are in fact
1932 * never used uninitialized.
Roland Dreier6d7d0802007-07-17 19:30:51 -07001933 */
Roland Dreier43509d12007-07-18 13:28:29 -07001934 int uninitialized_var(size0);
Roland Dreier6d7d0802007-07-17 19:30:51 -07001935 u32 uninitialized_var(f0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 int ind;
1937 u8 op0 = 0;
1938
1939 spin_lock_irqsave(&qp->sq.lock, flags);
1940
1941 /* XXX check that state is OK to post send */
1942
1943 ind = qp->sq.head & (qp->sq.max - 1);
1944
1945 for (nreq = 0; wr; ++nreq, wr = wr->next) {
Michael S. Tsirkine0ae9ec2005-11-29 11:33:46 -08001946 if (unlikely(nreq == MTHCA_ARBEL_MAX_WQES_PER_SEND_DB)) {
1947 nreq = 0;
1948
Roland Dreierab8403c2007-10-14 20:40:27 -07001949 dbhi = (MTHCA_ARBEL_MAX_WQES_PER_SEND_DB << 24) |
1950 ((qp->sq.head & 0xffff) << 8) | f0 | op0;
Michael S. Tsirkine0ae9ec2005-11-29 11:33:46 -08001951
1952 qp->sq.head += MTHCA_ARBEL_MAX_WQES_PER_SEND_DB;
Michael S. Tsirkine0ae9ec2005-11-29 11:33:46 -08001953
1954 /*
1955 * Make sure that descriptors are written before
1956 * doorbell record.
1957 */
1958 wmb();
1959 *qp->sq.db = cpu_to_be32(qp->sq.head & 0xffff);
1960
1961 /*
1962 * Make sure doorbell record is written before we
1963 * write MMIO send doorbell.
1964 */
1965 wmb();
Roland Dreierab8403c2007-10-14 20:40:27 -07001966
1967 mthca_write64(dbhi, (qp->qpn << 8) | size0,
Michael S. Tsirkine0ae9ec2005-11-29 11:33:46 -08001968 dev->kar + MTHCA_SEND_DOORBELL,
1969 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1970 }
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1973 mthca_err(dev, "SQ %06x full (%u head, %u tail,"
1974 " %d max, %d nreq)\n", qp->qpn,
1975 qp->sq.head, qp->sq.tail,
1976 qp->sq.max, nreq);
1977 err = -ENOMEM;
1978 *bad_wr = wr;
1979 goto out;
1980 }
1981
1982 wqe = get_send_wqe(qp, ind);
1983 prev_wqe = qp->sq.last;
1984 qp->sq.last = wqe;
1985
1986 ((struct mthca_next_seg *) wqe)->flags =
1987 ((wr->send_flags & IB_SEND_SIGNALED) ?
1988 cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) |
1989 ((wr->send_flags & IB_SEND_SOLICITED) ?
1990 cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) |
Eli Cohen680b5752008-04-16 21:01:11 -07001991 ((wr->send_flags & IB_SEND_IP_CSUM) ?
1992 cpu_to_be32(MTHCA_NEXT_IP_CSUM | MTHCA_NEXT_TCP_UDP_CSUM) : 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 cpu_to_be32(1);
1994 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1995 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
Roland Dreier0f39cf32008-04-16 21:09:32 -07001996 ((struct mthca_next_seg *) wqe)->imm = wr->ex.imm_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 wqe += sizeof (struct mthca_next_seg);
1999 size = sizeof (struct mthca_next_seg) / 16;
2000
2001 switch (qp->transport) {
Roland Dreierddb934e2005-04-16 15:26:23 -07002002 case RC:
2003 switch (wr->opcode) {
2004 case IB_WR_ATOMIC_CMP_AND_SWP:
2005 case IB_WR_ATOMIC_FETCH_AND_ADD:
Roland Dreier400ddc12007-07-18 12:55:42 -07002006 set_raddr_seg(wqe, wr->wr.atomic.remote_addr,
2007 wr->wr.atomic.rkey);
Roland Dreierddb934e2005-04-16 15:26:23 -07002008 wqe += sizeof (struct mthca_raddr_seg);
2009
Roland Dreier400ddc12007-07-18 12:55:42 -07002010 set_atomic_seg(wqe, wr);
2011 wqe += sizeof (struct mthca_atomic_seg);
Michael S. Tsirkin62abb842005-11-09 11:30:14 -08002012 size += (sizeof (struct mthca_raddr_seg) +
2013 sizeof (struct mthca_atomic_seg)) / 16;
Roland Dreierddb934e2005-04-16 15:26:23 -07002014 break;
2015
Roland Dreier9e6970b2005-06-27 14:36:42 -07002016 case IB_WR_RDMA_READ:
Roland Dreierddb934e2005-04-16 15:26:23 -07002017 case IB_WR_RDMA_WRITE:
2018 case IB_WR_RDMA_WRITE_WITH_IMM:
Roland Dreier400ddc12007-07-18 12:55:42 -07002019 set_raddr_seg(wqe, wr->wr.rdma.remote_addr,
2020 wr->wr.rdma.rkey);
2021 wqe += sizeof (struct mthca_raddr_seg);
Roland Dreier9e6970b2005-06-27 14:36:42 -07002022 size += sizeof (struct mthca_raddr_seg) / 16;
2023 break;
2024
2025 default:
2026 /* No extra segments required for sends */
2027 break;
2028 }
2029
2030 break;
2031
2032 case UC:
2033 switch (wr->opcode) {
2034 case IB_WR_RDMA_WRITE:
2035 case IB_WR_RDMA_WRITE_WITH_IMM:
Roland Dreier400ddc12007-07-18 12:55:42 -07002036 set_raddr_seg(wqe, wr->wr.rdma.remote_addr,
2037 wr->wr.rdma.rkey);
2038 wqe += sizeof (struct mthca_raddr_seg);
Roland Dreierddb934e2005-04-16 15:26:23 -07002039 size += sizeof (struct mthca_raddr_seg) / 16;
2040 break;
2041
2042 default:
2043 /* No extra segments required for sends */
2044 break;
2045 }
2046
2047 break;
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 case UD:
Roland Dreiere535c692007-07-18 13:21:14 -07002050 set_arbel_ud_seg(wqe, wr);
2051 wqe += sizeof (struct mthca_arbel_ud_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 size += sizeof (struct mthca_arbel_ud_seg) / 16;
2053 break;
2054
2055 case MLX:
2056 err = build_mlx_header(dev, to_msqp(qp), ind, wr,
2057 wqe - sizeof (struct mthca_next_seg),
2058 wqe);
2059 if (err) {
2060 *bad_wr = wr;
2061 goto out;
2062 }
2063 wqe += sizeof (struct mthca_data_seg);
2064 size += sizeof (struct mthca_data_seg) / 16;
2065 break;
2066 }
2067
2068 if (wr->num_sge > qp->sq.max_gs) {
2069 mthca_err(dev, "too many gathers\n");
2070 err = -EINVAL;
2071 *bad_wr = wr;
2072 goto out;
2073 }
2074
2075 for (i = 0; i < wr->num_sge; ++i) {
Roland Dreier80885452007-07-18 11:30:34 -07002076 mthca_set_data_seg(wqe, wr->sg_list + i);
2077 wqe += sizeof (struct mthca_data_seg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 size += sizeof (struct mthca_data_seg) / 16;
2079 }
2080
2081 /* Add one more inline data segment for ICRC */
2082 if (qp->transport == MLX) {
2083 ((struct mthca_data_seg *) wqe)->byte_count =
2084 cpu_to_be32((1 << 31) | 4);
2085 ((u32 *) wqe)[1] = 0;
2086 wqe += sizeof (struct mthca_data_seg);
2087 size += sizeof (struct mthca_data_seg) / 16;
2088 }
2089
2090 qp->wrid[ind + qp->rq.max] = wr->wr_id;
2091
2092 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
2093 mthca_err(dev, "opcode invalid\n");
2094 err = -EINVAL;
2095 *bad_wr = wr;
2096 goto out;
2097 }
2098
Roland Dreierd6cff022005-09-13 10:41:03 -07002099 ((struct mthca_next_seg *) prev_wqe)->nda_op =
2100 cpu_to_be32(((ind << qp->sq.wqe_shift) +
2101 qp->send_wqe_offset) |
2102 mthca_opcode[wr->opcode]);
2103 wmb();
2104 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
Dotan Barak7667abd12006-02-27 21:02:00 -08002105 cpu_to_be32(MTHCA_NEXT_DBD | size |
Roland Dreierb0b3a8e2006-03-24 15:47:29 -08002106 ((wr->send_flags & IB_SEND_FENCE) ?
2107 MTHCA_NEXT_FENCE : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Roland Dreier43509d12007-07-18 13:28:29 -07002109 if (!nreq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 size0 = size;
2111 op0 = mthca_opcode[wr->opcode];
Michael S. Tsirkine54b82d2006-08-10 10:46:56 -07002112 f0 = wr->send_flags & IB_SEND_FENCE ?
2113 MTHCA_SEND_DOORBELL_FENCE : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
2115
2116 ++ind;
2117 if (unlikely(ind >= qp->sq.max))
2118 ind -= qp->sq.max;
2119 }
2120
2121out:
2122 if (likely(nreq)) {
Roland Dreierab8403c2007-10-14 20:40:27 -07002123 dbhi = (nreq << 24) | ((qp->sq.head & 0xffff) << 8) | f0 | op0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
2125 qp->sq.head += nreq;
2126
2127 /*
2128 * Make sure that descriptors are written before
2129 * doorbell record.
2130 */
2131 wmb();
2132 *qp->sq.db = cpu_to_be32(qp->sq.head & 0xffff);
2133
2134 /*
2135 * Make sure doorbell record is written before we
2136 * write MMIO send doorbell.
2137 */
2138 wmb();
Roland Dreierab8403c2007-10-14 20:40:27 -07002139
2140 mthca_write64(dbhi, (qp->qpn << 8) | size0, dev->kar + MTHCA_SEND_DOORBELL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
2142 }
2143
Arthur Kepner1f5c23e2006-10-16 20:22:35 -07002144 /*
2145 * Make sure doorbells don't leak out of SQ spinlock and reach
2146 * the HCA out of order:
2147 */
2148 mmiowb();
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 spin_unlock_irqrestore(&qp->sq.lock, flags);
2151 return err;
2152}
2153
2154int mthca_arbel_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
2155 struct ib_recv_wr **bad_wr)
2156{
2157 struct mthca_dev *dev = to_mdev(ibqp->device);
2158 struct mthca_qp *qp = to_mqp(ibqp);
2159 unsigned long flags;
2160 int err = 0;
2161 int nreq;
2162 int ind;
2163 int i;
2164 void *wqe;
2165
Roland Dreier2fa5e2e2006-02-01 13:38:24 -08002166 spin_lock_irqsave(&qp->rq.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 /* XXX check that state is OK to post receive */
2169
2170 ind = qp->rq.head & (qp->rq.max - 1);
2171
2172 for (nreq = 0; wr; ++nreq, wr = wr->next) {
2173 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
2174 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
2175 " %d max, %d nreq)\n", qp->qpn,
2176 qp->rq.head, qp->rq.tail,
2177 qp->rq.max, nreq);
2178 err = -ENOMEM;
2179 *bad_wr = wr;
2180 goto out;
2181 }
2182
2183 wqe = get_recv_wqe(qp, ind);
2184
2185 ((struct mthca_next_seg *) wqe)->flags = 0;
2186
2187 wqe += sizeof (struct mthca_next_seg);
2188
2189 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
2190 err = -EINVAL;
2191 *bad_wr = wr;
2192 goto out;
2193 }
2194
2195 for (i = 0; i < wr->num_sge; ++i) {
Roland Dreier80885452007-07-18 11:30:34 -07002196 mthca_set_data_seg(wqe, wr->sg_list + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 wqe += sizeof (struct mthca_data_seg);
2198 }
2199
Roland Dreier80885452007-07-18 11:30:34 -07002200 if (i < qp->rq.max_gs)
2201 mthca_set_data_seg_inval(wqe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
2203 qp->wrid[ind] = wr->wr_id;
2204
2205 ++ind;
2206 if (unlikely(ind >= qp->rq.max))
2207 ind -= qp->rq.max;
2208 }
2209out:
2210 if (likely(nreq)) {
2211 qp->rq.head += nreq;
2212
2213 /*
2214 * Make sure that descriptors are written before
2215 * doorbell record.
2216 */
2217 wmb();
2218 *qp->rq.db = cpu_to_be32(qp->rq.head & 0xffff);
2219 }
2220
2221 spin_unlock_irqrestore(&qp->rq.lock, flags);
2222 return err;
2223}
2224
Roland Dreierd9b98b02006-01-31 20:45:51 -08002225void mthca_free_err_wqe(struct mthca_dev *dev, struct mthca_qp *qp, int is_send,
2226 int index, int *dbd, __be32 *new_wqe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
2228 struct mthca_next_seg *next;
2229
Roland Dreierec34a922005-08-19 10:59:31 -07002230 /*
Michael S. Tsirkin8b7e15772007-05-27 18:06:42 +03002231 * For SRQs, all receive WQEs generate a CQE, so we're always
2232 * at the end of the doorbell chain.
Roland Dreierec34a922005-08-19 10:59:31 -07002233 */
Michael S. Tsirkin8b7e15772007-05-27 18:06:42 +03002234 if (qp->ibqp.srq && !is_send) {
Roland Dreierec34a922005-08-19 10:59:31 -07002235 *new_wqe = 0;
Roland Dreierd9b98b02006-01-31 20:45:51 -08002236 return;
Roland Dreierec34a922005-08-19 10:59:31 -07002237 }
2238
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 if (is_send)
2240 next = get_send_wqe(qp, index);
2241 else
2242 next = get_recv_wqe(qp, index);
2243
Roland Dreier288bdeb2005-08-19 09:19:05 -07002244 *dbd = !!(next->ee_nds & cpu_to_be32(MTHCA_NEXT_DBD));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 if (next->ee_nds & cpu_to_be32(0x3f))
2246 *new_wqe = (next->nda_op & cpu_to_be32(~0x3f)) |
2247 (next->ee_nds & cpu_to_be32(0x3f));
2248 else
2249 *new_wqe = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250}
2251
Roland Dreierf4f3d0f2006-11-29 15:33:06 -08002252int mthca_init_qp_table(struct mthca_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
2254 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 int i;
2256
2257 spin_lock_init(&dev->qp_table.lock);
2258
2259 /*
2260 * We reserve 2 extra QPs per port for the special QPs. The
2261 * special QP for port 1 has to be even, so round up.
2262 */
2263 dev->qp_table.sqp_start = (dev->limits.reserved_qps + 1) & ~1UL;
2264 err = mthca_alloc_init(&dev->qp_table.alloc,
2265 dev->limits.num_qps,
2266 (1 << 24) - 1,
2267 dev->qp_table.sqp_start +
2268 MTHCA_MAX_PORTS * 2);
2269 if (err)
2270 return err;
2271
2272 err = mthca_array_init(&dev->qp_table.qp,
2273 dev->limits.num_qps);
2274 if (err) {
2275 mthca_alloc_cleanup(&dev->qp_table.alloc);
2276 return err;
2277 }
2278
2279 for (i = 0; i < 2; ++i) {
2280 err = mthca_CONF_SPECIAL_QP(dev, i ? IB_QPT_GSI : IB_QPT_SMI,
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +00002281 dev->qp_table.sqp_start + i * 2);
2282 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 mthca_warn(dev, "CONF_SPECIAL_QP returned "
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +00002284 "%d, aborting.\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 goto err_out;
2286 }
2287 }
2288 return 0;
2289
2290 err_out:
2291 for (i = 0; i < 2; ++i)
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +00002292 mthca_CONF_SPECIAL_QP(dev, i, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
2294 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps);
2295 mthca_alloc_cleanup(&dev->qp_table.alloc);
2296
2297 return err;
2298}
2299
Roland Dreiere1f78682006-03-29 09:36:46 -08002300void mthca_cleanup_qp_table(struct mthca_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301{
2302 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
2304 for (i = 0; i < 2; ++i)
Goldwyn Rodriguescdb73db2011-07-07 17:20:40 +00002305 mthca_CONF_SPECIAL_QP(dev, i, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Michael S. Tsirkin71eea472005-09-20 10:54:48 -07002307 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 mthca_alloc_cleanup(&dev->qp_table.alloc);
2309}