blob: 2ee0a2b0fd4bea99c603ad3fb9871e0d090e787f [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.
5 * 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.
34 *
35 * $Id: mthca_qp.c 1355 2004-12-17 15:23:43Z roland $
36 */
37
38#include <linux/init.h>
39
Roland Dreiera4d61e82005-08-25 13:40:04 -070040#include <rdma/ib_verbs.h>
41#include <rdma/ib_cache.h>
42#include <rdma/ib_pack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include "mthca_dev.h"
45#include "mthca_cmd.h"
46#include "mthca_memfree.h"
Roland Dreierc04bc3d2005-08-19 10:33:35 -070047#include "mthca_wqe.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49enum {
50 MTHCA_MAX_DIRECT_QP_SIZE = 4 * PAGE_SIZE,
51 MTHCA_ACK_REQ_FREQ = 10,
52 MTHCA_FLIGHT_LIMIT = 9,
Roland Dreier80c8ec22005-07-07 17:57:20 -070053 MTHCA_UD_HEADER_SIZE = 72, /* largest UD header possible */
54 MTHCA_INLINE_HEADER_SIZE = 4, /* data segment overhead for inline */
55 MTHCA_INLINE_CHUNK_SIZE = 16 /* inline data segment chunk */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
58enum {
59 MTHCA_QP_STATE_RST = 0,
60 MTHCA_QP_STATE_INIT = 1,
61 MTHCA_QP_STATE_RTR = 2,
62 MTHCA_QP_STATE_RTS = 3,
63 MTHCA_QP_STATE_SQE = 4,
64 MTHCA_QP_STATE_SQD = 5,
65 MTHCA_QP_STATE_ERR = 6,
66 MTHCA_QP_STATE_DRAINING = 7
67};
68
69enum {
70 MTHCA_QP_ST_RC = 0x0,
71 MTHCA_QP_ST_UC = 0x1,
72 MTHCA_QP_ST_RD = 0x2,
73 MTHCA_QP_ST_UD = 0x3,
74 MTHCA_QP_ST_MLX = 0x7
75};
76
77enum {
78 MTHCA_QP_PM_MIGRATED = 0x3,
79 MTHCA_QP_PM_ARMED = 0x0,
80 MTHCA_QP_PM_REARM = 0x1
81};
82
83enum {
84 /* qp_context flags */
85 MTHCA_QP_BIT_DE = 1 << 8,
86 /* params1 */
87 MTHCA_QP_BIT_SRE = 1 << 15,
88 MTHCA_QP_BIT_SWE = 1 << 14,
89 MTHCA_QP_BIT_SAE = 1 << 13,
90 MTHCA_QP_BIT_SIC = 1 << 4,
91 MTHCA_QP_BIT_SSC = 1 << 3,
92 /* params2 */
93 MTHCA_QP_BIT_RRE = 1 << 15,
94 MTHCA_QP_BIT_RWE = 1 << 14,
95 MTHCA_QP_BIT_RAE = 1 << 13,
96 MTHCA_QP_BIT_RIC = 1 << 4,
97 MTHCA_QP_BIT_RSC = 1 << 3
98};
99
100struct mthca_qp_path {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700101 __be32 port_pkey;
102 u8 rnr_retry;
103 u8 g_mylmc;
104 __be16 rlid;
105 u8 ackto;
106 u8 mgid_index;
107 u8 static_rate;
108 u8 hop_limit;
109 __be32 sl_tclass_flowlabel;
110 u8 rgid[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111} __attribute__((packed));
112
113struct mthca_qp_context {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700114 __be32 flags;
115 __be32 tavor_sched_queue; /* Reserved on Arbel */
116 u8 mtu_msgmax;
117 u8 rq_size_stride; /* Reserved on Tavor */
118 u8 sq_size_stride; /* Reserved on Tavor */
119 u8 rlkey_arbel_sched_queue; /* Reserved on Tavor */
120 __be32 usr_page;
121 __be32 local_qpn;
122 __be32 remote_qpn;
123 u32 reserved1[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 struct mthca_qp_path pri_path;
125 struct mthca_qp_path alt_path;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700126 __be32 rdd;
127 __be32 pd;
128 __be32 wqe_base;
129 __be32 wqe_lkey;
130 __be32 params1;
131 __be32 reserved2;
132 __be32 next_send_psn;
133 __be32 cqn_snd;
134 __be32 snd_wqe_base_l; /* Next send WQE on Tavor */
135 __be32 snd_db_index; /* (debugging only entries) */
136 __be32 last_acked_psn;
137 __be32 ssn;
138 __be32 params2;
139 __be32 rnr_nextrecvpsn;
140 __be32 ra_buff_indx;
141 __be32 cqn_rcv;
142 __be32 rcv_wqe_base_l; /* Next recv WQE on Tavor */
143 __be32 rcv_db_index; /* (debugging only entries) */
144 __be32 qkey;
145 __be32 srqn;
146 __be32 rmsn;
147 __be16 rq_wqe_counter; /* reserved on Tavor */
148 __be16 sq_wqe_counter; /* reserved on Tavor */
149 u32 reserved3[18];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150} __attribute__((packed));
151
152struct mthca_qp_param {
Sean Hefty97f52eb2005-08-13 21:05:57 -0700153 __be32 opt_param_mask;
154 u32 reserved1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct mthca_qp_context context;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700156 u32 reserved2[62];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157} __attribute__((packed));
158
159enum {
160 MTHCA_QP_OPTPAR_ALT_ADDR_PATH = 1 << 0,
161 MTHCA_QP_OPTPAR_RRE = 1 << 1,
162 MTHCA_QP_OPTPAR_RAE = 1 << 2,
163 MTHCA_QP_OPTPAR_RWE = 1 << 3,
164 MTHCA_QP_OPTPAR_PKEY_INDEX = 1 << 4,
165 MTHCA_QP_OPTPAR_Q_KEY = 1 << 5,
166 MTHCA_QP_OPTPAR_RNR_TIMEOUT = 1 << 6,
167 MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH = 1 << 7,
168 MTHCA_QP_OPTPAR_SRA_MAX = 1 << 8,
169 MTHCA_QP_OPTPAR_RRA_MAX = 1 << 9,
170 MTHCA_QP_OPTPAR_PM_STATE = 1 << 10,
171 MTHCA_QP_OPTPAR_PORT_NUM = 1 << 11,
172 MTHCA_QP_OPTPAR_RETRY_COUNT = 1 << 12,
173 MTHCA_QP_OPTPAR_ALT_RNR_RETRY = 1 << 13,
174 MTHCA_QP_OPTPAR_ACK_TIMEOUT = 1 << 14,
175 MTHCA_QP_OPTPAR_RNR_RETRY = 1 << 15,
176 MTHCA_QP_OPTPAR_SCHED_QUEUE = 1 << 16
177};
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179static const u8 mthca_opcode[] = {
180 [IB_WR_SEND] = MTHCA_OPCODE_SEND,
181 [IB_WR_SEND_WITH_IMM] = MTHCA_OPCODE_SEND_IMM,
182 [IB_WR_RDMA_WRITE] = MTHCA_OPCODE_RDMA_WRITE,
183 [IB_WR_RDMA_WRITE_WITH_IMM] = MTHCA_OPCODE_RDMA_WRITE_IMM,
184 [IB_WR_RDMA_READ] = MTHCA_OPCODE_RDMA_READ,
185 [IB_WR_ATOMIC_CMP_AND_SWP] = MTHCA_OPCODE_ATOMIC_CS,
186 [IB_WR_ATOMIC_FETCH_AND_ADD] = MTHCA_OPCODE_ATOMIC_FA,
187};
188
189static int is_sqp(struct mthca_dev *dev, struct mthca_qp *qp)
190{
191 return qp->qpn >= dev->qp_table.sqp_start &&
192 qp->qpn <= dev->qp_table.sqp_start + 3;
193}
194
195static int is_qp0(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 + 1;
199}
200
201static void *get_recv_wqe(struct mthca_qp *qp, int n)
202{
203 if (qp->is_direct)
204 return qp->queue.direct.buf + (n << qp->rq.wqe_shift);
205 else
206 return qp->queue.page_list[(n << qp->rq.wqe_shift) >> PAGE_SHIFT].buf +
207 ((n << qp->rq.wqe_shift) & (PAGE_SIZE - 1));
208}
209
210static void *get_send_wqe(struct mthca_qp *qp, int n)
211{
212 if (qp->is_direct)
213 return qp->queue.direct.buf + qp->send_wqe_offset +
214 (n << qp->sq.wqe_shift);
215 else
216 return qp->queue.page_list[(qp->send_wqe_offset +
217 (n << qp->sq.wqe_shift)) >>
218 PAGE_SHIFT].buf +
219 ((qp->send_wqe_offset + (n << qp->sq.wqe_shift)) &
220 (PAGE_SIZE - 1));
221}
222
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700223static void mthca_wq_init(struct mthca_wq *wq)
224{
225 spin_lock_init(&wq->lock);
226 wq->next_ind = 0;
227 wq->last_comp = wq->max - 1;
228 wq->head = 0;
229 wq->tail = 0;
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700230}
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232void mthca_qp_event(struct mthca_dev *dev, u32 qpn,
233 enum ib_event_type event_type)
234{
235 struct mthca_qp *qp;
236 struct ib_event event;
237
238 spin_lock(&dev->qp_table.lock);
239 qp = mthca_array_get(&dev->qp_table.qp, qpn & (dev->limits.num_qps - 1));
240 if (qp)
241 atomic_inc(&qp->refcount);
242 spin_unlock(&dev->qp_table.lock);
243
244 if (!qp) {
245 mthca_warn(dev, "Async event for bogus QP %08x\n", qpn);
246 return;
247 }
248
249 event.device = &dev->ib_dev;
250 event.event = event_type;
251 event.element.qp = &qp->ibqp;
252 if (qp->ibqp.event_handler)
253 qp->ibqp.event_handler(&event, qp->ibqp.qp_context);
254
255 if (atomic_dec_and_test(&qp->refcount))
256 wake_up(&qp->wait);
257}
258
259static int to_mthca_state(enum ib_qp_state ib_state)
260{
261 switch (ib_state) {
262 case IB_QPS_RESET: return MTHCA_QP_STATE_RST;
263 case IB_QPS_INIT: return MTHCA_QP_STATE_INIT;
264 case IB_QPS_RTR: return MTHCA_QP_STATE_RTR;
265 case IB_QPS_RTS: return MTHCA_QP_STATE_RTS;
266 case IB_QPS_SQD: return MTHCA_QP_STATE_SQD;
267 case IB_QPS_SQE: return MTHCA_QP_STATE_SQE;
268 case IB_QPS_ERR: return MTHCA_QP_STATE_ERR;
269 default: return -1;
270 }
271}
272
273enum { RC, UC, UD, RD, RDEE, MLX, NUM_TRANS };
274
275static int to_mthca_st(int transport)
276{
277 switch (transport) {
278 case RC: return MTHCA_QP_ST_RC;
279 case UC: return MTHCA_QP_ST_UC;
280 case UD: return MTHCA_QP_ST_UD;
281 case RD: return MTHCA_QP_ST_RD;
282 case MLX: return MTHCA_QP_ST_MLX;
283 default: return -1;
284 }
285}
286
287static const struct {
288 int trans;
289 u32 req_param[NUM_TRANS];
290 u32 opt_param[NUM_TRANS];
291} state_table[IB_QPS_ERR + 1][IB_QPS_ERR + 1] = {
292 [IB_QPS_RESET] = {
293 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
294 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
295 [IB_QPS_INIT] = {
296 .trans = MTHCA_TRANS_RST2INIT,
297 .req_param = {
298 [UD] = (IB_QP_PKEY_INDEX |
299 IB_QP_PORT |
300 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700301 [UC] = (IB_QP_PKEY_INDEX |
302 IB_QP_PORT |
303 IB_QP_ACCESS_FLAGS),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 [RC] = (IB_QP_PKEY_INDEX |
305 IB_QP_PORT |
306 IB_QP_ACCESS_FLAGS),
307 [MLX] = (IB_QP_PKEY_INDEX |
308 IB_QP_QKEY),
309 },
310 /* bug-for-bug compatibility with VAPI: */
311 .opt_param = {
312 [MLX] = IB_QP_PORT
313 }
314 },
315 },
316 [IB_QPS_INIT] = {
317 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
318 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
319 [IB_QPS_INIT] = {
320 .trans = MTHCA_TRANS_INIT2INIT,
321 .opt_param = {
322 [UD] = (IB_QP_PKEY_INDEX |
323 IB_QP_PORT |
324 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700325 [UC] = (IB_QP_PKEY_INDEX |
326 IB_QP_PORT |
327 IB_QP_ACCESS_FLAGS),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 [RC] = (IB_QP_PKEY_INDEX |
329 IB_QP_PORT |
330 IB_QP_ACCESS_FLAGS),
331 [MLX] = (IB_QP_PKEY_INDEX |
332 IB_QP_QKEY),
333 }
334 },
335 [IB_QPS_RTR] = {
336 .trans = MTHCA_TRANS_INIT2RTR,
337 .req_param = {
Roland Dreier9e6970b2005-06-27 14:36:42 -0700338 [UC] = (IB_QP_AV |
339 IB_QP_PATH_MTU |
340 IB_QP_DEST_QPN |
341 IB_QP_RQ_PSN |
342 IB_QP_MAX_DEST_RD_ATOMIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 [RC] = (IB_QP_AV |
344 IB_QP_PATH_MTU |
345 IB_QP_DEST_QPN |
346 IB_QP_RQ_PSN |
347 IB_QP_MAX_DEST_RD_ATOMIC |
348 IB_QP_MIN_RNR_TIMER),
349 },
350 .opt_param = {
351 [UD] = (IB_QP_PKEY_INDEX |
352 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700353 [UC] = (IB_QP_ALT_PATH |
354 IB_QP_ACCESS_FLAGS |
355 IB_QP_PKEY_INDEX),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 [RC] = (IB_QP_ALT_PATH |
357 IB_QP_ACCESS_FLAGS |
358 IB_QP_PKEY_INDEX),
359 [MLX] = (IB_QP_PKEY_INDEX |
360 IB_QP_QKEY),
361 }
362 }
363 },
364 [IB_QPS_RTR] = {
365 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
366 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
367 [IB_QPS_RTS] = {
368 .trans = MTHCA_TRANS_RTR2RTS,
369 .req_param = {
370 [UD] = IB_QP_SQ_PSN,
Roland Dreier9e6970b2005-06-27 14:36:42 -0700371 [UC] = (IB_QP_SQ_PSN |
372 IB_QP_MAX_QP_RD_ATOMIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 [RC] = (IB_QP_TIMEOUT |
374 IB_QP_RETRY_CNT |
375 IB_QP_RNR_RETRY |
376 IB_QP_SQ_PSN |
377 IB_QP_MAX_QP_RD_ATOMIC),
378 [MLX] = IB_QP_SQ_PSN,
379 },
380 .opt_param = {
381 [UD] = (IB_QP_CUR_STATE |
382 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700383 [UC] = (IB_QP_CUR_STATE |
384 IB_QP_ALT_PATH |
385 IB_QP_ACCESS_FLAGS |
386 IB_QP_PKEY_INDEX |
387 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 [RC] = (IB_QP_CUR_STATE |
389 IB_QP_ALT_PATH |
390 IB_QP_ACCESS_FLAGS |
391 IB_QP_PKEY_INDEX |
392 IB_QP_MIN_RNR_TIMER |
393 IB_QP_PATH_MIG_STATE),
394 [MLX] = (IB_QP_CUR_STATE |
395 IB_QP_QKEY),
396 }
397 }
398 },
399 [IB_QPS_RTS] = {
400 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
401 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
402 [IB_QPS_RTS] = {
403 .trans = MTHCA_TRANS_RTS2RTS,
404 .opt_param = {
405 [UD] = (IB_QP_CUR_STATE |
406 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700407 [UC] = (IB_QP_ACCESS_FLAGS |
408 IB_QP_ALT_PATH |
409 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 [RC] = (IB_QP_ACCESS_FLAGS |
411 IB_QP_ALT_PATH |
412 IB_QP_PATH_MIG_STATE |
413 IB_QP_MIN_RNR_TIMER),
414 [MLX] = (IB_QP_CUR_STATE |
415 IB_QP_QKEY),
416 }
417 },
418 [IB_QPS_SQD] = {
419 .trans = MTHCA_TRANS_RTS2SQD,
420 },
421 },
422 [IB_QPS_SQD] = {
423 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
424 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
425 [IB_QPS_RTS] = {
426 .trans = MTHCA_TRANS_SQD2RTS,
427 .opt_param = {
428 [UD] = (IB_QP_CUR_STATE |
429 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700430 [UC] = (IB_QP_CUR_STATE |
431 IB_QP_ALT_PATH |
432 IB_QP_ACCESS_FLAGS |
433 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 [RC] = (IB_QP_CUR_STATE |
435 IB_QP_ALT_PATH |
436 IB_QP_ACCESS_FLAGS |
437 IB_QP_MIN_RNR_TIMER |
438 IB_QP_PATH_MIG_STATE),
439 [MLX] = (IB_QP_CUR_STATE |
440 IB_QP_QKEY),
441 }
442 },
443 [IB_QPS_SQD] = {
444 .trans = MTHCA_TRANS_SQD2SQD,
445 .opt_param = {
446 [UD] = (IB_QP_PKEY_INDEX |
447 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700448 [UC] = (IB_QP_AV |
449 IB_QP_MAX_QP_RD_ATOMIC |
450 IB_QP_MAX_DEST_RD_ATOMIC |
451 IB_QP_CUR_STATE |
452 IB_QP_ALT_PATH |
453 IB_QP_ACCESS_FLAGS |
454 IB_QP_PKEY_INDEX |
455 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 [RC] = (IB_QP_AV |
457 IB_QP_TIMEOUT |
458 IB_QP_RETRY_CNT |
459 IB_QP_RNR_RETRY |
460 IB_QP_MAX_QP_RD_ATOMIC |
461 IB_QP_MAX_DEST_RD_ATOMIC |
462 IB_QP_CUR_STATE |
463 IB_QP_ALT_PATH |
464 IB_QP_ACCESS_FLAGS |
465 IB_QP_PKEY_INDEX |
466 IB_QP_MIN_RNR_TIMER |
467 IB_QP_PATH_MIG_STATE),
468 [MLX] = (IB_QP_PKEY_INDEX |
469 IB_QP_QKEY),
470 }
471 }
472 },
473 [IB_QPS_SQE] = {
474 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
475 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
476 [IB_QPS_RTS] = {
477 .trans = MTHCA_TRANS_SQERR2RTS,
478 .opt_param = {
479 [UD] = (IB_QP_CUR_STATE |
480 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700481 [UC] = (IB_QP_CUR_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 [RC] = (IB_QP_CUR_STATE |
483 IB_QP_MIN_RNR_TIMER),
484 [MLX] = (IB_QP_CUR_STATE |
485 IB_QP_QKEY),
486 }
487 }
488 },
489 [IB_QPS_ERR] = {
490 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
491 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR }
492 }
493};
494
495static void store_attrs(struct mthca_sqp *sqp, struct ib_qp_attr *attr,
496 int attr_mask)
497{
498 if (attr_mask & IB_QP_PKEY_INDEX)
499 sqp->pkey_index = attr->pkey_index;
500 if (attr_mask & IB_QP_QKEY)
501 sqp->qkey = attr->qkey;
502 if (attr_mask & IB_QP_SQ_PSN)
503 sqp->send_psn = attr->sq_psn;
504}
505
506static void init_port(struct mthca_dev *dev, int port)
507{
508 int err;
509 u8 status;
510 struct mthca_init_ib_param param;
511
512 memset(&param, 0, sizeof param);
513
Roland Dreierda6561c2005-08-17 07:39:10 -0700514 param.port_width = dev->limits.port_width_cap;
515 param.vl_cap = dev->limits.vl_cap;
516 param.mtu_cap = dev->limits.mtu_cap;
517 param.gid_cap = dev->limits.gid_table_len;
518 param.pkey_cap = dev->limits.pkey_table_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 err = mthca_INIT_IB(dev, &param, port, &status);
521 if (err)
522 mthca_warn(dev, "INIT_IB failed, return code %d.\n", err);
523 if (status)
524 mthca_warn(dev, "INIT_IB returned status %02x.\n", status);
525}
526
527int mthca_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, int attr_mask)
528{
529 struct mthca_dev *dev = to_mdev(ibqp->device);
530 struct mthca_qp *qp = to_mqp(ibqp);
531 enum ib_qp_state cur_state, new_state;
Roland Dreiered878452005-06-27 14:36:45 -0700532 struct mthca_mailbox *mailbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 struct mthca_qp_param *qp_param;
534 struct mthca_qp_context *qp_context;
535 u32 req_param, opt_param;
536 u8 status;
537 int err;
538
539 if (attr_mask & IB_QP_CUR_STATE) {
540 if (attr->cur_qp_state != IB_QPS_RTR &&
541 attr->cur_qp_state != IB_QPS_RTS &&
542 attr->cur_qp_state != IB_QPS_SQD &&
543 attr->cur_qp_state != IB_QPS_SQE)
544 return -EINVAL;
545 else
546 cur_state = attr->cur_qp_state;
547 } else {
548 spin_lock_irq(&qp->sq.lock);
549 spin_lock(&qp->rq.lock);
550 cur_state = qp->state;
551 spin_unlock(&qp->rq.lock);
552 spin_unlock_irq(&qp->sq.lock);
553 }
554
555 if (attr_mask & IB_QP_STATE) {
556 if (attr->qp_state < 0 || attr->qp_state > IB_QPS_ERR)
557 return -EINVAL;
558 new_state = attr->qp_state;
559 } else
560 new_state = cur_state;
561
562 if (state_table[cur_state][new_state].trans == MTHCA_TRANS_INVALID) {
563 mthca_dbg(dev, "Illegal QP transition "
564 "%d->%d\n", cur_state, new_state);
565 return -EINVAL;
566 }
567
568 req_param = state_table[cur_state][new_state].req_param[qp->transport];
569 opt_param = state_table[cur_state][new_state].opt_param[qp->transport];
570
571 if ((req_param & attr_mask) != req_param) {
572 mthca_dbg(dev, "QP transition "
573 "%d->%d missing req attr 0x%08x\n",
574 cur_state, new_state,
575 req_param & ~attr_mask);
576 return -EINVAL;
577 }
578
579 if (attr_mask & ~(req_param | opt_param | IB_QP_STATE)) {
580 mthca_dbg(dev, "QP transition (transport %d) "
581 "%d->%d has extra attr 0x%08x\n",
582 qp->transport,
583 cur_state, new_state,
584 attr_mask & ~(req_param | opt_param |
585 IB_QP_STATE));
586 return -EINVAL;
587 }
588
Roland Dreiered878452005-06-27 14:36:45 -0700589 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
590 if (IS_ERR(mailbox))
591 return PTR_ERR(mailbox);
592 qp_param = mailbox->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 qp_context = &qp_param->context;
594 memset(qp_param, 0, sizeof *qp_param);
595
596 qp_context->flags = cpu_to_be32((to_mthca_state(new_state) << 28) |
597 (to_mthca_st(qp->transport) << 16));
598 qp_context->flags |= cpu_to_be32(MTHCA_QP_BIT_DE);
599 if (!(attr_mask & IB_QP_PATH_MIG_STATE))
600 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
601 else {
602 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PM_STATE);
603 switch (attr->path_mig_state) {
604 case IB_MIG_MIGRATED:
605 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
606 break;
607 case IB_MIG_REARM:
608 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_REARM << 11);
609 break;
610 case IB_MIG_ARMED:
611 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_ARMED << 11);
612 break;
613 }
614 }
615
616 /* leave tavor_sched_queue as 0 */
617
618 if (qp->transport == MLX || qp->transport == UD)
619 qp_context->mtu_msgmax = (IB_MTU_2048 << 5) | 11;
620 else if (attr_mask & IB_QP_PATH_MTU)
621 qp_context->mtu_msgmax = (attr->path_mtu << 5) | 31;
622
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700623 if (mthca_is_memfree(dev)) {
Roland Dreierec34a922005-08-19 10:59:31 -0700624 if (qp->rq.max)
625 qp_context->rq_size_stride = long_log2(qp->rq.max) << 3;
626 qp_context->rq_size_stride |= qp->rq.wqe_shift - 4;
627
628 if (qp->sq.max)
629 qp_context->sq_size_stride = long_log2(qp->sq.max) << 3;
630 qp_context->sq_size_stride |= qp->sq.wqe_shift - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632
633 /* leave arbel_sched_queue as 0 */
634
Roland Dreier80c8ec22005-07-07 17:57:20 -0700635 if (qp->ibqp.uobject)
636 qp_context->usr_page =
637 cpu_to_be32(to_mucontext(qp->ibqp.uobject->context)->uar.index);
638 else
639 qp_context->usr_page = cpu_to_be32(dev->driver_uar.index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 qp_context->local_qpn = cpu_to_be32(qp->qpn);
641 if (attr_mask & IB_QP_DEST_QPN) {
642 qp_context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
643 }
644
645 if (qp->transport == MLX)
646 qp_context->pri_path.port_pkey |=
647 cpu_to_be32(to_msqp(qp)->port << 24);
648 else {
649 if (attr_mask & IB_QP_PORT) {
650 qp_context->pri_path.port_pkey |=
651 cpu_to_be32(attr->port_num << 24);
652 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PORT_NUM);
653 }
654 }
655
656 if (attr_mask & IB_QP_PKEY_INDEX) {
657 qp_context->pri_path.port_pkey |=
658 cpu_to_be32(attr->pkey_index);
659 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PKEY_INDEX);
660 }
661
662 if (attr_mask & IB_QP_RNR_RETRY) {
663 qp_context->pri_path.rnr_retry = attr->rnr_retry << 5;
664 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_RETRY);
665 }
666
667 if (attr_mask & IB_QP_AV) {
668 qp_context->pri_path.g_mylmc = attr->ah_attr.src_path_bits & 0x7f;
669 qp_context->pri_path.rlid = cpu_to_be16(attr->ah_attr.dlid);
Roland Dreiercd123d72005-06-27 14:36:40 -0700670 qp_context->pri_path.static_rate = !!attr->ah_attr.static_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (attr->ah_attr.ah_flags & IB_AH_GRH) {
672 qp_context->pri_path.g_mylmc |= 1 << 7;
673 qp_context->pri_path.mgid_index = attr->ah_attr.grh.sgid_index;
674 qp_context->pri_path.hop_limit = attr->ah_attr.grh.hop_limit;
675 qp_context->pri_path.sl_tclass_flowlabel =
676 cpu_to_be32((attr->ah_attr.sl << 28) |
677 (attr->ah_attr.grh.traffic_class << 20) |
678 (attr->ah_attr.grh.flow_label));
679 memcpy(qp_context->pri_path.rgid,
680 attr->ah_attr.grh.dgid.raw, 16);
681 } else {
682 qp_context->pri_path.sl_tclass_flowlabel =
683 cpu_to_be32(attr->ah_attr.sl << 28);
684 }
685 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH);
686 }
687
688 if (attr_mask & IB_QP_TIMEOUT) {
Roland Dreierbb4a7f02005-09-12 14:08:51 -0700689 qp_context->pri_path.ackto = attr->timeout << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_ACK_TIMEOUT);
691 }
692
693 /* XXX alt_path */
694
695 /* leave rdd as 0 */
696 qp_context->pd = cpu_to_be32(to_mpd(ibqp->pd)->pd_num);
697 /* leave wqe_base as 0 (we always create an MR based at 0 for WQs) */
698 qp_context->wqe_lkey = cpu_to_be32(qp->mr.ibmr.lkey);
699 qp_context->params1 = cpu_to_be32((MTHCA_ACK_REQ_FREQ << 28) |
700 (MTHCA_FLIGHT_LIMIT << 24) |
701 MTHCA_QP_BIT_SRE |
702 MTHCA_QP_BIT_SWE |
703 MTHCA_QP_BIT_SAE);
704 if (qp->sq_policy == IB_SIGNAL_ALL_WR)
705 qp_context->params1 |= cpu_to_be32(MTHCA_QP_BIT_SSC);
706 if (attr_mask & IB_QP_RETRY_CNT) {
707 qp_context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
708 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RETRY_COUNT);
709 }
710
Roland Dreier34a4a752005-06-27 14:36:41 -0700711 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
712 qp_context->params1 |= cpu_to_be32(min(attr->max_rd_atomic ?
713 ffs(attr->max_rd_atomic) - 1 : 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 7) << 21);
715 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_SRA_MAX);
716 }
717
718 if (attr_mask & IB_QP_SQ_PSN)
719 qp_context->next_send_psn = cpu_to_be32(attr->sq_psn);
720 qp_context->cqn_snd = cpu_to_be32(to_mcq(ibqp->send_cq)->cqn);
721
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700722 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 qp_context->snd_wqe_base_l = cpu_to_be32(qp->send_wqe_offset);
724 qp_context->snd_db_index = cpu_to_be32(qp->sq.db_index);
725 }
726
727 if (attr_mask & IB_QP_ACCESS_FLAGS) {
728 /*
729 * Only enable RDMA/atomics if we have responder
730 * resources set to a non-zero value.
731 */
732 if (qp->resp_depth) {
733 qp_context->params2 |=
734 cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_WRITE ?
735 MTHCA_QP_BIT_RWE : 0);
736 qp_context->params2 |=
737 cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_READ ?
738 MTHCA_QP_BIT_RRE : 0);
739 qp_context->params2 |=
740 cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_ATOMIC ?
741 MTHCA_QP_BIT_RAE : 0);
742 }
743
744 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
745 MTHCA_QP_OPTPAR_RRE |
746 MTHCA_QP_OPTPAR_RAE);
747
748 qp->atomic_rd_en = attr->qp_access_flags;
749 }
750
Roland Dreier34a4a752005-06-27 14:36:41 -0700751 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 u8 rra_max;
753
Roland Dreier34a4a752005-06-27 14:36:41 -0700754 if (qp->resp_depth && !attr->max_dest_rd_atomic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 /*
756 * Lowering our responder resources to zero.
757 * Turn off RDMA/atomics as responder.
758 * (RWE/RRE/RAE in params2 already zero)
759 */
760 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
761 MTHCA_QP_OPTPAR_RRE |
762 MTHCA_QP_OPTPAR_RAE);
763 }
764
Roland Dreier34a4a752005-06-27 14:36:41 -0700765 if (!qp->resp_depth && attr->max_dest_rd_atomic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 /*
767 * Increasing our responder resources from
768 * zero. Turn on RDMA/atomics as appropriate.
769 */
770 qp_context->params2 |=
771 cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_WRITE ?
772 MTHCA_QP_BIT_RWE : 0);
773 qp_context->params2 |=
774 cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_READ ?
775 MTHCA_QP_BIT_RRE : 0);
776 qp_context->params2 |=
777 cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_ATOMIC ?
778 MTHCA_QP_BIT_RAE : 0);
779
780 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
781 MTHCA_QP_OPTPAR_RRE |
782 MTHCA_QP_OPTPAR_RAE);
783 }
784
785 for (rra_max = 0;
Roland Dreier34a4a752005-06-27 14:36:41 -0700786 1 << rra_max < attr->max_dest_rd_atomic &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 rra_max < dev->qp_table.rdb_shift;
788 ++rra_max)
789 ; /* nothing */
790
791 qp_context->params2 |= cpu_to_be32(rra_max << 21);
792 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RRA_MAX);
793
Roland Dreier34a4a752005-06-27 14:36:41 -0700794 qp->resp_depth = attr->max_dest_rd_atomic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796
797 qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RSC);
798
Roland Dreierec34a922005-08-19 10:59:31 -0700799 if (ibqp->srq)
800 qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RIC);
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (attr_mask & IB_QP_MIN_RNR_TIMER) {
803 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
804 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_TIMEOUT);
805 }
806 if (attr_mask & IB_QP_RQ_PSN)
807 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
808
809 qp_context->ra_buff_indx =
810 cpu_to_be32(dev->qp_table.rdb_base +
811 ((qp->qpn & (dev->limits.num_qps - 1)) * MTHCA_RDB_ENTRY_SIZE <<
812 dev->qp_table.rdb_shift));
813
814 qp_context->cqn_rcv = cpu_to_be32(to_mcq(ibqp->recv_cq)->cqn);
815
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700816 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 qp_context->rcv_db_index = cpu_to_be32(qp->rq.db_index);
818
819 if (attr_mask & IB_QP_QKEY) {
820 qp_context->qkey = cpu_to_be32(attr->qkey);
821 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_Q_KEY);
822 }
823
Roland Dreierec34a922005-08-19 10:59:31 -0700824 if (ibqp->srq)
825 qp_context->srqn = cpu_to_be32(1 << 24 |
826 to_msrq(ibqp->srq)->srqn);
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 err = mthca_MODIFY_QP(dev, state_table[cur_state][new_state].trans,
Roland Dreiered878452005-06-27 14:36:45 -0700829 qp->qpn, 0, mailbox, 0, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (status) {
831 mthca_warn(dev, "modify QP %d returned status %02x.\n",
832 state_table[cur_state][new_state].trans, status);
833 err = -EINVAL;
834 }
835
836 if (!err)
837 qp->state = new_state;
838
Roland Dreiered878452005-06-27 14:36:45 -0700839 mthca_free_mailbox(dev, mailbox);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 if (is_sqp(dev, qp))
842 store_attrs(to_msqp(qp), attr, attr_mask);
843
844 /*
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700845 * If we moved QP0 to RTR, bring the IB link up; if we moved
846 * QP0 to RESET or ERROR, bring the link back down.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
848 if (is_qp0(dev, qp)) {
849 if (cur_state != IB_QPS_RTR &&
850 new_state == IB_QPS_RTR)
851 init_port(dev, to_msqp(qp)->port);
852
853 if (cur_state != IB_QPS_RESET &&
854 cur_state != IB_QPS_ERR &&
855 (new_state == IB_QPS_RESET ||
856 new_state == IB_QPS_ERR))
857 mthca_CLOSE_IB(dev, to_msqp(qp)->port, &status);
858 }
859
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700860 /*
861 * If we moved a kernel QP to RESET, clean up all old CQ
862 * entries and reinitialize the QP.
863 */
864 if (!err && new_state == IB_QPS_RESET && !qp->ibqp.uobject) {
865 mthca_cq_clean(dev, to_mcq(qp->ibqp.send_cq)->cqn, qp->qpn,
866 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
867 if (qp->ibqp.send_cq != qp->ibqp.recv_cq)
868 mthca_cq_clean(dev, to_mcq(qp->ibqp.recv_cq)->cqn, qp->qpn,
869 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
870
871 mthca_wq_init(&qp->sq);
872 mthca_wq_init(&qp->rq);
873
874 if (mthca_is_memfree(dev)) {
875 *qp->sq.db = 0;
876 *qp->rq.db = 0;
877 }
878 }
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return err;
881}
882
883/*
884 * Allocate and register buffer for WQEs. qp->rq.max, sq.max,
885 * rq.max_gs and sq.max_gs must all be assigned.
886 * mthca_alloc_wqe_buf will calculate rq.wqe_shift and
887 * sq.wqe_shift (as well as send_wqe_offset, is_direct, and
888 * queue)
889 */
890static int mthca_alloc_wqe_buf(struct mthca_dev *dev,
891 struct mthca_pd *pd,
892 struct mthca_qp *qp)
893{
894 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 int err = -ENOMEM;
896
897 size = sizeof (struct mthca_next_seg) +
898 qp->rq.max_gs * sizeof (struct mthca_data_seg);
899
900 for (qp->rq.wqe_shift = 6; 1 << qp->rq.wqe_shift < size;
901 qp->rq.wqe_shift++)
902 ; /* nothing */
903
904 size = sizeof (struct mthca_next_seg) +
905 qp->sq.max_gs * sizeof (struct mthca_data_seg);
906 switch (qp->transport) {
907 case MLX:
908 size += 2 * sizeof (struct mthca_data_seg);
909 break;
910 case UD:
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700911 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 size += sizeof (struct mthca_arbel_ud_seg);
913 else
914 size += sizeof (struct mthca_tavor_ud_seg);
915 break;
916 default:
917 /* bind seg is as big as atomic + raddr segs */
918 size += sizeof (struct mthca_bind_seg);
919 }
920
921 for (qp->sq.wqe_shift = 6; 1 << qp->sq.wqe_shift < size;
922 qp->sq.wqe_shift++)
923 ; /* nothing */
924
925 qp->send_wqe_offset = ALIGN(qp->rq.max << qp->rq.wqe_shift,
926 1 << qp->sq.wqe_shift);
Roland Dreier80c8ec22005-07-07 17:57:20 -0700927
928 /*
929 * If this is a userspace QP, we don't actually have to
930 * allocate anything. All we need is to calculate the WQE
931 * sizes and the send_wqe_offset, so we're done now.
932 */
933 if (pd->ibpd.uobject)
934 return 0;
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 size = PAGE_ALIGN(qp->send_wqe_offset +
937 (qp->sq.max << qp->sq.wqe_shift));
938
939 qp->wrid = kmalloc((qp->rq.max + qp->sq.max) * sizeof (u64),
940 GFP_KERNEL);
941 if (!qp->wrid)
942 goto err_out;
943
Roland Dreier87b81672005-08-18 13:39:31 -0700944 err = mthca_buf_alloc(dev, size, MTHCA_MAX_DIRECT_QP_SIZE,
945 &qp->queue, &qp->is_direct, pd, 0, &qp->mr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (err)
Roland Dreier87b81672005-08-18 13:39:31 -0700947 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return 0;
950
Roland Dreier87b81672005-08-18 13:39:31 -0700951err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 kfree(qp->wrid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return err;
954}
955
Roland Dreier80c8ec22005-07-07 17:57:20 -0700956static void mthca_free_wqe_buf(struct mthca_dev *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 struct mthca_qp *qp)
958{
Roland Dreier87b81672005-08-18 13:39:31 -0700959 mthca_buf_free(dev, PAGE_ALIGN(qp->send_wqe_offset +
960 (qp->sq.max << qp->sq.wqe_shift)),
961 &qp->queue, qp->is_direct, &qp->mr);
Roland Dreier80c8ec22005-07-07 17:57:20 -0700962 kfree(qp->wrid);
963}
964
965static int mthca_map_memfree(struct mthca_dev *dev,
966 struct mthca_qp *qp)
967{
968 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700970 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 ret = mthca_table_get(dev, dev->qp_table.qp_table, qp->qpn);
972 if (ret)
973 return ret;
974
975 ret = mthca_table_get(dev, dev->qp_table.eqp_table, qp->qpn);
976 if (ret)
977 goto err_qpc;
978
Roland Dreier80c8ec22005-07-07 17:57:20 -0700979 ret = mthca_table_get(dev, dev->qp_table.rdb_table,
980 qp->qpn << dev->qp_table.rdb_shift);
981 if (ret)
982 goto err_eqpc;
Roland Dreier08aeb142005-04-16 15:26:34 -0700983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
985
986 return 0;
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988err_eqpc:
989 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
990
991err_qpc:
992 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
993
994 return ret;
995}
996
Roland Dreier80c8ec22005-07-07 17:57:20 -0700997static void mthca_unmap_memfree(struct mthca_dev *dev,
998 struct mthca_qp *qp)
999{
1000 mthca_table_put(dev, dev->qp_table.rdb_table,
1001 qp->qpn << dev->qp_table.rdb_shift);
1002 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
1003 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
1004}
1005
1006static int mthca_alloc_memfree(struct mthca_dev *dev,
1007 struct mthca_qp *qp)
1008{
1009 int ret = 0;
1010
1011 if (mthca_is_memfree(dev)) {
1012 qp->rq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_RQ,
1013 qp->qpn, &qp->rq.db);
1014 if (qp->rq.db_index < 0)
1015 return ret;
1016
1017 qp->sq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_SQ,
1018 qp->qpn, &qp->sq.db);
1019 if (qp->sq.db_index < 0)
1020 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
1021 }
1022
1023 return ret;
1024}
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026static void mthca_free_memfree(struct mthca_dev *dev,
1027 struct mthca_qp *qp)
1028{
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001029 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 mthca_free_db(dev, MTHCA_DB_TYPE_SQ, qp->sq.db_index);
1031 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033}
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035static int mthca_alloc_qp_common(struct mthca_dev *dev,
1036 struct mthca_pd *pd,
1037 struct mthca_cq *send_cq,
1038 struct mthca_cq *recv_cq,
1039 enum ib_sig_type send_policy,
1040 struct mthca_qp *qp)
1041{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 int ret;
1043 int i;
1044
1045 atomic_set(&qp->refcount, 1);
Michael S. Tsirkin30a7e8e2005-09-07 09:45:00 -07001046 init_waitqueue_head(&qp->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 qp->state = IB_QPS_RESET;
1048 qp->atomic_rd_en = 0;
1049 qp->resp_depth = 0;
1050 qp->sq_policy = send_policy;
1051 mthca_wq_init(&qp->sq);
1052 mthca_wq_init(&qp->rq);
1053
Roland Dreier80c8ec22005-07-07 17:57:20 -07001054 ret = mthca_map_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (ret)
1056 return ret;
1057
1058 ret = mthca_alloc_wqe_buf(dev, pd, qp);
1059 if (ret) {
Roland Dreier80c8ec22005-07-07 17:57:20 -07001060 mthca_unmap_memfree(dev, qp);
1061 return ret;
1062 }
1063
1064 /*
1065 * If this is a userspace QP, we're done now. The doorbells
1066 * will be allocated and buffers will be initialized in
1067 * userspace.
1068 */
1069 if (pd->ibpd.uobject)
1070 return 0;
1071
1072 ret = mthca_alloc_memfree(dev, qp);
1073 if (ret) {
1074 mthca_free_wqe_buf(dev, qp);
1075 mthca_unmap_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return ret;
1077 }
1078
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001079 if (mthca_is_memfree(dev)) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001080 struct mthca_next_seg *next;
1081 struct mthca_data_seg *scatter;
1082 int size = (sizeof (struct mthca_next_seg) +
1083 qp->rq.max_gs * sizeof (struct mthca_data_seg)) / 16;
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 for (i = 0; i < qp->rq.max; ++i) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001086 next = get_recv_wqe(qp, i);
1087 next->nda_op = cpu_to_be32(((i + 1) & (qp->rq.max - 1)) <<
1088 qp->rq.wqe_shift);
1089 next->ee_nds = cpu_to_be32(size);
1090
1091 for (scatter = (void *) (next + 1);
1092 (void *) scatter < (void *) next + (1 << qp->rq.wqe_shift);
1093 ++scatter)
1094 scatter->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
1096
1097 for (i = 0; i < qp->sq.max; ++i) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001098 next = get_send_wqe(qp, i);
1099 next->nda_op = cpu_to_be32((((i + 1) & (qp->sq.max - 1)) <<
1100 qp->sq.wqe_shift) +
1101 qp->send_wqe_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
1103 }
1104
Roland Dreierd6cff022005-09-13 10:41:03 -07001105 qp->sq.last = get_send_wqe(qp, qp->sq.max - 1);
1106 qp->rq.last = get_recv_wqe(qp, qp->rq.max - 1);
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return 0;
1109}
1110
Roland Dreier80c8ec22005-07-07 17:57:20 -07001111static int mthca_set_qp_size(struct mthca_dev *dev, struct ib_qp_cap *cap,
1112 struct mthca_qp *qp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Roland Dreier80c8ec22005-07-07 17:57:20 -07001114 /* Sanity check QP size before proceeding */
Jack Morgensteinefaae8f2005-10-10 13:48:07 -07001115 if (cap->max_send_wr > dev->limits.max_wqes ||
1116 cap->max_recv_wr > dev->limits.max_wqes ||
1117 cap->max_send_sge > dev->limits.max_sg ||
1118 cap->max_recv_sge > dev->limits.max_sg)
Roland Dreier80c8ec22005-07-07 17:57:20 -07001119 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Roland Dreier80c8ec22005-07-07 17:57:20 -07001121 if (mthca_is_memfree(dev)) {
1122 qp->rq.max = cap->max_recv_wr ?
1123 roundup_pow_of_two(cap->max_recv_wr) : 0;
1124 qp->sq.max = cap->max_send_wr ?
1125 roundup_pow_of_two(cap->max_send_wr) : 0;
1126 } else {
1127 qp->rq.max = cap->max_recv_wr;
1128 qp->sq.max = cap->max_send_wr;
1129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Roland Dreier80c8ec22005-07-07 17:57:20 -07001131 qp->rq.max_gs = cap->max_recv_sge;
1132 qp->sq.max_gs = max_t(int, cap->max_send_sge,
1133 ALIGN(cap->max_inline_data + MTHCA_INLINE_HEADER_SIZE,
1134 MTHCA_INLINE_CHUNK_SIZE) /
1135 sizeof (struct mthca_data_seg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Roland Dreier80c8ec22005-07-07 17:57:20 -07001137 /*
1138 * For MLX transport we need 2 extra S/G entries:
1139 * one for the header and one for the checksum at the end
1140 */
1141 if ((qp->transport == MLX && qp->sq.max_gs + 2 > dev->limits.max_sg) ||
1142 qp->sq.max_gs > dev->limits.max_sg || qp->rq.max_gs > dev->limits.max_sg)
1143 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Roland Dreier80c8ec22005-07-07 17:57:20 -07001145 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
1148int mthca_alloc_qp(struct mthca_dev *dev,
1149 struct mthca_pd *pd,
1150 struct mthca_cq *send_cq,
1151 struct mthca_cq *recv_cq,
1152 enum ib_qp_type type,
1153 enum ib_sig_type send_policy,
Roland Dreier80c8ec22005-07-07 17:57:20 -07001154 struct ib_qp_cap *cap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 struct mthca_qp *qp)
1156{
1157 int err;
1158
Roland Dreier80c8ec22005-07-07 17:57:20 -07001159 err = mthca_set_qp_size(dev, cap, qp);
1160 if (err)
1161 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 switch (type) {
1164 case IB_QPT_RC: qp->transport = RC; break;
1165 case IB_QPT_UC: qp->transport = UC; break;
1166 case IB_QPT_UD: qp->transport = UD; break;
1167 default: return -EINVAL;
1168 }
1169
1170 qp->qpn = mthca_alloc(&dev->qp_table.alloc);
1171 if (qp->qpn == -1)
1172 return -ENOMEM;
1173
1174 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1175 send_policy, qp);
1176 if (err) {
1177 mthca_free(&dev->qp_table.alloc, qp->qpn);
1178 return err;
1179 }
1180
1181 spin_lock_irq(&dev->qp_table.lock);
1182 mthca_array_set(&dev->qp_table.qp,
1183 qp->qpn & (dev->limits.num_qps - 1), qp);
1184 spin_unlock_irq(&dev->qp_table.lock);
1185
1186 return 0;
1187}
1188
1189int mthca_alloc_sqp(struct mthca_dev *dev,
1190 struct mthca_pd *pd,
1191 struct mthca_cq *send_cq,
1192 struct mthca_cq *recv_cq,
1193 enum ib_sig_type send_policy,
Roland Dreier80c8ec22005-07-07 17:57:20 -07001194 struct ib_qp_cap *cap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 int qpn,
1196 int port,
1197 struct mthca_sqp *sqp)
1198{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 u32 mqpn = qpn * 2 + dev->qp_table.sqp_start + port - 1;
Roland Dreier80c8ec22005-07-07 17:57:20 -07001200 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Roland Dreier80c8ec22005-07-07 17:57:20 -07001202 err = mthca_set_qp_size(dev, cap, &sqp->qp);
1203 if (err)
1204 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 sqp->header_buf_size = sqp->qp.sq.max * MTHCA_UD_HEADER_SIZE;
1207 sqp->header_buf = dma_alloc_coherent(&dev->pdev->dev, sqp->header_buf_size,
1208 &sqp->header_dma, GFP_KERNEL);
1209 if (!sqp->header_buf)
1210 return -ENOMEM;
1211
1212 spin_lock_irq(&dev->qp_table.lock);
1213 if (mthca_array_get(&dev->qp_table.qp, mqpn))
1214 err = -EBUSY;
1215 else
1216 mthca_array_set(&dev->qp_table.qp, mqpn, sqp);
1217 spin_unlock_irq(&dev->qp_table.lock);
1218
1219 if (err)
1220 goto err_out;
1221
1222 sqp->port = port;
1223 sqp->qp.qpn = mqpn;
1224 sqp->qp.transport = MLX;
1225
1226 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1227 send_policy, &sqp->qp);
1228 if (err)
1229 goto err_out_free;
1230
1231 atomic_inc(&pd->sqp_count);
1232
1233 return 0;
1234
1235 err_out_free:
1236 /*
1237 * Lock CQs here, so that CQ polling code can do QP lookup
1238 * without taking a lock.
1239 */
1240 spin_lock_irq(&send_cq->lock);
1241 if (send_cq != recv_cq)
1242 spin_lock(&recv_cq->lock);
1243
1244 spin_lock(&dev->qp_table.lock);
1245 mthca_array_clear(&dev->qp_table.qp, mqpn);
1246 spin_unlock(&dev->qp_table.lock);
1247
1248 if (send_cq != recv_cq)
1249 spin_unlock(&recv_cq->lock);
1250 spin_unlock_irq(&send_cq->lock);
1251
1252 err_out:
1253 dma_free_coherent(&dev->pdev->dev, sqp->header_buf_size,
1254 sqp->header_buf, sqp->header_dma);
1255
1256 return err;
1257}
1258
1259void mthca_free_qp(struct mthca_dev *dev,
1260 struct mthca_qp *qp)
1261{
1262 u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 struct mthca_cq *send_cq;
1264 struct mthca_cq *recv_cq;
1265
1266 send_cq = to_mcq(qp->ibqp.send_cq);
1267 recv_cq = to_mcq(qp->ibqp.recv_cq);
1268
1269 /*
1270 * Lock CQs here, so that CQ polling code can do QP lookup
1271 * without taking a lock.
1272 */
1273 spin_lock_irq(&send_cq->lock);
1274 if (send_cq != recv_cq)
1275 spin_lock(&recv_cq->lock);
1276
1277 spin_lock(&dev->qp_table.lock);
1278 mthca_array_clear(&dev->qp_table.qp,
1279 qp->qpn & (dev->limits.num_qps - 1));
1280 spin_unlock(&dev->qp_table.lock);
1281
1282 if (send_cq != recv_cq)
1283 spin_unlock(&recv_cq->lock);
1284 spin_unlock_irq(&send_cq->lock);
1285
1286 atomic_dec(&qp->refcount);
1287 wait_event(qp->wait, !atomic_read(&qp->refcount));
1288
1289 if (qp->state != IB_QPS_RESET)
1290 mthca_MODIFY_QP(dev, MTHCA_TRANS_ANY2RST, qp->qpn, 0, NULL, 0, &status);
1291
Roland Dreier80c8ec22005-07-07 17:57:20 -07001292 /*
1293 * If this is a userspace QP, the buffers, MR, CQs and so on
1294 * will be cleaned up in userspace, so all we have to do is
1295 * unref the mem-free tables and free the QPN in our table.
1296 */
1297 if (!qp->ibqp.uobject) {
Roland Dreierec34a922005-08-19 10:59:31 -07001298 mthca_cq_clean(dev, to_mcq(qp->ibqp.send_cq)->cqn, qp->qpn,
1299 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
Roland Dreier80c8ec22005-07-07 17:57:20 -07001300 if (qp->ibqp.send_cq != qp->ibqp.recv_cq)
Roland Dreierec34a922005-08-19 10:59:31 -07001301 mthca_cq_clean(dev, to_mcq(qp->ibqp.recv_cq)->cqn, qp->qpn,
1302 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Roland Dreier80c8ec22005-07-07 17:57:20 -07001304 mthca_free_memfree(dev, qp);
1305 mthca_free_wqe_buf(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
1307
Roland Dreier80c8ec22005-07-07 17:57:20 -07001308 mthca_unmap_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 if (is_sqp(dev, qp)) {
1311 atomic_dec(&(to_mpd(qp->ibqp.pd)->sqp_count));
1312 dma_free_coherent(&dev->pdev->dev,
1313 to_msqp(qp)->header_buf_size,
1314 to_msqp(qp)->header_buf,
1315 to_msqp(qp)->header_dma);
1316 } else
1317 mthca_free(&dev->qp_table.alloc, qp->qpn);
1318}
1319
1320/* Create UD header for an MLX send and build a data segment for it */
1321static int build_mlx_header(struct mthca_dev *dev, struct mthca_sqp *sqp,
1322 int ind, struct ib_send_wr *wr,
1323 struct mthca_mlx_seg *mlx,
1324 struct mthca_data_seg *data)
1325{
1326 int header_size;
1327 int err;
Sean Hefty97f52eb2005-08-13 21:05:57 -07001328 u16 pkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 ib_ud_header_init(256, /* assume a MAD */
1331 sqp->ud_header.grh_present,
1332 &sqp->ud_header);
1333
1334 err = mthca_read_ah(dev, to_mah(wr->wr.ud.ah), &sqp->ud_header);
1335 if (err)
1336 return err;
1337 mlx->flags &= ~cpu_to_be32(MTHCA_NEXT_SOLICIT | 1);
1338 mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MTHCA_MLX_VL15 : 0) |
Sean Hefty97f52eb2005-08-13 21:05:57 -07001339 (sqp->ud_header.lrh.destination_lid ==
1340 IB_LID_PERMISSIVE ? MTHCA_MLX_SLR : 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 (sqp->ud_header.lrh.service_level << 8));
1342 mlx->rlid = sqp->ud_header.lrh.destination_lid;
1343 mlx->vcrc = 0;
1344
1345 switch (wr->opcode) {
1346 case IB_WR_SEND:
1347 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
1348 sqp->ud_header.immediate_present = 0;
1349 break;
1350 case IB_WR_SEND_WITH_IMM:
1351 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
1352 sqp->ud_header.immediate_present = 1;
1353 sqp->ud_header.immediate_data = wr->imm_data;
1354 break;
1355 default:
1356 return -EINVAL;
1357 }
1358
1359 sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0;
Sean Hefty97f52eb2005-08-13 21:05:57 -07001360 if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE)
1361 sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
1363 if (!sqp->qp.ibqp.qp_num)
1364 ib_get_cached_pkey(&dev->ib_dev, sqp->port,
Sean Hefty97f52eb2005-08-13 21:05:57 -07001365 sqp->pkey_index, &pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 else
1367 ib_get_cached_pkey(&dev->ib_dev, sqp->port,
Sean Hefty97f52eb2005-08-13 21:05:57 -07001368 wr->wr.ud.pkey_index, &pkey);
1369 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
1371 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
1372 sqp->ud_header.deth.qkey = cpu_to_be32(wr->wr.ud.remote_qkey & 0x80000000 ?
1373 sqp->qkey : wr->wr.ud.remote_qkey);
1374 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
1375
1376 header_size = ib_ud_header_pack(&sqp->ud_header,
1377 sqp->header_buf +
1378 ind * MTHCA_UD_HEADER_SIZE);
1379
1380 data->byte_count = cpu_to_be32(header_size);
1381 data->lkey = cpu_to_be32(to_mpd(sqp->qp.ibqp.pd)->ntmr.ibmr.lkey);
1382 data->addr = cpu_to_be64(sqp->header_dma +
1383 ind * MTHCA_UD_HEADER_SIZE);
1384
1385 return 0;
1386}
1387
1388static inline int mthca_wq_overflow(struct mthca_wq *wq, int nreq,
1389 struct ib_cq *ib_cq)
1390{
1391 unsigned cur;
1392 struct mthca_cq *cq;
1393
1394 cur = wq->head - wq->tail;
1395 if (likely(cur + nreq < wq->max))
1396 return 0;
1397
1398 cq = to_mcq(ib_cq);
1399 spin_lock(&cq->lock);
1400 cur = wq->head - wq->tail;
1401 spin_unlock(&cq->lock);
1402
1403 return cur + nreq >= wq->max;
1404}
1405
1406int mthca_tavor_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
1407 struct ib_send_wr **bad_wr)
1408{
1409 struct mthca_dev *dev = to_mdev(ibqp->device);
1410 struct mthca_qp *qp = to_mqp(ibqp);
1411 void *wqe;
1412 void *prev_wqe;
1413 unsigned long flags;
1414 int err = 0;
1415 int nreq;
1416 int i;
1417 int size;
1418 int size0 = 0;
1419 u32 f0 = 0;
1420 int ind;
1421 u8 op0 = 0;
1422
1423 spin_lock_irqsave(&qp->sq.lock, flags);
1424
1425 /* XXX check that state is OK to post send */
1426
1427 ind = qp->sq.next_ind;
1428
1429 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1430 if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1431 mthca_err(dev, "SQ %06x full (%u head, %u tail,"
1432 " %d max, %d nreq)\n", qp->qpn,
1433 qp->sq.head, qp->sq.tail,
1434 qp->sq.max, nreq);
1435 err = -ENOMEM;
1436 *bad_wr = wr;
1437 goto out;
1438 }
1439
1440 wqe = get_send_wqe(qp, ind);
1441 prev_wqe = qp->sq.last;
1442 qp->sq.last = wqe;
1443
1444 ((struct mthca_next_seg *) wqe)->nda_op = 0;
1445 ((struct mthca_next_seg *) wqe)->ee_nds = 0;
1446 ((struct mthca_next_seg *) wqe)->flags =
1447 ((wr->send_flags & IB_SEND_SIGNALED) ?
1448 cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) |
1449 ((wr->send_flags & IB_SEND_SOLICITED) ?
1450 cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) |
1451 cpu_to_be32(1);
1452 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1453 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
Roland Dreier3fba2312005-04-16 15:26:16 -07001454 ((struct mthca_next_seg *) wqe)->imm = wr->imm_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 wqe += sizeof (struct mthca_next_seg);
1457 size = sizeof (struct mthca_next_seg) / 16;
1458
1459 switch (qp->transport) {
1460 case RC:
1461 switch (wr->opcode) {
1462 case IB_WR_ATOMIC_CMP_AND_SWP:
1463 case IB_WR_ATOMIC_FETCH_AND_ADD:
1464 ((struct mthca_raddr_seg *) wqe)->raddr =
1465 cpu_to_be64(wr->wr.atomic.remote_addr);
1466 ((struct mthca_raddr_seg *) wqe)->rkey =
1467 cpu_to_be32(wr->wr.atomic.rkey);
1468 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1469
1470 wqe += sizeof (struct mthca_raddr_seg);
1471
1472 if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
1473 ((struct mthca_atomic_seg *) wqe)->swap_add =
1474 cpu_to_be64(wr->wr.atomic.swap);
1475 ((struct mthca_atomic_seg *) wqe)->compare =
1476 cpu_to_be64(wr->wr.atomic.compare_add);
1477 } else {
1478 ((struct mthca_atomic_seg *) wqe)->swap_add =
1479 cpu_to_be64(wr->wr.atomic.compare_add);
1480 ((struct mthca_atomic_seg *) wqe)->compare = 0;
1481 }
1482
1483 wqe += sizeof (struct mthca_atomic_seg);
1484 size += sizeof (struct mthca_raddr_seg) / 16 +
1485 sizeof (struct mthca_atomic_seg);
1486 break;
1487
1488 case IB_WR_RDMA_WRITE:
1489 case IB_WR_RDMA_WRITE_WITH_IMM:
1490 case IB_WR_RDMA_READ:
1491 ((struct mthca_raddr_seg *) wqe)->raddr =
1492 cpu_to_be64(wr->wr.rdma.remote_addr);
1493 ((struct mthca_raddr_seg *) wqe)->rkey =
1494 cpu_to_be32(wr->wr.rdma.rkey);
1495 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1496 wqe += sizeof (struct mthca_raddr_seg);
1497 size += sizeof (struct mthca_raddr_seg) / 16;
1498 break;
1499
1500 default:
1501 /* No extra segments required for sends */
1502 break;
1503 }
1504
1505 break;
1506
Roland Dreier9e6970b2005-06-27 14:36:42 -07001507 case UC:
1508 switch (wr->opcode) {
1509 case IB_WR_RDMA_WRITE:
1510 case IB_WR_RDMA_WRITE_WITH_IMM:
1511 ((struct mthca_raddr_seg *) wqe)->raddr =
1512 cpu_to_be64(wr->wr.rdma.remote_addr);
1513 ((struct mthca_raddr_seg *) wqe)->rkey =
1514 cpu_to_be32(wr->wr.rdma.rkey);
1515 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1516 wqe += sizeof (struct mthca_raddr_seg);
1517 size += sizeof (struct mthca_raddr_seg) / 16;
1518 break;
1519
1520 default:
1521 /* No extra segments required for sends */
1522 break;
1523 }
1524
1525 break;
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 case UD:
1528 ((struct mthca_tavor_ud_seg *) wqe)->lkey =
1529 cpu_to_be32(to_mah(wr->wr.ud.ah)->key);
1530 ((struct mthca_tavor_ud_seg *) wqe)->av_addr =
1531 cpu_to_be64(to_mah(wr->wr.ud.ah)->avdma);
1532 ((struct mthca_tavor_ud_seg *) wqe)->dqpn =
1533 cpu_to_be32(wr->wr.ud.remote_qpn);
1534 ((struct mthca_tavor_ud_seg *) wqe)->qkey =
1535 cpu_to_be32(wr->wr.ud.remote_qkey);
1536
1537 wqe += sizeof (struct mthca_tavor_ud_seg);
1538 size += sizeof (struct mthca_tavor_ud_seg) / 16;
1539 break;
1540
1541 case MLX:
1542 err = build_mlx_header(dev, to_msqp(qp), ind, wr,
1543 wqe - sizeof (struct mthca_next_seg),
1544 wqe);
1545 if (err) {
1546 *bad_wr = wr;
1547 goto out;
1548 }
1549 wqe += sizeof (struct mthca_data_seg);
1550 size += sizeof (struct mthca_data_seg) / 16;
1551 break;
1552 }
1553
1554 if (wr->num_sge > qp->sq.max_gs) {
1555 mthca_err(dev, "too many gathers\n");
1556 err = -EINVAL;
1557 *bad_wr = wr;
1558 goto out;
1559 }
1560
1561 for (i = 0; i < wr->num_sge; ++i) {
1562 ((struct mthca_data_seg *) wqe)->byte_count =
1563 cpu_to_be32(wr->sg_list[i].length);
1564 ((struct mthca_data_seg *) wqe)->lkey =
1565 cpu_to_be32(wr->sg_list[i].lkey);
1566 ((struct mthca_data_seg *) wqe)->addr =
1567 cpu_to_be64(wr->sg_list[i].addr);
1568 wqe += sizeof (struct mthca_data_seg);
1569 size += sizeof (struct mthca_data_seg) / 16;
1570 }
1571
1572 /* Add one more inline data segment for ICRC */
1573 if (qp->transport == MLX) {
1574 ((struct mthca_data_seg *) wqe)->byte_count =
1575 cpu_to_be32((1 << 31) | 4);
1576 ((u32 *) wqe)[1] = 0;
1577 wqe += sizeof (struct mthca_data_seg);
1578 size += sizeof (struct mthca_data_seg) / 16;
1579 }
1580
1581 qp->wrid[ind + qp->rq.max] = wr->wr_id;
1582
1583 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
1584 mthca_err(dev, "opcode invalid\n");
1585 err = -EINVAL;
1586 *bad_wr = wr;
1587 goto out;
1588 }
1589
Roland Dreierd6cff022005-09-13 10:41:03 -07001590 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1591 cpu_to_be32(((ind << qp->sq.wqe_shift) +
1592 qp->send_wqe_offset) |
1593 mthca_opcode[wr->opcode]);
1594 wmb();
1595 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1596 cpu_to_be32((size0 ? 0 : MTHCA_NEXT_DBD) | size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 if (!size0) {
1599 size0 = size;
1600 op0 = mthca_opcode[wr->opcode];
1601 }
1602
1603 ++ind;
1604 if (unlikely(ind >= qp->sq.max))
1605 ind -= qp->sq.max;
1606 }
1607
1608out:
1609 if (likely(nreq)) {
Sean Hefty97f52eb2005-08-13 21:05:57 -07001610 __be32 doorbell[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 doorbell[0] = cpu_to_be32(((qp->sq.next_ind << qp->sq.wqe_shift) +
1613 qp->send_wqe_offset) | f0 | op0);
1614 doorbell[1] = cpu_to_be32((qp->qpn << 8) | size0);
1615
1616 wmb();
1617
1618 mthca_write64(doorbell,
1619 dev->kar + MTHCA_SEND_DOORBELL,
1620 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1621 }
1622
1623 qp->sq.next_ind = ind;
1624 qp->sq.head += nreq;
1625
1626 spin_unlock_irqrestore(&qp->sq.lock, flags);
1627 return err;
1628}
1629
1630int mthca_tavor_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
1631 struct ib_recv_wr **bad_wr)
1632{
1633 struct mthca_dev *dev = to_mdev(ibqp->device);
1634 struct mthca_qp *qp = to_mqp(ibqp);
1635 unsigned long flags;
1636 int err = 0;
1637 int nreq;
1638 int i;
1639 int size;
1640 int size0 = 0;
1641 int ind;
1642 void *wqe;
1643 void *prev_wqe;
1644
1645 spin_lock_irqsave(&qp->rq.lock, flags);
1646
1647 /* XXX check that state is OK to post receive */
1648
1649 ind = qp->rq.next_ind;
1650
1651 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1652 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
1653 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
1654 " %d max, %d nreq)\n", qp->qpn,
1655 qp->rq.head, qp->rq.tail,
1656 qp->rq.max, nreq);
1657 err = -ENOMEM;
1658 *bad_wr = wr;
1659 goto out;
1660 }
1661
1662 wqe = get_recv_wqe(qp, ind);
1663 prev_wqe = qp->rq.last;
1664 qp->rq.last = wqe;
1665
1666 ((struct mthca_next_seg *) wqe)->nda_op = 0;
1667 ((struct mthca_next_seg *) wqe)->ee_nds =
1668 cpu_to_be32(MTHCA_NEXT_DBD);
1669 ((struct mthca_next_seg *) wqe)->flags = 0;
1670
1671 wqe += sizeof (struct mthca_next_seg);
1672 size = sizeof (struct mthca_next_seg) / 16;
1673
1674 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
1675 err = -EINVAL;
1676 *bad_wr = wr;
1677 goto out;
1678 }
1679
1680 for (i = 0; i < wr->num_sge; ++i) {
1681 ((struct mthca_data_seg *) wqe)->byte_count =
1682 cpu_to_be32(wr->sg_list[i].length);
1683 ((struct mthca_data_seg *) wqe)->lkey =
1684 cpu_to_be32(wr->sg_list[i].lkey);
1685 ((struct mthca_data_seg *) wqe)->addr =
1686 cpu_to_be64(wr->sg_list[i].addr);
1687 wqe += sizeof (struct mthca_data_seg);
1688 size += sizeof (struct mthca_data_seg) / 16;
1689 }
1690
1691 qp->wrid[ind] = wr->wr_id;
1692
Roland Dreierd6cff022005-09-13 10:41:03 -07001693 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1694 cpu_to_be32((ind << qp->rq.wqe_shift) | 1);
1695 wmb();
1696 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1697 cpu_to_be32(MTHCA_NEXT_DBD | size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 if (!size0)
1700 size0 = size;
1701
1702 ++ind;
1703 if (unlikely(ind >= qp->rq.max))
1704 ind -= qp->rq.max;
1705 }
1706
1707out:
1708 if (likely(nreq)) {
Sean Hefty97f52eb2005-08-13 21:05:57 -07001709 __be32 doorbell[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711 doorbell[0] = cpu_to_be32((qp->rq.next_ind << qp->rq.wqe_shift) | size0);
1712 doorbell[1] = cpu_to_be32((qp->qpn << 8) | nreq);
1713
1714 wmb();
1715
1716 mthca_write64(doorbell,
1717 dev->kar + MTHCA_RECEIVE_DOORBELL,
1718 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1719 }
1720
1721 qp->rq.next_ind = ind;
1722 qp->rq.head += nreq;
1723
1724 spin_unlock_irqrestore(&qp->rq.lock, flags);
1725 return err;
1726}
1727
1728int mthca_arbel_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
1729 struct ib_send_wr **bad_wr)
1730{
1731 struct mthca_dev *dev = to_mdev(ibqp->device);
1732 struct mthca_qp *qp = to_mqp(ibqp);
1733 void *wqe;
1734 void *prev_wqe;
1735 unsigned long flags;
1736 int err = 0;
1737 int nreq;
1738 int i;
1739 int size;
1740 int size0 = 0;
1741 u32 f0 = 0;
1742 int ind;
1743 u8 op0 = 0;
1744
1745 spin_lock_irqsave(&qp->sq.lock, flags);
1746
1747 /* XXX check that state is OK to post send */
1748
1749 ind = qp->sq.head & (qp->sq.max - 1);
1750
1751 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1752 if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1753 mthca_err(dev, "SQ %06x full (%u head, %u tail,"
1754 " %d max, %d nreq)\n", qp->qpn,
1755 qp->sq.head, qp->sq.tail,
1756 qp->sq.max, nreq);
1757 err = -ENOMEM;
1758 *bad_wr = wr;
1759 goto out;
1760 }
1761
1762 wqe = get_send_wqe(qp, ind);
1763 prev_wqe = qp->sq.last;
1764 qp->sq.last = wqe;
1765
1766 ((struct mthca_next_seg *) wqe)->flags =
1767 ((wr->send_flags & IB_SEND_SIGNALED) ?
1768 cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) |
1769 ((wr->send_flags & IB_SEND_SOLICITED) ?
1770 cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) |
1771 cpu_to_be32(1);
1772 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1773 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
Roland Dreier3fba2312005-04-16 15:26:16 -07001774 ((struct mthca_next_seg *) wqe)->imm = wr->imm_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
1776 wqe += sizeof (struct mthca_next_seg);
1777 size = sizeof (struct mthca_next_seg) / 16;
1778
1779 switch (qp->transport) {
Roland Dreierddb934e2005-04-16 15:26:23 -07001780 case RC:
1781 switch (wr->opcode) {
1782 case IB_WR_ATOMIC_CMP_AND_SWP:
1783 case IB_WR_ATOMIC_FETCH_AND_ADD:
1784 ((struct mthca_raddr_seg *) wqe)->raddr =
1785 cpu_to_be64(wr->wr.atomic.remote_addr);
1786 ((struct mthca_raddr_seg *) wqe)->rkey =
1787 cpu_to_be32(wr->wr.atomic.rkey);
1788 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1789
1790 wqe += sizeof (struct mthca_raddr_seg);
1791
1792 if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
1793 ((struct mthca_atomic_seg *) wqe)->swap_add =
1794 cpu_to_be64(wr->wr.atomic.swap);
1795 ((struct mthca_atomic_seg *) wqe)->compare =
1796 cpu_to_be64(wr->wr.atomic.compare_add);
1797 } else {
1798 ((struct mthca_atomic_seg *) wqe)->swap_add =
1799 cpu_to_be64(wr->wr.atomic.compare_add);
1800 ((struct mthca_atomic_seg *) wqe)->compare = 0;
1801 }
1802
1803 wqe += sizeof (struct mthca_atomic_seg);
1804 size += sizeof (struct mthca_raddr_seg) / 16 +
1805 sizeof (struct mthca_atomic_seg);
1806 break;
1807
Roland Dreier9e6970b2005-06-27 14:36:42 -07001808 case IB_WR_RDMA_READ:
Roland Dreierddb934e2005-04-16 15:26:23 -07001809 case IB_WR_RDMA_WRITE:
1810 case IB_WR_RDMA_WRITE_WITH_IMM:
Roland Dreier9e6970b2005-06-27 14:36:42 -07001811 ((struct mthca_raddr_seg *) wqe)->raddr =
1812 cpu_to_be64(wr->wr.rdma.remote_addr);
1813 ((struct mthca_raddr_seg *) wqe)->rkey =
1814 cpu_to_be32(wr->wr.rdma.rkey);
1815 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1816 wqe += sizeof (struct mthca_raddr_seg);
1817 size += sizeof (struct mthca_raddr_seg) / 16;
1818 break;
1819
1820 default:
1821 /* No extra segments required for sends */
1822 break;
1823 }
1824
1825 break;
1826
1827 case UC:
1828 switch (wr->opcode) {
1829 case IB_WR_RDMA_WRITE:
1830 case IB_WR_RDMA_WRITE_WITH_IMM:
Roland Dreierddb934e2005-04-16 15:26:23 -07001831 ((struct mthca_raddr_seg *) wqe)->raddr =
1832 cpu_to_be64(wr->wr.rdma.remote_addr);
1833 ((struct mthca_raddr_seg *) wqe)->rkey =
1834 cpu_to_be32(wr->wr.rdma.rkey);
1835 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1836 wqe += sizeof (struct mthca_raddr_seg);
1837 size += sizeof (struct mthca_raddr_seg) / 16;
1838 break;
1839
1840 default:
1841 /* No extra segments required for sends */
1842 break;
1843 }
1844
1845 break;
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 case UD:
1848 memcpy(((struct mthca_arbel_ud_seg *) wqe)->av,
1849 to_mah(wr->wr.ud.ah)->av, MTHCA_AV_SIZE);
1850 ((struct mthca_arbel_ud_seg *) wqe)->dqpn =
1851 cpu_to_be32(wr->wr.ud.remote_qpn);
1852 ((struct mthca_arbel_ud_seg *) wqe)->qkey =
1853 cpu_to_be32(wr->wr.ud.remote_qkey);
1854
1855 wqe += sizeof (struct mthca_arbel_ud_seg);
1856 size += sizeof (struct mthca_arbel_ud_seg) / 16;
1857 break;
1858
1859 case MLX:
1860 err = build_mlx_header(dev, to_msqp(qp), ind, wr,
1861 wqe - sizeof (struct mthca_next_seg),
1862 wqe);
1863 if (err) {
1864 *bad_wr = wr;
1865 goto out;
1866 }
1867 wqe += sizeof (struct mthca_data_seg);
1868 size += sizeof (struct mthca_data_seg) / 16;
1869 break;
1870 }
1871
1872 if (wr->num_sge > qp->sq.max_gs) {
1873 mthca_err(dev, "too many gathers\n");
1874 err = -EINVAL;
1875 *bad_wr = wr;
1876 goto out;
1877 }
1878
1879 for (i = 0; i < wr->num_sge; ++i) {
1880 ((struct mthca_data_seg *) wqe)->byte_count =
1881 cpu_to_be32(wr->sg_list[i].length);
1882 ((struct mthca_data_seg *) wqe)->lkey =
1883 cpu_to_be32(wr->sg_list[i].lkey);
1884 ((struct mthca_data_seg *) wqe)->addr =
1885 cpu_to_be64(wr->sg_list[i].addr);
1886 wqe += sizeof (struct mthca_data_seg);
1887 size += sizeof (struct mthca_data_seg) / 16;
1888 }
1889
1890 /* Add one more inline data segment for ICRC */
1891 if (qp->transport == MLX) {
1892 ((struct mthca_data_seg *) wqe)->byte_count =
1893 cpu_to_be32((1 << 31) | 4);
1894 ((u32 *) wqe)[1] = 0;
1895 wqe += sizeof (struct mthca_data_seg);
1896 size += sizeof (struct mthca_data_seg) / 16;
1897 }
1898
1899 qp->wrid[ind + qp->rq.max] = wr->wr_id;
1900
1901 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
1902 mthca_err(dev, "opcode invalid\n");
1903 err = -EINVAL;
1904 *bad_wr = wr;
1905 goto out;
1906 }
1907
Roland Dreierd6cff022005-09-13 10:41:03 -07001908 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1909 cpu_to_be32(((ind << qp->sq.wqe_shift) +
1910 qp->send_wqe_offset) |
1911 mthca_opcode[wr->opcode]);
1912 wmb();
1913 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1914 cpu_to_be32(MTHCA_NEXT_DBD | size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916 if (!size0) {
1917 size0 = size;
1918 op0 = mthca_opcode[wr->opcode];
1919 }
1920
1921 ++ind;
1922 if (unlikely(ind >= qp->sq.max))
1923 ind -= qp->sq.max;
1924 }
1925
1926out:
1927 if (likely(nreq)) {
Sean Hefty97f52eb2005-08-13 21:05:57 -07001928 __be32 doorbell[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930 doorbell[0] = cpu_to_be32((nreq << 24) |
1931 ((qp->sq.head & 0xffff) << 8) |
1932 f0 | op0);
1933 doorbell[1] = cpu_to_be32((qp->qpn << 8) | size0);
1934
1935 qp->sq.head += nreq;
1936
1937 /*
1938 * Make sure that descriptors are written before
1939 * doorbell record.
1940 */
1941 wmb();
1942 *qp->sq.db = cpu_to_be32(qp->sq.head & 0xffff);
1943
1944 /*
1945 * Make sure doorbell record is written before we
1946 * write MMIO send doorbell.
1947 */
1948 wmb();
1949 mthca_write64(doorbell,
1950 dev->kar + MTHCA_SEND_DOORBELL,
1951 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1952 }
1953
1954 spin_unlock_irqrestore(&qp->sq.lock, flags);
1955 return err;
1956}
1957
1958int mthca_arbel_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
1959 struct ib_recv_wr **bad_wr)
1960{
1961 struct mthca_dev *dev = to_mdev(ibqp->device);
1962 struct mthca_qp *qp = to_mqp(ibqp);
1963 unsigned long flags;
1964 int err = 0;
1965 int nreq;
1966 int ind;
1967 int i;
1968 void *wqe;
1969
1970 spin_lock_irqsave(&qp->rq.lock, flags);
1971
1972 /* XXX check that state is OK to post receive */
1973
1974 ind = qp->rq.head & (qp->rq.max - 1);
1975
1976 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1977 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
1978 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
1979 " %d max, %d nreq)\n", qp->qpn,
1980 qp->rq.head, qp->rq.tail,
1981 qp->rq.max, nreq);
1982 err = -ENOMEM;
1983 *bad_wr = wr;
1984 goto out;
1985 }
1986
1987 wqe = get_recv_wqe(qp, ind);
1988
1989 ((struct mthca_next_seg *) wqe)->flags = 0;
1990
1991 wqe += sizeof (struct mthca_next_seg);
1992
1993 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
1994 err = -EINVAL;
1995 *bad_wr = wr;
1996 goto out;
1997 }
1998
1999 for (i = 0; i < wr->num_sge; ++i) {
2000 ((struct mthca_data_seg *) wqe)->byte_count =
2001 cpu_to_be32(wr->sg_list[i].length);
2002 ((struct mthca_data_seg *) wqe)->lkey =
2003 cpu_to_be32(wr->sg_list[i].lkey);
2004 ((struct mthca_data_seg *) wqe)->addr =
2005 cpu_to_be64(wr->sg_list[i].addr);
2006 wqe += sizeof (struct mthca_data_seg);
2007 }
2008
2009 if (i < qp->rq.max_gs) {
2010 ((struct mthca_data_seg *) wqe)->byte_count = 0;
Roland Dreierddf841f2005-04-16 15:26:33 -07002011 ((struct mthca_data_seg *) wqe)->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 ((struct mthca_data_seg *) wqe)->addr = 0;
2013 }
2014
2015 qp->wrid[ind] = wr->wr_id;
2016
2017 ++ind;
2018 if (unlikely(ind >= qp->rq.max))
2019 ind -= qp->rq.max;
2020 }
2021out:
2022 if (likely(nreq)) {
2023 qp->rq.head += nreq;
2024
2025 /*
2026 * Make sure that descriptors are written before
2027 * doorbell record.
2028 */
2029 wmb();
2030 *qp->rq.db = cpu_to_be32(qp->rq.head & 0xffff);
2031 }
2032
2033 spin_unlock_irqrestore(&qp->rq.lock, flags);
2034 return err;
2035}
2036
2037int mthca_free_err_wqe(struct mthca_dev *dev, struct mthca_qp *qp, int is_send,
Sean Hefty97f52eb2005-08-13 21:05:57 -07002038 int index, int *dbd, __be32 *new_wqe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039{
2040 struct mthca_next_seg *next;
2041
Roland Dreierec34a922005-08-19 10:59:31 -07002042 /*
2043 * For SRQs, all WQEs generate a CQE, so we're always at the
2044 * end of the doorbell chain.
2045 */
2046 if (qp->ibqp.srq) {
2047 *new_wqe = 0;
2048 return 0;
2049 }
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (is_send)
2052 next = get_send_wqe(qp, index);
2053 else
2054 next = get_recv_wqe(qp, index);
2055
Roland Dreier288bdeb2005-08-19 09:19:05 -07002056 *dbd = !!(next->ee_nds & cpu_to_be32(MTHCA_NEXT_DBD));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 if (next->ee_nds & cpu_to_be32(0x3f))
2058 *new_wqe = (next->nda_op & cpu_to_be32(~0x3f)) |
2059 (next->ee_nds & cpu_to_be32(0x3f));
2060 else
2061 *new_wqe = 0;
2062
2063 return 0;
2064}
2065
2066int __devinit mthca_init_qp_table(struct mthca_dev *dev)
2067{
2068 int err;
2069 u8 status;
2070 int i;
2071
2072 spin_lock_init(&dev->qp_table.lock);
2073
2074 /*
2075 * We reserve 2 extra QPs per port for the special QPs. The
2076 * special QP for port 1 has to be even, so round up.
2077 */
2078 dev->qp_table.sqp_start = (dev->limits.reserved_qps + 1) & ~1UL;
2079 err = mthca_alloc_init(&dev->qp_table.alloc,
2080 dev->limits.num_qps,
2081 (1 << 24) - 1,
2082 dev->qp_table.sqp_start +
2083 MTHCA_MAX_PORTS * 2);
2084 if (err)
2085 return err;
2086
2087 err = mthca_array_init(&dev->qp_table.qp,
2088 dev->limits.num_qps);
2089 if (err) {
2090 mthca_alloc_cleanup(&dev->qp_table.alloc);
2091 return err;
2092 }
2093
2094 for (i = 0; i < 2; ++i) {
2095 err = mthca_CONF_SPECIAL_QP(dev, i ? IB_QPT_GSI : IB_QPT_SMI,
2096 dev->qp_table.sqp_start + i * 2,
2097 &status);
2098 if (err)
2099 goto err_out;
2100 if (status) {
2101 mthca_warn(dev, "CONF_SPECIAL_QP returned "
2102 "status %02x, aborting.\n",
2103 status);
2104 err = -EINVAL;
2105 goto err_out;
2106 }
2107 }
2108 return 0;
2109
2110 err_out:
2111 for (i = 0; i < 2; ++i)
2112 mthca_CONF_SPECIAL_QP(dev, i, 0, &status);
2113
2114 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps);
2115 mthca_alloc_cleanup(&dev->qp_table.alloc);
2116
2117 return err;
2118}
2119
2120void __devexit mthca_cleanup_qp_table(struct mthca_dev *dev)
2121{
2122 int i;
2123 u8 status;
2124
2125 for (i = 0; i < 2; ++i)
2126 mthca_CONF_SPECIAL_QP(dev, i, 0, &status);
2127
Michael S. Tsirkin71eea472005-09-20 10:54:48 -07002128 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 mthca_alloc_cleanup(&dev->qp_table.alloc);
2130}