blob: 2c883c1fd53a6eb25c5ae0050884545fc73bfb89 [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;
230 wq->last = NULL;
231}
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233void mthca_qp_event(struct mthca_dev *dev, u32 qpn,
234 enum ib_event_type event_type)
235{
236 struct mthca_qp *qp;
237 struct ib_event event;
238
239 spin_lock(&dev->qp_table.lock);
240 qp = mthca_array_get(&dev->qp_table.qp, qpn & (dev->limits.num_qps - 1));
241 if (qp)
242 atomic_inc(&qp->refcount);
243 spin_unlock(&dev->qp_table.lock);
244
245 if (!qp) {
246 mthca_warn(dev, "Async event for bogus QP %08x\n", qpn);
247 return;
248 }
249
250 event.device = &dev->ib_dev;
251 event.event = event_type;
252 event.element.qp = &qp->ibqp;
253 if (qp->ibqp.event_handler)
254 qp->ibqp.event_handler(&event, qp->ibqp.qp_context);
255
256 if (atomic_dec_and_test(&qp->refcount))
257 wake_up(&qp->wait);
258}
259
260static int to_mthca_state(enum ib_qp_state ib_state)
261{
262 switch (ib_state) {
263 case IB_QPS_RESET: return MTHCA_QP_STATE_RST;
264 case IB_QPS_INIT: return MTHCA_QP_STATE_INIT;
265 case IB_QPS_RTR: return MTHCA_QP_STATE_RTR;
266 case IB_QPS_RTS: return MTHCA_QP_STATE_RTS;
267 case IB_QPS_SQD: return MTHCA_QP_STATE_SQD;
268 case IB_QPS_SQE: return MTHCA_QP_STATE_SQE;
269 case IB_QPS_ERR: return MTHCA_QP_STATE_ERR;
270 default: return -1;
271 }
272}
273
274enum { RC, UC, UD, RD, RDEE, MLX, NUM_TRANS };
275
276static int to_mthca_st(int transport)
277{
278 switch (transport) {
279 case RC: return MTHCA_QP_ST_RC;
280 case UC: return MTHCA_QP_ST_UC;
281 case UD: return MTHCA_QP_ST_UD;
282 case RD: return MTHCA_QP_ST_RD;
283 case MLX: return MTHCA_QP_ST_MLX;
284 default: return -1;
285 }
286}
287
288static const struct {
289 int trans;
290 u32 req_param[NUM_TRANS];
291 u32 opt_param[NUM_TRANS];
292} state_table[IB_QPS_ERR + 1][IB_QPS_ERR + 1] = {
293 [IB_QPS_RESET] = {
294 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
295 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
296 [IB_QPS_INIT] = {
297 .trans = MTHCA_TRANS_RST2INIT,
298 .req_param = {
299 [UD] = (IB_QP_PKEY_INDEX |
300 IB_QP_PORT |
301 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700302 [UC] = (IB_QP_PKEY_INDEX |
303 IB_QP_PORT |
304 IB_QP_ACCESS_FLAGS),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 [RC] = (IB_QP_PKEY_INDEX |
306 IB_QP_PORT |
307 IB_QP_ACCESS_FLAGS),
308 [MLX] = (IB_QP_PKEY_INDEX |
309 IB_QP_QKEY),
310 },
311 /* bug-for-bug compatibility with VAPI: */
312 .opt_param = {
313 [MLX] = IB_QP_PORT
314 }
315 },
316 },
317 [IB_QPS_INIT] = {
318 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
319 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
320 [IB_QPS_INIT] = {
321 .trans = MTHCA_TRANS_INIT2INIT,
322 .opt_param = {
323 [UD] = (IB_QP_PKEY_INDEX |
324 IB_QP_PORT |
325 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700326 [UC] = (IB_QP_PKEY_INDEX |
327 IB_QP_PORT |
328 IB_QP_ACCESS_FLAGS),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 [RC] = (IB_QP_PKEY_INDEX |
330 IB_QP_PORT |
331 IB_QP_ACCESS_FLAGS),
332 [MLX] = (IB_QP_PKEY_INDEX |
333 IB_QP_QKEY),
334 }
335 },
336 [IB_QPS_RTR] = {
337 .trans = MTHCA_TRANS_INIT2RTR,
338 .req_param = {
Roland Dreier9e6970b2005-06-27 14:36:42 -0700339 [UC] = (IB_QP_AV |
340 IB_QP_PATH_MTU |
341 IB_QP_DEST_QPN |
342 IB_QP_RQ_PSN |
343 IB_QP_MAX_DEST_RD_ATOMIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 [RC] = (IB_QP_AV |
345 IB_QP_PATH_MTU |
346 IB_QP_DEST_QPN |
347 IB_QP_RQ_PSN |
348 IB_QP_MAX_DEST_RD_ATOMIC |
349 IB_QP_MIN_RNR_TIMER),
350 },
351 .opt_param = {
352 [UD] = (IB_QP_PKEY_INDEX |
353 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700354 [UC] = (IB_QP_ALT_PATH |
355 IB_QP_ACCESS_FLAGS |
356 IB_QP_PKEY_INDEX),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 [RC] = (IB_QP_ALT_PATH |
358 IB_QP_ACCESS_FLAGS |
359 IB_QP_PKEY_INDEX),
360 [MLX] = (IB_QP_PKEY_INDEX |
361 IB_QP_QKEY),
362 }
363 }
364 },
365 [IB_QPS_RTR] = {
366 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
367 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
368 [IB_QPS_RTS] = {
369 .trans = MTHCA_TRANS_RTR2RTS,
370 .req_param = {
371 [UD] = IB_QP_SQ_PSN,
Roland Dreier9e6970b2005-06-27 14:36:42 -0700372 [UC] = (IB_QP_SQ_PSN |
373 IB_QP_MAX_QP_RD_ATOMIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 [RC] = (IB_QP_TIMEOUT |
375 IB_QP_RETRY_CNT |
376 IB_QP_RNR_RETRY |
377 IB_QP_SQ_PSN |
378 IB_QP_MAX_QP_RD_ATOMIC),
379 [MLX] = IB_QP_SQ_PSN,
380 },
381 .opt_param = {
382 [UD] = (IB_QP_CUR_STATE |
383 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700384 [UC] = (IB_QP_CUR_STATE |
385 IB_QP_ALT_PATH |
386 IB_QP_ACCESS_FLAGS |
387 IB_QP_PKEY_INDEX |
388 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 [RC] = (IB_QP_CUR_STATE |
390 IB_QP_ALT_PATH |
391 IB_QP_ACCESS_FLAGS |
392 IB_QP_PKEY_INDEX |
393 IB_QP_MIN_RNR_TIMER |
394 IB_QP_PATH_MIG_STATE),
395 [MLX] = (IB_QP_CUR_STATE |
396 IB_QP_QKEY),
397 }
398 }
399 },
400 [IB_QPS_RTS] = {
401 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
402 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
403 [IB_QPS_RTS] = {
404 .trans = MTHCA_TRANS_RTS2RTS,
405 .opt_param = {
406 [UD] = (IB_QP_CUR_STATE |
407 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700408 [UC] = (IB_QP_ACCESS_FLAGS |
409 IB_QP_ALT_PATH |
410 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 [RC] = (IB_QP_ACCESS_FLAGS |
412 IB_QP_ALT_PATH |
413 IB_QP_PATH_MIG_STATE |
414 IB_QP_MIN_RNR_TIMER),
415 [MLX] = (IB_QP_CUR_STATE |
416 IB_QP_QKEY),
417 }
418 },
419 [IB_QPS_SQD] = {
420 .trans = MTHCA_TRANS_RTS2SQD,
421 },
422 },
423 [IB_QPS_SQD] = {
424 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
425 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
426 [IB_QPS_RTS] = {
427 .trans = MTHCA_TRANS_SQD2RTS,
428 .opt_param = {
429 [UD] = (IB_QP_CUR_STATE |
430 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700431 [UC] = (IB_QP_CUR_STATE |
432 IB_QP_ALT_PATH |
433 IB_QP_ACCESS_FLAGS |
434 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 [RC] = (IB_QP_CUR_STATE |
436 IB_QP_ALT_PATH |
437 IB_QP_ACCESS_FLAGS |
438 IB_QP_MIN_RNR_TIMER |
439 IB_QP_PATH_MIG_STATE),
440 [MLX] = (IB_QP_CUR_STATE |
441 IB_QP_QKEY),
442 }
443 },
444 [IB_QPS_SQD] = {
445 .trans = MTHCA_TRANS_SQD2SQD,
446 .opt_param = {
447 [UD] = (IB_QP_PKEY_INDEX |
448 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700449 [UC] = (IB_QP_AV |
450 IB_QP_MAX_QP_RD_ATOMIC |
451 IB_QP_MAX_DEST_RD_ATOMIC |
452 IB_QP_CUR_STATE |
453 IB_QP_ALT_PATH |
454 IB_QP_ACCESS_FLAGS |
455 IB_QP_PKEY_INDEX |
456 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 [RC] = (IB_QP_AV |
458 IB_QP_TIMEOUT |
459 IB_QP_RETRY_CNT |
460 IB_QP_RNR_RETRY |
461 IB_QP_MAX_QP_RD_ATOMIC |
462 IB_QP_MAX_DEST_RD_ATOMIC |
463 IB_QP_CUR_STATE |
464 IB_QP_ALT_PATH |
465 IB_QP_ACCESS_FLAGS |
466 IB_QP_PKEY_INDEX |
467 IB_QP_MIN_RNR_TIMER |
468 IB_QP_PATH_MIG_STATE),
469 [MLX] = (IB_QP_PKEY_INDEX |
470 IB_QP_QKEY),
471 }
472 }
473 },
474 [IB_QPS_SQE] = {
475 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
476 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
477 [IB_QPS_RTS] = {
478 .trans = MTHCA_TRANS_SQERR2RTS,
479 .opt_param = {
480 [UD] = (IB_QP_CUR_STATE |
481 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700482 [UC] = (IB_QP_CUR_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 [RC] = (IB_QP_CUR_STATE |
484 IB_QP_MIN_RNR_TIMER),
485 [MLX] = (IB_QP_CUR_STATE |
486 IB_QP_QKEY),
487 }
488 }
489 },
490 [IB_QPS_ERR] = {
491 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
492 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR }
493 }
494};
495
496static void store_attrs(struct mthca_sqp *sqp, struct ib_qp_attr *attr,
497 int attr_mask)
498{
499 if (attr_mask & IB_QP_PKEY_INDEX)
500 sqp->pkey_index = attr->pkey_index;
501 if (attr_mask & IB_QP_QKEY)
502 sqp->qkey = attr->qkey;
503 if (attr_mask & IB_QP_SQ_PSN)
504 sqp->send_psn = attr->sq_psn;
505}
506
507static void init_port(struct mthca_dev *dev, int port)
508{
509 int err;
510 u8 status;
511 struct mthca_init_ib_param param;
512
513 memset(&param, 0, sizeof param);
514
Roland Dreierda6561c2005-08-17 07:39:10 -0700515 param.port_width = dev->limits.port_width_cap;
516 param.vl_cap = dev->limits.vl_cap;
517 param.mtu_cap = dev->limits.mtu_cap;
518 param.gid_cap = dev->limits.gid_table_len;
519 param.pkey_cap = dev->limits.pkey_table_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 err = mthca_INIT_IB(dev, &param, port, &status);
522 if (err)
523 mthca_warn(dev, "INIT_IB failed, return code %d.\n", err);
524 if (status)
525 mthca_warn(dev, "INIT_IB returned status %02x.\n", status);
526}
527
528int mthca_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, int attr_mask)
529{
530 struct mthca_dev *dev = to_mdev(ibqp->device);
531 struct mthca_qp *qp = to_mqp(ibqp);
532 enum ib_qp_state cur_state, new_state;
Roland Dreiered878452005-06-27 14:36:45 -0700533 struct mthca_mailbox *mailbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 struct mthca_qp_param *qp_param;
535 struct mthca_qp_context *qp_context;
536 u32 req_param, opt_param;
537 u8 status;
538 int err;
539
540 if (attr_mask & IB_QP_CUR_STATE) {
541 if (attr->cur_qp_state != IB_QPS_RTR &&
542 attr->cur_qp_state != IB_QPS_RTS &&
543 attr->cur_qp_state != IB_QPS_SQD &&
544 attr->cur_qp_state != IB_QPS_SQE)
545 return -EINVAL;
546 else
547 cur_state = attr->cur_qp_state;
548 } else {
549 spin_lock_irq(&qp->sq.lock);
550 spin_lock(&qp->rq.lock);
551 cur_state = qp->state;
552 spin_unlock(&qp->rq.lock);
553 spin_unlock_irq(&qp->sq.lock);
554 }
555
556 if (attr_mask & IB_QP_STATE) {
557 if (attr->qp_state < 0 || attr->qp_state > IB_QPS_ERR)
558 return -EINVAL;
559 new_state = attr->qp_state;
560 } else
561 new_state = cur_state;
562
563 if (state_table[cur_state][new_state].trans == MTHCA_TRANS_INVALID) {
564 mthca_dbg(dev, "Illegal QP transition "
565 "%d->%d\n", cur_state, new_state);
566 return -EINVAL;
567 }
568
569 req_param = state_table[cur_state][new_state].req_param[qp->transport];
570 opt_param = state_table[cur_state][new_state].opt_param[qp->transport];
571
572 if ((req_param & attr_mask) != req_param) {
573 mthca_dbg(dev, "QP transition "
574 "%d->%d missing req attr 0x%08x\n",
575 cur_state, new_state,
576 req_param & ~attr_mask);
577 return -EINVAL;
578 }
579
580 if (attr_mask & ~(req_param | opt_param | IB_QP_STATE)) {
581 mthca_dbg(dev, "QP transition (transport %d) "
582 "%d->%d has extra attr 0x%08x\n",
583 qp->transport,
584 cur_state, new_state,
585 attr_mask & ~(req_param | opt_param |
586 IB_QP_STATE));
587 return -EINVAL;
588 }
589
Roland Dreiered878452005-06-27 14:36:45 -0700590 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
591 if (IS_ERR(mailbox))
592 return PTR_ERR(mailbox);
593 qp_param = mailbox->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 qp_context = &qp_param->context;
595 memset(qp_param, 0, sizeof *qp_param);
596
597 qp_context->flags = cpu_to_be32((to_mthca_state(new_state) << 28) |
598 (to_mthca_st(qp->transport) << 16));
599 qp_context->flags |= cpu_to_be32(MTHCA_QP_BIT_DE);
600 if (!(attr_mask & IB_QP_PATH_MIG_STATE))
601 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
602 else {
603 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PM_STATE);
604 switch (attr->path_mig_state) {
605 case IB_MIG_MIGRATED:
606 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
607 break;
608 case IB_MIG_REARM:
609 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_REARM << 11);
610 break;
611 case IB_MIG_ARMED:
612 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_ARMED << 11);
613 break;
614 }
615 }
616
617 /* leave tavor_sched_queue as 0 */
618
619 if (qp->transport == MLX || qp->transport == UD)
620 qp_context->mtu_msgmax = (IB_MTU_2048 << 5) | 11;
621 else if (attr_mask & IB_QP_PATH_MTU)
622 qp_context->mtu_msgmax = (attr->path_mtu << 5) | 31;
623
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700624 if (mthca_is_memfree(dev)) {
Roland Dreierec34a922005-08-19 10:59:31 -0700625 if (qp->rq.max)
626 qp_context->rq_size_stride = long_log2(qp->rq.max) << 3;
627 qp_context->rq_size_stride |= qp->rq.wqe_shift - 4;
628
629 if (qp->sq.max)
630 qp_context->sq_size_stride = long_log2(qp->sq.max) << 3;
631 qp_context->sq_size_stride |= qp->sq.wqe_shift - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633
634 /* leave arbel_sched_queue as 0 */
635
Roland Dreier80c8ec22005-07-07 17:57:20 -0700636 if (qp->ibqp.uobject)
637 qp_context->usr_page =
638 cpu_to_be32(to_mucontext(qp->ibqp.uobject->context)->uar.index);
639 else
640 qp_context->usr_page = cpu_to_be32(dev->driver_uar.index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 qp_context->local_qpn = cpu_to_be32(qp->qpn);
642 if (attr_mask & IB_QP_DEST_QPN) {
643 qp_context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
644 }
645
646 if (qp->transport == MLX)
647 qp_context->pri_path.port_pkey |=
648 cpu_to_be32(to_msqp(qp)->port << 24);
649 else {
650 if (attr_mask & IB_QP_PORT) {
651 qp_context->pri_path.port_pkey |=
652 cpu_to_be32(attr->port_num << 24);
653 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PORT_NUM);
654 }
655 }
656
657 if (attr_mask & IB_QP_PKEY_INDEX) {
658 qp_context->pri_path.port_pkey |=
659 cpu_to_be32(attr->pkey_index);
660 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PKEY_INDEX);
661 }
662
663 if (attr_mask & IB_QP_RNR_RETRY) {
664 qp_context->pri_path.rnr_retry = attr->rnr_retry << 5;
665 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_RETRY);
666 }
667
668 if (attr_mask & IB_QP_AV) {
669 qp_context->pri_path.g_mylmc = attr->ah_attr.src_path_bits & 0x7f;
670 qp_context->pri_path.rlid = cpu_to_be16(attr->ah_attr.dlid);
Roland Dreiercd123d72005-06-27 14:36:40 -0700671 qp_context->pri_path.static_rate = !!attr->ah_attr.static_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (attr->ah_attr.ah_flags & IB_AH_GRH) {
673 qp_context->pri_path.g_mylmc |= 1 << 7;
674 qp_context->pri_path.mgid_index = attr->ah_attr.grh.sgid_index;
675 qp_context->pri_path.hop_limit = attr->ah_attr.grh.hop_limit;
676 qp_context->pri_path.sl_tclass_flowlabel =
677 cpu_to_be32((attr->ah_attr.sl << 28) |
678 (attr->ah_attr.grh.traffic_class << 20) |
679 (attr->ah_attr.grh.flow_label));
680 memcpy(qp_context->pri_path.rgid,
681 attr->ah_attr.grh.dgid.raw, 16);
682 } else {
683 qp_context->pri_path.sl_tclass_flowlabel =
684 cpu_to_be32(attr->ah_attr.sl << 28);
685 }
686 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH);
687 }
688
689 if (attr_mask & IB_QP_TIMEOUT) {
Roland Dreierbb4a7f02005-09-12 14:08:51 -0700690 qp_context->pri_path.ackto = attr->timeout << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_ACK_TIMEOUT);
692 }
693
694 /* XXX alt_path */
695
696 /* leave rdd as 0 */
697 qp_context->pd = cpu_to_be32(to_mpd(ibqp->pd)->pd_num);
698 /* leave wqe_base as 0 (we always create an MR based at 0 for WQs) */
699 qp_context->wqe_lkey = cpu_to_be32(qp->mr.ibmr.lkey);
700 qp_context->params1 = cpu_to_be32((MTHCA_ACK_REQ_FREQ << 28) |
701 (MTHCA_FLIGHT_LIMIT << 24) |
702 MTHCA_QP_BIT_SRE |
703 MTHCA_QP_BIT_SWE |
704 MTHCA_QP_BIT_SAE);
705 if (qp->sq_policy == IB_SIGNAL_ALL_WR)
706 qp_context->params1 |= cpu_to_be32(MTHCA_QP_BIT_SSC);
707 if (attr_mask & IB_QP_RETRY_CNT) {
708 qp_context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
709 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RETRY_COUNT);
710 }
711
Roland Dreier34a4a752005-06-27 14:36:41 -0700712 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
713 qp_context->params1 |= cpu_to_be32(min(attr->max_rd_atomic ?
714 ffs(attr->max_rd_atomic) - 1 : 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 7) << 21);
716 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_SRA_MAX);
717 }
718
719 if (attr_mask & IB_QP_SQ_PSN)
720 qp_context->next_send_psn = cpu_to_be32(attr->sq_psn);
721 qp_context->cqn_snd = cpu_to_be32(to_mcq(ibqp->send_cq)->cqn);
722
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700723 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 qp_context->snd_wqe_base_l = cpu_to_be32(qp->send_wqe_offset);
725 qp_context->snd_db_index = cpu_to_be32(qp->sq.db_index);
726 }
727
728 if (attr_mask & IB_QP_ACCESS_FLAGS) {
729 /*
730 * Only enable RDMA/atomics if we have responder
731 * resources set to a non-zero value.
732 */
733 if (qp->resp_depth) {
734 qp_context->params2 |=
735 cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_WRITE ?
736 MTHCA_QP_BIT_RWE : 0);
737 qp_context->params2 |=
738 cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_READ ?
739 MTHCA_QP_BIT_RRE : 0);
740 qp_context->params2 |=
741 cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_ATOMIC ?
742 MTHCA_QP_BIT_RAE : 0);
743 }
744
745 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
746 MTHCA_QP_OPTPAR_RRE |
747 MTHCA_QP_OPTPAR_RAE);
748
749 qp->atomic_rd_en = attr->qp_access_flags;
750 }
751
Roland Dreier34a4a752005-06-27 14:36:41 -0700752 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 u8 rra_max;
754
Roland Dreier34a4a752005-06-27 14:36:41 -0700755 if (qp->resp_depth && !attr->max_dest_rd_atomic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 /*
757 * Lowering our responder resources to zero.
758 * Turn off RDMA/atomics as responder.
759 * (RWE/RRE/RAE in params2 already zero)
760 */
761 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
762 MTHCA_QP_OPTPAR_RRE |
763 MTHCA_QP_OPTPAR_RAE);
764 }
765
Roland Dreier34a4a752005-06-27 14:36:41 -0700766 if (!qp->resp_depth && attr->max_dest_rd_atomic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 /*
768 * Increasing our responder resources from
769 * zero. Turn on RDMA/atomics as appropriate.
770 */
771 qp_context->params2 |=
772 cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_WRITE ?
773 MTHCA_QP_BIT_RWE : 0);
774 qp_context->params2 |=
775 cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_READ ?
776 MTHCA_QP_BIT_RRE : 0);
777 qp_context->params2 |=
778 cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_ATOMIC ?
779 MTHCA_QP_BIT_RAE : 0);
780
781 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
782 MTHCA_QP_OPTPAR_RRE |
783 MTHCA_QP_OPTPAR_RAE);
784 }
785
786 for (rra_max = 0;
Roland Dreier34a4a752005-06-27 14:36:41 -0700787 1 << rra_max < attr->max_dest_rd_atomic &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 rra_max < dev->qp_table.rdb_shift;
789 ++rra_max)
790 ; /* nothing */
791
792 qp_context->params2 |= cpu_to_be32(rra_max << 21);
793 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RRA_MAX);
794
Roland Dreier34a4a752005-06-27 14:36:41 -0700795 qp->resp_depth = attr->max_dest_rd_atomic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
798 qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RSC);
799
Roland Dreierec34a922005-08-19 10:59:31 -0700800 if (ibqp->srq)
801 qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RIC);
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (attr_mask & IB_QP_MIN_RNR_TIMER) {
804 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
805 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_TIMEOUT);
806 }
807 if (attr_mask & IB_QP_RQ_PSN)
808 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
809
810 qp_context->ra_buff_indx =
811 cpu_to_be32(dev->qp_table.rdb_base +
812 ((qp->qpn & (dev->limits.num_qps - 1)) * MTHCA_RDB_ENTRY_SIZE <<
813 dev->qp_table.rdb_shift));
814
815 qp_context->cqn_rcv = cpu_to_be32(to_mcq(ibqp->recv_cq)->cqn);
816
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700817 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 qp_context->rcv_db_index = cpu_to_be32(qp->rq.db_index);
819
820 if (attr_mask & IB_QP_QKEY) {
821 qp_context->qkey = cpu_to_be32(attr->qkey);
822 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_Q_KEY);
823 }
824
Roland Dreierec34a922005-08-19 10:59:31 -0700825 if (ibqp->srq)
826 qp_context->srqn = cpu_to_be32(1 << 24 |
827 to_msrq(ibqp->srq)->srqn);
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 err = mthca_MODIFY_QP(dev, state_table[cur_state][new_state].trans,
Roland Dreiered878452005-06-27 14:36:45 -0700830 qp->qpn, 0, mailbox, 0, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (status) {
832 mthca_warn(dev, "modify QP %d returned status %02x.\n",
833 state_table[cur_state][new_state].trans, status);
834 err = -EINVAL;
835 }
836
837 if (!err)
838 qp->state = new_state;
839
Roland Dreiered878452005-06-27 14:36:45 -0700840 mthca_free_mailbox(dev, mailbox);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 if (is_sqp(dev, qp))
843 store_attrs(to_msqp(qp), attr, attr_mask);
844
845 /*
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700846 * If we moved QP0 to RTR, bring the IB link up; if we moved
847 * QP0 to RESET or ERROR, bring the link back down.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 */
849 if (is_qp0(dev, qp)) {
850 if (cur_state != IB_QPS_RTR &&
851 new_state == IB_QPS_RTR)
852 init_port(dev, to_msqp(qp)->port);
853
854 if (cur_state != IB_QPS_RESET &&
855 cur_state != IB_QPS_ERR &&
856 (new_state == IB_QPS_RESET ||
857 new_state == IB_QPS_ERR))
858 mthca_CLOSE_IB(dev, to_msqp(qp)->port, &status);
859 }
860
Roland Dreierc9fe2b32005-09-07 09:43:23 -0700861 /*
862 * If we moved a kernel QP to RESET, clean up all old CQ
863 * entries and reinitialize the QP.
864 */
865 if (!err && new_state == IB_QPS_RESET && !qp->ibqp.uobject) {
866 mthca_cq_clean(dev, to_mcq(qp->ibqp.send_cq)->cqn, qp->qpn,
867 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
868 if (qp->ibqp.send_cq != qp->ibqp.recv_cq)
869 mthca_cq_clean(dev, to_mcq(qp->ibqp.recv_cq)->cqn, qp->qpn,
870 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
871
872 mthca_wq_init(&qp->sq);
873 mthca_wq_init(&qp->rq);
874
875 if (mthca_is_memfree(dev)) {
876 *qp->sq.db = 0;
877 *qp->rq.db = 0;
878 }
879 }
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return err;
882}
883
884/*
885 * Allocate and register buffer for WQEs. qp->rq.max, sq.max,
886 * rq.max_gs and sq.max_gs must all be assigned.
887 * mthca_alloc_wqe_buf will calculate rq.wqe_shift and
888 * sq.wqe_shift (as well as send_wqe_offset, is_direct, and
889 * queue)
890 */
891static int mthca_alloc_wqe_buf(struct mthca_dev *dev,
892 struct mthca_pd *pd,
893 struct mthca_qp *qp)
894{
895 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 int err = -ENOMEM;
897
898 size = sizeof (struct mthca_next_seg) +
899 qp->rq.max_gs * sizeof (struct mthca_data_seg);
900
901 for (qp->rq.wqe_shift = 6; 1 << qp->rq.wqe_shift < size;
902 qp->rq.wqe_shift++)
903 ; /* nothing */
904
905 size = sizeof (struct mthca_next_seg) +
906 qp->sq.max_gs * sizeof (struct mthca_data_seg);
907 switch (qp->transport) {
908 case MLX:
909 size += 2 * sizeof (struct mthca_data_seg);
910 break;
911 case UD:
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700912 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 size += sizeof (struct mthca_arbel_ud_seg);
914 else
915 size += sizeof (struct mthca_tavor_ud_seg);
916 break;
917 default:
918 /* bind seg is as big as atomic + raddr segs */
919 size += sizeof (struct mthca_bind_seg);
920 }
921
922 for (qp->sq.wqe_shift = 6; 1 << qp->sq.wqe_shift < size;
923 qp->sq.wqe_shift++)
924 ; /* nothing */
925
926 qp->send_wqe_offset = ALIGN(qp->rq.max << qp->rq.wqe_shift,
927 1 << qp->sq.wqe_shift);
Roland Dreier80c8ec22005-07-07 17:57:20 -0700928
929 /*
930 * If this is a userspace QP, we don't actually have to
931 * allocate anything. All we need is to calculate the WQE
932 * sizes and the send_wqe_offset, so we're done now.
933 */
934 if (pd->ibpd.uobject)
935 return 0;
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 size = PAGE_ALIGN(qp->send_wqe_offset +
938 (qp->sq.max << qp->sq.wqe_shift));
939
940 qp->wrid = kmalloc((qp->rq.max + qp->sq.max) * sizeof (u64),
941 GFP_KERNEL);
942 if (!qp->wrid)
943 goto err_out;
944
Roland Dreier87b81672005-08-18 13:39:31 -0700945 err = mthca_buf_alloc(dev, size, MTHCA_MAX_DIRECT_QP_SIZE,
946 &qp->queue, &qp->is_direct, pd, 0, &qp->mr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (err)
Roland Dreier87b81672005-08-18 13:39:31 -0700948 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return 0;
951
Roland Dreier87b81672005-08-18 13:39:31 -0700952err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 kfree(qp->wrid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return err;
955}
956
Roland Dreier80c8ec22005-07-07 17:57:20 -0700957static void mthca_free_wqe_buf(struct mthca_dev *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 struct mthca_qp *qp)
959{
Roland Dreier87b81672005-08-18 13:39:31 -0700960 mthca_buf_free(dev, PAGE_ALIGN(qp->send_wqe_offset +
961 (qp->sq.max << qp->sq.wqe_shift)),
962 &qp->queue, qp->is_direct, &qp->mr);
Roland Dreier80c8ec22005-07-07 17:57:20 -0700963 kfree(qp->wrid);
964}
965
966static int mthca_map_memfree(struct mthca_dev *dev,
967 struct mthca_qp *qp)
968{
969 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700971 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 ret = mthca_table_get(dev, dev->qp_table.qp_table, qp->qpn);
973 if (ret)
974 return ret;
975
976 ret = mthca_table_get(dev, dev->qp_table.eqp_table, qp->qpn);
977 if (ret)
978 goto err_qpc;
979
Roland Dreier80c8ec22005-07-07 17:57:20 -0700980 ret = mthca_table_get(dev, dev->qp_table.rdb_table,
981 qp->qpn << dev->qp_table.rdb_shift);
982 if (ret)
983 goto err_eqpc;
Roland Dreier08aeb142005-04-16 15:26:34 -0700984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986
987 return 0;
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989err_eqpc:
990 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
991
992err_qpc:
993 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
994
995 return ret;
996}
997
Roland Dreier80c8ec22005-07-07 17:57:20 -0700998static void mthca_unmap_memfree(struct mthca_dev *dev,
999 struct mthca_qp *qp)
1000{
1001 mthca_table_put(dev, dev->qp_table.rdb_table,
1002 qp->qpn << dev->qp_table.rdb_shift);
1003 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
1004 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
1005}
1006
1007static int mthca_alloc_memfree(struct mthca_dev *dev,
1008 struct mthca_qp *qp)
1009{
1010 int ret = 0;
1011
1012 if (mthca_is_memfree(dev)) {
1013 qp->rq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_RQ,
1014 qp->qpn, &qp->rq.db);
1015 if (qp->rq.db_index < 0)
1016 return ret;
1017
1018 qp->sq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_SQ,
1019 qp->qpn, &qp->sq.db);
1020 if (qp->sq.db_index < 0)
1021 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
1022 }
1023
1024 return ret;
1025}
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027static void mthca_free_memfree(struct mthca_dev *dev,
1028 struct mthca_qp *qp)
1029{
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001030 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 mthca_free_db(dev, MTHCA_DB_TYPE_SQ, qp->sq.db_index);
1032 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034}
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036static int mthca_alloc_qp_common(struct mthca_dev *dev,
1037 struct mthca_pd *pd,
1038 struct mthca_cq *send_cq,
1039 struct mthca_cq *recv_cq,
1040 enum ib_sig_type send_policy,
1041 struct mthca_qp *qp)
1042{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 int ret;
1044 int i;
1045
1046 atomic_set(&qp->refcount, 1);
Michael S. Tsirkin30a7e8e2005-09-07 09:45:00 -07001047 init_waitqueue_head(&qp->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 qp->state = IB_QPS_RESET;
1049 qp->atomic_rd_en = 0;
1050 qp->resp_depth = 0;
1051 qp->sq_policy = send_policy;
1052 mthca_wq_init(&qp->sq);
1053 mthca_wq_init(&qp->rq);
1054
Roland Dreier80c8ec22005-07-07 17:57:20 -07001055 ret = mthca_map_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (ret)
1057 return ret;
1058
1059 ret = mthca_alloc_wqe_buf(dev, pd, qp);
1060 if (ret) {
Roland Dreier80c8ec22005-07-07 17:57:20 -07001061 mthca_unmap_memfree(dev, qp);
1062 return ret;
1063 }
1064
1065 /*
1066 * If this is a userspace QP, we're done now. The doorbells
1067 * will be allocated and buffers will be initialized in
1068 * userspace.
1069 */
1070 if (pd->ibpd.uobject)
1071 return 0;
1072
1073 ret = mthca_alloc_memfree(dev, qp);
1074 if (ret) {
1075 mthca_free_wqe_buf(dev, qp);
1076 mthca_unmap_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return ret;
1078 }
1079
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001080 if (mthca_is_memfree(dev)) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001081 struct mthca_next_seg *next;
1082 struct mthca_data_seg *scatter;
1083 int size = (sizeof (struct mthca_next_seg) +
1084 qp->rq.max_gs * sizeof (struct mthca_data_seg)) / 16;
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 for (i = 0; i < qp->rq.max; ++i) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001087 next = get_recv_wqe(qp, i);
1088 next->nda_op = cpu_to_be32(((i + 1) & (qp->rq.max - 1)) <<
1089 qp->rq.wqe_shift);
1090 next->ee_nds = cpu_to_be32(size);
1091
1092 for (scatter = (void *) (next + 1);
1093 (void *) scatter < (void *) next + (1 << qp->rq.wqe_shift);
1094 ++scatter)
1095 scatter->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097
1098 for (i = 0; i < qp->sq.max; ++i) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001099 next = get_send_wqe(qp, i);
1100 next->nda_op = cpu_to_be32((((i + 1) & (qp->sq.max - 1)) <<
1101 qp->sq.wqe_shift) +
1102 qp->send_wqe_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
1104 }
1105
1106 return 0;
1107}
1108
Roland Dreier80c8ec22005-07-07 17:57:20 -07001109static int mthca_set_qp_size(struct mthca_dev *dev, struct ib_qp_cap *cap,
1110 struct mthca_qp *qp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Roland Dreier80c8ec22005-07-07 17:57:20 -07001112 /* Sanity check QP size before proceeding */
1113 if (cap->max_send_wr > 65536 || cap->max_recv_wr > 65536 ||
1114 cap->max_send_sge > 64 || cap->max_recv_sge > 64)
1115 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Roland Dreier80c8ec22005-07-07 17:57:20 -07001117 if (mthca_is_memfree(dev)) {
1118 qp->rq.max = cap->max_recv_wr ?
1119 roundup_pow_of_two(cap->max_recv_wr) : 0;
1120 qp->sq.max = cap->max_send_wr ?
1121 roundup_pow_of_two(cap->max_send_wr) : 0;
1122 } else {
1123 qp->rq.max = cap->max_recv_wr;
1124 qp->sq.max = cap->max_send_wr;
1125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Roland Dreier80c8ec22005-07-07 17:57:20 -07001127 qp->rq.max_gs = cap->max_recv_sge;
1128 qp->sq.max_gs = max_t(int, cap->max_send_sge,
1129 ALIGN(cap->max_inline_data + MTHCA_INLINE_HEADER_SIZE,
1130 MTHCA_INLINE_CHUNK_SIZE) /
1131 sizeof (struct mthca_data_seg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Roland Dreier80c8ec22005-07-07 17:57:20 -07001133 /*
1134 * For MLX transport we need 2 extra S/G entries:
1135 * one for the header and one for the checksum at the end
1136 */
1137 if ((qp->transport == MLX && qp->sq.max_gs + 2 > dev->limits.max_sg) ||
1138 qp->sq.max_gs > dev->limits.max_sg || qp->rq.max_gs > dev->limits.max_sg)
1139 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Roland Dreier80c8ec22005-07-07 17:57:20 -07001141 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
1144int mthca_alloc_qp(struct mthca_dev *dev,
1145 struct mthca_pd *pd,
1146 struct mthca_cq *send_cq,
1147 struct mthca_cq *recv_cq,
1148 enum ib_qp_type type,
1149 enum ib_sig_type send_policy,
Roland Dreier80c8ec22005-07-07 17:57:20 -07001150 struct ib_qp_cap *cap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 struct mthca_qp *qp)
1152{
1153 int err;
1154
Roland Dreier80c8ec22005-07-07 17:57:20 -07001155 err = mthca_set_qp_size(dev, cap, qp);
1156 if (err)
1157 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 switch (type) {
1160 case IB_QPT_RC: qp->transport = RC; break;
1161 case IB_QPT_UC: qp->transport = UC; break;
1162 case IB_QPT_UD: qp->transport = UD; break;
1163 default: return -EINVAL;
1164 }
1165
1166 qp->qpn = mthca_alloc(&dev->qp_table.alloc);
1167 if (qp->qpn == -1)
1168 return -ENOMEM;
1169
1170 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1171 send_policy, qp);
1172 if (err) {
1173 mthca_free(&dev->qp_table.alloc, qp->qpn);
1174 return err;
1175 }
1176
1177 spin_lock_irq(&dev->qp_table.lock);
1178 mthca_array_set(&dev->qp_table.qp,
1179 qp->qpn & (dev->limits.num_qps - 1), qp);
1180 spin_unlock_irq(&dev->qp_table.lock);
1181
1182 return 0;
1183}
1184
1185int mthca_alloc_sqp(struct mthca_dev *dev,
1186 struct mthca_pd *pd,
1187 struct mthca_cq *send_cq,
1188 struct mthca_cq *recv_cq,
1189 enum ib_sig_type send_policy,
Roland Dreier80c8ec22005-07-07 17:57:20 -07001190 struct ib_qp_cap *cap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 int qpn,
1192 int port,
1193 struct mthca_sqp *sqp)
1194{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 u32 mqpn = qpn * 2 + dev->qp_table.sqp_start + port - 1;
Roland Dreier80c8ec22005-07-07 17:57:20 -07001196 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Roland Dreier80c8ec22005-07-07 17:57:20 -07001198 err = mthca_set_qp_size(dev, cap, &sqp->qp);
1199 if (err)
1200 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 sqp->header_buf_size = sqp->qp.sq.max * MTHCA_UD_HEADER_SIZE;
1203 sqp->header_buf = dma_alloc_coherent(&dev->pdev->dev, sqp->header_buf_size,
1204 &sqp->header_dma, GFP_KERNEL);
1205 if (!sqp->header_buf)
1206 return -ENOMEM;
1207
1208 spin_lock_irq(&dev->qp_table.lock);
1209 if (mthca_array_get(&dev->qp_table.qp, mqpn))
1210 err = -EBUSY;
1211 else
1212 mthca_array_set(&dev->qp_table.qp, mqpn, sqp);
1213 spin_unlock_irq(&dev->qp_table.lock);
1214
1215 if (err)
1216 goto err_out;
1217
1218 sqp->port = port;
1219 sqp->qp.qpn = mqpn;
1220 sqp->qp.transport = MLX;
1221
1222 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1223 send_policy, &sqp->qp);
1224 if (err)
1225 goto err_out_free;
1226
1227 atomic_inc(&pd->sqp_count);
1228
1229 return 0;
1230
1231 err_out_free:
1232 /*
1233 * Lock CQs here, so that CQ polling code can do QP lookup
1234 * without taking a lock.
1235 */
1236 spin_lock_irq(&send_cq->lock);
1237 if (send_cq != recv_cq)
1238 spin_lock(&recv_cq->lock);
1239
1240 spin_lock(&dev->qp_table.lock);
1241 mthca_array_clear(&dev->qp_table.qp, mqpn);
1242 spin_unlock(&dev->qp_table.lock);
1243
1244 if (send_cq != recv_cq)
1245 spin_unlock(&recv_cq->lock);
1246 spin_unlock_irq(&send_cq->lock);
1247
1248 err_out:
1249 dma_free_coherent(&dev->pdev->dev, sqp->header_buf_size,
1250 sqp->header_buf, sqp->header_dma);
1251
1252 return err;
1253}
1254
1255void mthca_free_qp(struct mthca_dev *dev,
1256 struct mthca_qp *qp)
1257{
1258 u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 struct mthca_cq *send_cq;
1260 struct mthca_cq *recv_cq;
1261
1262 send_cq = to_mcq(qp->ibqp.send_cq);
1263 recv_cq = to_mcq(qp->ibqp.recv_cq);
1264
1265 /*
1266 * Lock CQs here, so that CQ polling code can do QP lookup
1267 * without taking a lock.
1268 */
1269 spin_lock_irq(&send_cq->lock);
1270 if (send_cq != recv_cq)
1271 spin_lock(&recv_cq->lock);
1272
1273 spin_lock(&dev->qp_table.lock);
1274 mthca_array_clear(&dev->qp_table.qp,
1275 qp->qpn & (dev->limits.num_qps - 1));
1276 spin_unlock(&dev->qp_table.lock);
1277
1278 if (send_cq != recv_cq)
1279 spin_unlock(&recv_cq->lock);
1280 spin_unlock_irq(&send_cq->lock);
1281
1282 atomic_dec(&qp->refcount);
1283 wait_event(qp->wait, !atomic_read(&qp->refcount));
1284
1285 if (qp->state != IB_QPS_RESET)
1286 mthca_MODIFY_QP(dev, MTHCA_TRANS_ANY2RST, qp->qpn, 0, NULL, 0, &status);
1287
Roland Dreier80c8ec22005-07-07 17:57:20 -07001288 /*
1289 * If this is a userspace QP, the buffers, MR, CQs and so on
1290 * will be cleaned up in userspace, so all we have to do is
1291 * unref the mem-free tables and free the QPN in our table.
1292 */
1293 if (!qp->ibqp.uobject) {
Roland Dreierec34a922005-08-19 10:59:31 -07001294 mthca_cq_clean(dev, to_mcq(qp->ibqp.send_cq)->cqn, qp->qpn,
1295 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
Roland Dreier80c8ec22005-07-07 17:57:20 -07001296 if (qp->ibqp.send_cq != qp->ibqp.recv_cq)
Roland Dreierec34a922005-08-19 10:59:31 -07001297 mthca_cq_clean(dev, to_mcq(qp->ibqp.recv_cq)->cqn, qp->qpn,
1298 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Roland Dreier80c8ec22005-07-07 17:57:20 -07001300 mthca_free_memfree(dev, qp);
1301 mthca_free_wqe_buf(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
1303
Roland Dreier80c8ec22005-07-07 17:57:20 -07001304 mthca_unmap_memfree(dev, qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 if (is_sqp(dev, qp)) {
1307 atomic_dec(&(to_mpd(qp->ibqp.pd)->sqp_count));
1308 dma_free_coherent(&dev->pdev->dev,
1309 to_msqp(qp)->header_buf_size,
1310 to_msqp(qp)->header_buf,
1311 to_msqp(qp)->header_dma);
1312 } else
1313 mthca_free(&dev->qp_table.alloc, qp->qpn);
1314}
1315
1316/* Create UD header for an MLX send and build a data segment for it */
1317static int build_mlx_header(struct mthca_dev *dev, struct mthca_sqp *sqp,
1318 int ind, struct ib_send_wr *wr,
1319 struct mthca_mlx_seg *mlx,
1320 struct mthca_data_seg *data)
1321{
1322 int header_size;
1323 int err;
Sean Hefty97f52eb2005-08-13 21:05:57 -07001324 u16 pkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326 ib_ud_header_init(256, /* assume a MAD */
1327 sqp->ud_header.grh_present,
1328 &sqp->ud_header);
1329
1330 err = mthca_read_ah(dev, to_mah(wr->wr.ud.ah), &sqp->ud_header);
1331 if (err)
1332 return err;
1333 mlx->flags &= ~cpu_to_be32(MTHCA_NEXT_SOLICIT | 1);
1334 mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MTHCA_MLX_VL15 : 0) |
Sean Hefty97f52eb2005-08-13 21:05:57 -07001335 (sqp->ud_header.lrh.destination_lid ==
1336 IB_LID_PERMISSIVE ? MTHCA_MLX_SLR : 0) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 (sqp->ud_header.lrh.service_level << 8));
1338 mlx->rlid = sqp->ud_header.lrh.destination_lid;
1339 mlx->vcrc = 0;
1340
1341 switch (wr->opcode) {
1342 case IB_WR_SEND:
1343 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
1344 sqp->ud_header.immediate_present = 0;
1345 break;
1346 case IB_WR_SEND_WITH_IMM:
1347 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
1348 sqp->ud_header.immediate_present = 1;
1349 sqp->ud_header.immediate_data = wr->imm_data;
1350 break;
1351 default:
1352 return -EINVAL;
1353 }
1354
1355 sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0;
Sean Hefty97f52eb2005-08-13 21:05:57 -07001356 if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE)
1357 sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
1359 if (!sqp->qp.ibqp.qp_num)
1360 ib_get_cached_pkey(&dev->ib_dev, sqp->port,
Sean Hefty97f52eb2005-08-13 21:05:57 -07001361 sqp->pkey_index, &pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 else
1363 ib_get_cached_pkey(&dev->ib_dev, sqp->port,
Sean Hefty97f52eb2005-08-13 21:05:57 -07001364 wr->wr.ud.pkey_index, &pkey);
1365 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
1367 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
1368 sqp->ud_header.deth.qkey = cpu_to_be32(wr->wr.ud.remote_qkey & 0x80000000 ?
1369 sqp->qkey : wr->wr.ud.remote_qkey);
1370 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
1371
1372 header_size = ib_ud_header_pack(&sqp->ud_header,
1373 sqp->header_buf +
1374 ind * MTHCA_UD_HEADER_SIZE);
1375
1376 data->byte_count = cpu_to_be32(header_size);
1377 data->lkey = cpu_to_be32(to_mpd(sqp->qp.ibqp.pd)->ntmr.ibmr.lkey);
1378 data->addr = cpu_to_be64(sqp->header_dma +
1379 ind * MTHCA_UD_HEADER_SIZE);
1380
1381 return 0;
1382}
1383
1384static inline int mthca_wq_overflow(struct mthca_wq *wq, int nreq,
1385 struct ib_cq *ib_cq)
1386{
1387 unsigned cur;
1388 struct mthca_cq *cq;
1389
1390 cur = wq->head - wq->tail;
1391 if (likely(cur + nreq < wq->max))
1392 return 0;
1393
1394 cq = to_mcq(ib_cq);
1395 spin_lock(&cq->lock);
1396 cur = wq->head - wq->tail;
1397 spin_unlock(&cq->lock);
1398
1399 return cur + nreq >= wq->max;
1400}
1401
1402int mthca_tavor_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
1403 struct ib_send_wr **bad_wr)
1404{
1405 struct mthca_dev *dev = to_mdev(ibqp->device);
1406 struct mthca_qp *qp = to_mqp(ibqp);
1407 void *wqe;
1408 void *prev_wqe;
1409 unsigned long flags;
1410 int err = 0;
1411 int nreq;
1412 int i;
1413 int size;
1414 int size0 = 0;
1415 u32 f0 = 0;
1416 int ind;
1417 u8 op0 = 0;
1418
1419 spin_lock_irqsave(&qp->sq.lock, flags);
1420
1421 /* XXX check that state is OK to post send */
1422
1423 ind = qp->sq.next_ind;
1424
1425 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1426 if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1427 mthca_err(dev, "SQ %06x full (%u head, %u tail,"
1428 " %d max, %d nreq)\n", qp->qpn,
1429 qp->sq.head, qp->sq.tail,
1430 qp->sq.max, nreq);
1431 err = -ENOMEM;
1432 *bad_wr = wr;
1433 goto out;
1434 }
1435
1436 wqe = get_send_wqe(qp, ind);
1437 prev_wqe = qp->sq.last;
1438 qp->sq.last = wqe;
1439
1440 ((struct mthca_next_seg *) wqe)->nda_op = 0;
1441 ((struct mthca_next_seg *) wqe)->ee_nds = 0;
1442 ((struct mthca_next_seg *) wqe)->flags =
1443 ((wr->send_flags & IB_SEND_SIGNALED) ?
1444 cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) |
1445 ((wr->send_flags & IB_SEND_SOLICITED) ?
1446 cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) |
1447 cpu_to_be32(1);
1448 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1449 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
Roland Dreier3fba2312005-04-16 15:26:16 -07001450 ((struct mthca_next_seg *) wqe)->imm = wr->imm_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452 wqe += sizeof (struct mthca_next_seg);
1453 size = sizeof (struct mthca_next_seg) / 16;
1454
1455 switch (qp->transport) {
1456 case RC:
1457 switch (wr->opcode) {
1458 case IB_WR_ATOMIC_CMP_AND_SWP:
1459 case IB_WR_ATOMIC_FETCH_AND_ADD:
1460 ((struct mthca_raddr_seg *) wqe)->raddr =
1461 cpu_to_be64(wr->wr.atomic.remote_addr);
1462 ((struct mthca_raddr_seg *) wqe)->rkey =
1463 cpu_to_be32(wr->wr.atomic.rkey);
1464 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1465
1466 wqe += sizeof (struct mthca_raddr_seg);
1467
1468 if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
1469 ((struct mthca_atomic_seg *) wqe)->swap_add =
1470 cpu_to_be64(wr->wr.atomic.swap);
1471 ((struct mthca_atomic_seg *) wqe)->compare =
1472 cpu_to_be64(wr->wr.atomic.compare_add);
1473 } else {
1474 ((struct mthca_atomic_seg *) wqe)->swap_add =
1475 cpu_to_be64(wr->wr.atomic.compare_add);
1476 ((struct mthca_atomic_seg *) wqe)->compare = 0;
1477 }
1478
1479 wqe += sizeof (struct mthca_atomic_seg);
1480 size += sizeof (struct mthca_raddr_seg) / 16 +
1481 sizeof (struct mthca_atomic_seg);
1482 break;
1483
1484 case IB_WR_RDMA_WRITE:
1485 case IB_WR_RDMA_WRITE_WITH_IMM:
1486 case IB_WR_RDMA_READ:
1487 ((struct mthca_raddr_seg *) wqe)->raddr =
1488 cpu_to_be64(wr->wr.rdma.remote_addr);
1489 ((struct mthca_raddr_seg *) wqe)->rkey =
1490 cpu_to_be32(wr->wr.rdma.rkey);
1491 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1492 wqe += sizeof (struct mthca_raddr_seg);
1493 size += sizeof (struct mthca_raddr_seg) / 16;
1494 break;
1495
1496 default:
1497 /* No extra segments required for sends */
1498 break;
1499 }
1500
1501 break;
1502
Roland Dreier9e6970b2005-06-27 14:36:42 -07001503 case UC:
1504 switch (wr->opcode) {
1505 case IB_WR_RDMA_WRITE:
1506 case IB_WR_RDMA_WRITE_WITH_IMM:
1507 ((struct mthca_raddr_seg *) wqe)->raddr =
1508 cpu_to_be64(wr->wr.rdma.remote_addr);
1509 ((struct mthca_raddr_seg *) wqe)->rkey =
1510 cpu_to_be32(wr->wr.rdma.rkey);
1511 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1512 wqe += sizeof (struct mthca_raddr_seg);
1513 size += sizeof (struct mthca_raddr_seg) / 16;
1514 break;
1515
1516 default:
1517 /* No extra segments required for sends */
1518 break;
1519 }
1520
1521 break;
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 case UD:
1524 ((struct mthca_tavor_ud_seg *) wqe)->lkey =
1525 cpu_to_be32(to_mah(wr->wr.ud.ah)->key);
1526 ((struct mthca_tavor_ud_seg *) wqe)->av_addr =
1527 cpu_to_be64(to_mah(wr->wr.ud.ah)->avdma);
1528 ((struct mthca_tavor_ud_seg *) wqe)->dqpn =
1529 cpu_to_be32(wr->wr.ud.remote_qpn);
1530 ((struct mthca_tavor_ud_seg *) wqe)->qkey =
1531 cpu_to_be32(wr->wr.ud.remote_qkey);
1532
1533 wqe += sizeof (struct mthca_tavor_ud_seg);
1534 size += sizeof (struct mthca_tavor_ud_seg) / 16;
1535 break;
1536
1537 case MLX:
1538 err = build_mlx_header(dev, to_msqp(qp), ind, wr,
1539 wqe - sizeof (struct mthca_next_seg),
1540 wqe);
1541 if (err) {
1542 *bad_wr = wr;
1543 goto out;
1544 }
1545 wqe += sizeof (struct mthca_data_seg);
1546 size += sizeof (struct mthca_data_seg) / 16;
1547 break;
1548 }
1549
1550 if (wr->num_sge > qp->sq.max_gs) {
1551 mthca_err(dev, "too many gathers\n");
1552 err = -EINVAL;
1553 *bad_wr = wr;
1554 goto out;
1555 }
1556
1557 for (i = 0; i < wr->num_sge; ++i) {
1558 ((struct mthca_data_seg *) wqe)->byte_count =
1559 cpu_to_be32(wr->sg_list[i].length);
1560 ((struct mthca_data_seg *) wqe)->lkey =
1561 cpu_to_be32(wr->sg_list[i].lkey);
1562 ((struct mthca_data_seg *) wqe)->addr =
1563 cpu_to_be64(wr->sg_list[i].addr);
1564 wqe += sizeof (struct mthca_data_seg);
1565 size += sizeof (struct mthca_data_seg) / 16;
1566 }
1567
1568 /* Add one more inline data segment for ICRC */
1569 if (qp->transport == MLX) {
1570 ((struct mthca_data_seg *) wqe)->byte_count =
1571 cpu_to_be32((1 << 31) | 4);
1572 ((u32 *) wqe)[1] = 0;
1573 wqe += sizeof (struct mthca_data_seg);
1574 size += sizeof (struct mthca_data_seg) / 16;
1575 }
1576
1577 qp->wrid[ind + qp->rq.max] = wr->wr_id;
1578
1579 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
1580 mthca_err(dev, "opcode invalid\n");
1581 err = -EINVAL;
1582 *bad_wr = wr;
1583 goto out;
1584 }
1585
1586 if (prev_wqe) {
1587 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1588 cpu_to_be32(((ind << qp->sq.wqe_shift) +
1589 qp->send_wqe_offset) |
1590 mthca_opcode[wr->opcode]);
1591 wmb();
1592 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1593 cpu_to_be32((size0 ? 0 : MTHCA_NEXT_DBD) | size);
1594 }
1595
1596 if (!size0) {
1597 size0 = size;
1598 op0 = mthca_opcode[wr->opcode];
1599 }
1600
1601 ++ind;
1602 if (unlikely(ind >= qp->sq.max))
1603 ind -= qp->sq.max;
1604 }
1605
1606out:
1607 if (likely(nreq)) {
Sean Hefty97f52eb2005-08-13 21:05:57 -07001608 __be32 doorbell[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 doorbell[0] = cpu_to_be32(((qp->sq.next_ind << qp->sq.wqe_shift) +
1611 qp->send_wqe_offset) | f0 | op0);
1612 doorbell[1] = cpu_to_be32((qp->qpn << 8) | size0);
1613
1614 wmb();
1615
1616 mthca_write64(doorbell,
1617 dev->kar + MTHCA_SEND_DOORBELL,
1618 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1619 }
1620
1621 qp->sq.next_ind = ind;
1622 qp->sq.head += nreq;
1623
1624 spin_unlock_irqrestore(&qp->sq.lock, flags);
1625 return err;
1626}
1627
1628int mthca_tavor_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
1629 struct ib_recv_wr **bad_wr)
1630{
1631 struct mthca_dev *dev = to_mdev(ibqp->device);
1632 struct mthca_qp *qp = to_mqp(ibqp);
1633 unsigned long flags;
1634 int err = 0;
1635 int nreq;
1636 int i;
1637 int size;
1638 int size0 = 0;
1639 int ind;
1640 void *wqe;
1641 void *prev_wqe;
1642
1643 spin_lock_irqsave(&qp->rq.lock, flags);
1644
1645 /* XXX check that state is OK to post receive */
1646
1647 ind = qp->rq.next_ind;
1648
1649 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1650 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
1651 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
1652 " %d max, %d nreq)\n", qp->qpn,
1653 qp->rq.head, qp->rq.tail,
1654 qp->rq.max, nreq);
1655 err = -ENOMEM;
1656 *bad_wr = wr;
1657 goto out;
1658 }
1659
1660 wqe = get_recv_wqe(qp, ind);
1661 prev_wqe = qp->rq.last;
1662 qp->rq.last = wqe;
1663
1664 ((struct mthca_next_seg *) wqe)->nda_op = 0;
1665 ((struct mthca_next_seg *) wqe)->ee_nds =
1666 cpu_to_be32(MTHCA_NEXT_DBD);
1667 ((struct mthca_next_seg *) wqe)->flags = 0;
1668
1669 wqe += sizeof (struct mthca_next_seg);
1670 size = sizeof (struct mthca_next_seg) / 16;
1671
1672 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
1673 err = -EINVAL;
1674 *bad_wr = wr;
1675 goto out;
1676 }
1677
1678 for (i = 0; i < wr->num_sge; ++i) {
1679 ((struct mthca_data_seg *) wqe)->byte_count =
1680 cpu_to_be32(wr->sg_list[i].length);
1681 ((struct mthca_data_seg *) wqe)->lkey =
1682 cpu_to_be32(wr->sg_list[i].lkey);
1683 ((struct mthca_data_seg *) wqe)->addr =
1684 cpu_to_be64(wr->sg_list[i].addr);
1685 wqe += sizeof (struct mthca_data_seg);
1686 size += sizeof (struct mthca_data_seg) / 16;
1687 }
1688
1689 qp->wrid[ind] = wr->wr_id;
1690
1691 if (likely(prev_wqe)) {
1692 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1693 cpu_to_be32((ind << qp->rq.wqe_shift) | 1);
1694 wmb();
1695 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1696 cpu_to_be32(MTHCA_NEXT_DBD | size);
1697 }
1698
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
1908 if (likely(prev_wqe)) {
1909 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1910 cpu_to_be32(((ind << qp->sq.wqe_shift) +
1911 qp->send_wqe_offset) |
1912 mthca_opcode[wr->opcode]);
1913 wmb();
1914 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1915 cpu_to_be32(MTHCA_NEXT_DBD | size);
1916 }
1917
1918 if (!size0) {
1919 size0 = size;
1920 op0 = mthca_opcode[wr->opcode];
1921 }
1922
1923 ++ind;
1924 if (unlikely(ind >= qp->sq.max))
1925 ind -= qp->sq.max;
1926 }
1927
1928out:
1929 if (likely(nreq)) {
Sean Hefty97f52eb2005-08-13 21:05:57 -07001930 __be32 doorbell[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 doorbell[0] = cpu_to_be32((nreq << 24) |
1933 ((qp->sq.head & 0xffff) << 8) |
1934 f0 | op0);
1935 doorbell[1] = cpu_to_be32((qp->qpn << 8) | size0);
1936
1937 qp->sq.head += nreq;
1938
1939 /*
1940 * Make sure that descriptors are written before
1941 * doorbell record.
1942 */
1943 wmb();
1944 *qp->sq.db = cpu_to_be32(qp->sq.head & 0xffff);
1945
1946 /*
1947 * Make sure doorbell record is written before we
1948 * write MMIO send doorbell.
1949 */
1950 wmb();
1951 mthca_write64(doorbell,
1952 dev->kar + MTHCA_SEND_DOORBELL,
1953 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1954 }
1955
1956 spin_unlock_irqrestore(&qp->sq.lock, flags);
1957 return err;
1958}
1959
1960int mthca_arbel_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
1961 struct ib_recv_wr **bad_wr)
1962{
1963 struct mthca_dev *dev = to_mdev(ibqp->device);
1964 struct mthca_qp *qp = to_mqp(ibqp);
1965 unsigned long flags;
1966 int err = 0;
1967 int nreq;
1968 int ind;
1969 int i;
1970 void *wqe;
1971
1972 spin_lock_irqsave(&qp->rq.lock, flags);
1973
1974 /* XXX check that state is OK to post receive */
1975
1976 ind = qp->rq.head & (qp->rq.max - 1);
1977
1978 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1979 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
1980 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
1981 " %d max, %d nreq)\n", qp->qpn,
1982 qp->rq.head, qp->rq.tail,
1983 qp->rq.max, nreq);
1984 err = -ENOMEM;
1985 *bad_wr = wr;
1986 goto out;
1987 }
1988
1989 wqe = get_recv_wqe(qp, ind);
1990
1991 ((struct mthca_next_seg *) wqe)->flags = 0;
1992
1993 wqe += sizeof (struct mthca_next_seg);
1994
1995 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
1996 err = -EINVAL;
1997 *bad_wr = wr;
1998 goto out;
1999 }
2000
2001 for (i = 0; i < wr->num_sge; ++i) {
2002 ((struct mthca_data_seg *) wqe)->byte_count =
2003 cpu_to_be32(wr->sg_list[i].length);
2004 ((struct mthca_data_seg *) wqe)->lkey =
2005 cpu_to_be32(wr->sg_list[i].lkey);
2006 ((struct mthca_data_seg *) wqe)->addr =
2007 cpu_to_be64(wr->sg_list[i].addr);
2008 wqe += sizeof (struct mthca_data_seg);
2009 }
2010
2011 if (i < qp->rq.max_gs) {
2012 ((struct mthca_data_seg *) wqe)->byte_count = 0;
Roland Dreierddf841f2005-04-16 15:26:33 -07002013 ((struct mthca_data_seg *) wqe)->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 ((struct mthca_data_seg *) wqe)->addr = 0;
2015 }
2016
2017 qp->wrid[ind] = wr->wr_id;
2018
2019 ++ind;
2020 if (unlikely(ind >= qp->rq.max))
2021 ind -= qp->rq.max;
2022 }
2023out:
2024 if (likely(nreq)) {
2025 qp->rq.head += nreq;
2026
2027 /*
2028 * Make sure that descriptors are written before
2029 * doorbell record.
2030 */
2031 wmb();
2032 *qp->rq.db = cpu_to_be32(qp->rq.head & 0xffff);
2033 }
2034
2035 spin_unlock_irqrestore(&qp->rq.lock, flags);
2036 return err;
2037}
2038
2039int mthca_free_err_wqe(struct mthca_dev *dev, struct mthca_qp *qp, int is_send,
Sean Hefty97f52eb2005-08-13 21:05:57 -07002040 int index, int *dbd, __be32 *new_wqe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
2042 struct mthca_next_seg *next;
2043
Roland Dreierec34a922005-08-19 10:59:31 -07002044 /*
2045 * For SRQs, all WQEs generate a CQE, so we're always at the
2046 * end of the doorbell chain.
2047 */
2048 if (qp->ibqp.srq) {
2049 *new_wqe = 0;
2050 return 0;
2051 }
2052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 if (is_send)
2054 next = get_send_wqe(qp, index);
2055 else
2056 next = get_recv_wqe(qp, index);
2057
Roland Dreier288bdeb2005-08-19 09:19:05 -07002058 *dbd = !!(next->ee_nds & cpu_to_be32(MTHCA_NEXT_DBD));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 if (next->ee_nds & cpu_to_be32(0x3f))
2060 *new_wqe = (next->nda_op & cpu_to_be32(~0x3f)) |
2061 (next->ee_nds & cpu_to_be32(0x3f));
2062 else
2063 *new_wqe = 0;
2064
2065 return 0;
2066}
2067
2068int __devinit mthca_init_qp_table(struct mthca_dev *dev)
2069{
2070 int err;
2071 u8 status;
2072 int i;
2073
2074 spin_lock_init(&dev->qp_table.lock);
2075
2076 /*
2077 * We reserve 2 extra QPs per port for the special QPs. The
2078 * special QP for port 1 has to be even, so round up.
2079 */
2080 dev->qp_table.sqp_start = (dev->limits.reserved_qps + 1) & ~1UL;
2081 err = mthca_alloc_init(&dev->qp_table.alloc,
2082 dev->limits.num_qps,
2083 (1 << 24) - 1,
2084 dev->qp_table.sqp_start +
2085 MTHCA_MAX_PORTS * 2);
2086 if (err)
2087 return err;
2088
2089 err = mthca_array_init(&dev->qp_table.qp,
2090 dev->limits.num_qps);
2091 if (err) {
2092 mthca_alloc_cleanup(&dev->qp_table.alloc);
2093 return err;
2094 }
2095
2096 for (i = 0; i < 2; ++i) {
2097 err = mthca_CONF_SPECIAL_QP(dev, i ? IB_QPT_GSI : IB_QPT_SMI,
2098 dev->qp_table.sqp_start + i * 2,
2099 &status);
2100 if (err)
2101 goto err_out;
2102 if (status) {
2103 mthca_warn(dev, "CONF_SPECIAL_QP returned "
2104 "status %02x, aborting.\n",
2105 status);
2106 err = -EINVAL;
2107 goto err_out;
2108 }
2109 }
2110 return 0;
2111
2112 err_out:
2113 for (i = 0; i < 2; ++i)
2114 mthca_CONF_SPECIAL_QP(dev, i, 0, &status);
2115
2116 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps);
2117 mthca_alloc_cleanup(&dev->qp_table.alloc);
2118
2119 return err;
2120}
2121
2122void __devexit mthca_cleanup_qp_table(struct mthca_dev *dev)
2123{
2124 int i;
2125 u8 status;
2126
2127 for (i = 0; i < 2; ++i)
2128 mthca_CONF_SPECIAL_QP(dev, i, 0, &status);
2129
2130 mthca_alloc_cleanup(&dev->qp_table.alloc);
2131}