blob: 163a8ef4186f690b94f58f9f6600bfb12ac780b3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 *
32 * $Id: mthca_qp.c 1355 2004-12-17 15:23:43Z roland $
33 */
34
35#include <linux/init.h>
36
37#include <ib_verbs.h>
38#include <ib_cache.h>
39#include <ib_pack.h>
40
41#include "mthca_dev.h"
42#include "mthca_cmd.h"
43#include "mthca_memfree.h"
44
45enum {
46 MTHCA_MAX_DIRECT_QP_SIZE = 4 * PAGE_SIZE,
47 MTHCA_ACK_REQ_FREQ = 10,
48 MTHCA_FLIGHT_LIMIT = 9,
49 MTHCA_UD_HEADER_SIZE = 72 /* largest UD header possible */
50};
51
52enum {
53 MTHCA_QP_STATE_RST = 0,
54 MTHCA_QP_STATE_INIT = 1,
55 MTHCA_QP_STATE_RTR = 2,
56 MTHCA_QP_STATE_RTS = 3,
57 MTHCA_QP_STATE_SQE = 4,
58 MTHCA_QP_STATE_SQD = 5,
59 MTHCA_QP_STATE_ERR = 6,
60 MTHCA_QP_STATE_DRAINING = 7
61};
62
63enum {
64 MTHCA_QP_ST_RC = 0x0,
65 MTHCA_QP_ST_UC = 0x1,
66 MTHCA_QP_ST_RD = 0x2,
67 MTHCA_QP_ST_UD = 0x3,
68 MTHCA_QP_ST_MLX = 0x7
69};
70
71enum {
72 MTHCA_QP_PM_MIGRATED = 0x3,
73 MTHCA_QP_PM_ARMED = 0x0,
74 MTHCA_QP_PM_REARM = 0x1
75};
76
77enum {
78 /* qp_context flags */
79 MTHCA_QP_BIT_DE = 1 << 8,
80 /* params1 */
81 MTHCA_QP_BIT_SRE = 1 << 15,
82 MTHCA_QP_BIT_SWE = 1 << 14,
83 MTHCA_QP_BIT_SAE = 1 << 13,
84 MTHCA_QP_BIT_SIC = 1 << 4,
85 MTHCA_QP_BIT_SSC = 1 << 3,
86 /* params2 */
87 MTHCA_QP_BIT_RRE = 1 << 15,
88 MTHCA_QP_BIT_RWE = 1 << 14,
89 MTHCA_QP_BIT_RAE = 1 << 13,
90 MTHCA_QP_BIT_RIC = 1 << 4,
91 MTHCA_QP_BIT_RSC = 1 << 3
92};
93
94struct mthca_qp_path {
95 u32 port_pkey;
96 u8 rnr_retry;
97 u8 g_mylmc;
98 u16 rlid;
99 u8 ackto;
100 u8 mgid_index;
101 u8 static_rate;
102 u8 hop_limit;
103 u32 sl_tclass_flowlabel;
104 u8 rgid[16];
105} __attribute__((packed));
106
107struct mthca_qp_context {
108 u32 flags;
109 u32 tavor_sched_queue; /* Reserved on Arbel */
110 u8 mtu_msgmax;
111 u8 rq_size_stride; /* Reserved on Tavor */
112 u8 sq_size_stride; /* Reserved on Tavor */
113 u8 rlkey_arbel_sched_queue; /* Reserved on Tavor */
114 u32 usr_page;
115 u32 local_qpn;
116 u32 remote_qpn;
117 u32 reserved1[2];
118 struct mthca_qp_path pri_path;
119 struct mthca_qp_path alt_path;
120 u32 rdd;
121 u32 pd;
122 u32 wqe_base;
123 u32 wqe_lkey;
124 u32 params1;
125 u32 reserved2;
126 u32 next_send_psn;
127 u32 cqn_snd;
128 u32 snd_wqe_base_l; /* Next send WQE on Tavor */
129 u32 snd_db_index; /* (debugging only entries) */
130 u32 last_acked_psn;
131 u32 ssn;
132 u32 params2;
133 u32 rnr_nextrecvpsn;
134 u32 ra_buff_indx;
135 u32 cqn_rcv;
136 u32 rcv_wqe_base_l; /* Next recv WQE on Tavor */
137 u32 rcv_db_index; /* (debugging only entries) */
138 u32 qkey;
139 u32 srqn;
140 u32 rmsn;
141 u16 rq_wqe_counter; /* reserved on Tavor */
142 u16 sq_wqe_counter; /* reserved on Tavor */
143 u32 reserved3[18];
144} __attribute__((packed));
145
146struct mthca_qp_param {
147 u32 opt_param_mask;
148 u32 reserved1;
149 struct mthca_qp_context context;
150 u32 reserved2[62];
151} __attribute__((packed));
152
153enum {
154 MTHCA_QP_OPTPAR_ALT_ADDR_PATH = 1 << 0,
155 MTHCA_QP_OPTPAR_RRE = 1 << 1,
156 MTHCA_QP_OPTPAR_RAE = 1 << 2,
157 MTHCA_QP_OPTPAR_RWE = 1 << 3,
158 MTHCA_QP_OPTPAR_PKEY_INDEX = 1 << 4,
159 MTHCA_QP_OPTPAR_Q_KEY = 1 << 5,
160 MTHCA_QP_OPTPAR_RNR_TIMEOUT = 1 << 6,
161 MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH = 1 << 7,
162 MTHCA_QP_OPTPAR_SRA_MAX = 1 << 8,
163 MTHCA_QP_OPTPAR_RRA_MAX = 1 << 9,
164 MTHCA_QP_OPTPAR_PM_STATE = 1 << 10,
165 MTHCA_QP_OPTPAR_PORT_NUM = 1 << 11,
166 MTHCA_QP_OPTPAR_RETRY_COUNT = 1 << 12,
167 MTHCA_QP_OPTPAR_ALT_RNR_RETRY = 1 << 13,
168 MTHCA_QP_OPTPAR_ACK_TIMEOUT = 1 << 14,
169 MTHCA_QP_OPTPAR_RNR_RETRY = 1 << 15,
170 MTHCA_QP_OPTPAR_SCHED_QUEUE = 1 << 16
171};
172
173enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 MTHCA_NEXT_DBD = 1 << 7,
175 MTHCA_NEXT_FENCE = 1 << 6,
176 MTHCA_NEXT_CQ_UPDATE = 1 << 3,
177 MTHCA_NEXT_EVENT_GEN = 1 << 2,
178 MTHCA_NEXT_SOLICIT = 1 << 1,
179
180 MTHCA_MLX_VL15 = 1 << 17,
181 MTHCA_MLX_SLR = 1 << 16
182};
183
Roland Dreierddf841f2005-04-16 15:26:33 -0700184enum {
185 MTHCA_INVAL_LKEY = 0x100
186};
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188struct mthca_next_seg {
189 u32 nda_op; /* [31:6] next WQE [4:0] next opcode */
190 u32 ee_nds; /* [31:8] next EE [7] DBD [6] F [5:0] next WQE size */
191 u32 flags; /* [3] CQ [2] Event [1] Solicit */
192 u32 imm; /* immediate data */
193};
194
195struct mthca_tavor_ud_seg {
196 u32 reserved1;
197 u32 lkey;
198 u64 av_addr;
199 u32 reserved2[4];
200 u32 dqpn;
201 u32 qkey;
202 u32 reserved3[2];
203};
204
205struct mthca_arbel_ud_seg {
206 u32 av[8];
207 u32 dqpn;
208 u32 qkey;
209 u32 reserved[2];
210};
211
212struct mthca_bind_seg {
213 u32 flags; /* [31] Atomic [30] rem write [29] rem read */
214 u32 reserved;
215 u32 new_rkey;
216 u32 lkey;
217 u64 addr;
218 u64 length;
219};
220
221struct mthca_raddr_seg {
222 u64 raddr;
223 u32 rkey;
224 u32 reserved;
225};
226
227struct mthca_atomic_seg {
228 u64 swap_add;
229 u64 compare;
230};
231
232struct mthca_data_seg {
233 u32 byte_count;
234 u32 lkey;
235 u64 addr;
236};
237
238struct mthca_mlx_seg {
239 u32 nda_op;
240 u32 nds;
241 u32 flags; /* [17] VL15 [16] SLR [14:12] static rate
242 [11:8] SL [3] C [2] E */
243 u16 rlid;
244 u16 vcrc;
245};
246
247static const u8 mthca_opcode[] = {
248 [IB_WR_SEND] = MTHCA_OPCODE_SEND,
249 [IB_WR_SEND_WITH_IMM] = MTHCA_OPCODE_SEND_IMM,
250 [IB_WR_RDMA_WRITE] = MTHCA_OPCODE_RDMA_WRITE,
251 [IB_WR_RDMA_WRITE_WITH_IMM] = MTHCA_OPCODE_RDMA_WRITE_IMM,
252 [IB_WR_RDMA_READ] = MTHCA_OPCODE_RDMA_READ,
253 [IB_WR_ATOMIC_CMP_AND_SWP] = MTHCA_OPCODE_ATOMIC_CS,
254 [IB_WR_ATOMIC_FETCH_AND_ADD] = MTHCA_OPCODE_ATOMIC_FA,
255};
256
257static int is_sqp(struct mthca_dev *dev, struct mthca_qp *qp)
258{
259 return qp->qpn >= dev->qp_table.sqp_start &&
260 qp->qpn <= dev->qp_table.sqp_start + 3;
261}
262
263static int is_qp0(struct mthca_dev *dev, struct mthca_qp *qp)
264{
265 return qp->qpn >= dev->qp_table.sqp_start &&
266 qp->qpn <= dev->qp_table.sqp_start + 1;
267}
268
269static void *get_recv_wqe(struct mthca_qp *qp, int n)
270{
271 if (qp->is_direct)
272 return qp->queue.direct.buf + (n << qp->rq.wqe_shift);
273 else
274 return qp->queue.page_list[(n << qp->rq.wqe_shift) >> PAGE_SHIFT].buf +
275 ((n << qp->rq.wqe_shift) & (PAGE_SIZE - 1));
276}
277
278static void *get_send_wqe(struct mthca_qp *qp, int n)
279{
280 if (qp->is_direct)
281 return qp->queue.direct.buf + qp->send_wqe_offset +
282 (n << qp->sq.wqe_shift);
283 else
284 return qp->queue.page_list[(qp->send_wqe_offset +
285 (n << qp->sq.wqe_shift)) >>
286 PAGE_SHIFT].buf +
287 ((qp->send_wqe_offset + (n << qp->sq.wqe_shift)) &
288 (PAGE_SIZE - 1));
289}
290
291void mthca_qp_event(struct mthca_dev *dev, u32 qpn,
292 enum ib_event_type event_type)
293{
294 struct mthca_qp *qp;
295 struct ib_event event;
296
297 spin_lock(&dev->qp_table.lock);
298 qp = mthca_array_get(&dev->qp_table.qp, qpn & (dev->limits.num_qps - 1));
299 if (qp)
300 atomic_inc(&qp->refcount);
301 spin_unlock(&dev->qp_table.lock);
302
303 if (!qp) {
304 mthca_warn(dev, "Async event for bogus QP %08x\n", qpn);
305 return;
306 }
307
308 event.device = &dev->ib_dev;
309 event.event = event_type;
310 event.element.qp = &qp->ibqp;
311 if (qp->ibqp.event_handler)
312 qp->ibqp.event_handler(&event, qp->ibqp.qp_context);
313
314 if (atomic_dec_and_test(&qp->refcount))
315 wake_up(&qp->wait);
316}
317
318static int to_mthca_state(enum ib_qp_state ib_state)
319{
320 switch (ib_state) {
321 case IB_QPS_RESET: return MTHCA_QP_STATE_RST;
322 case IB_QPS_INIT: return MTHCA_QP_STATE_INIT;
323 case IB_QPS_RTR: return MTHCA_QP_STATE_RTR;
324 case IB_QPS_RTS: return MTHCA_QP_STATE_RTS;
325 case IB_QPS_SQD: return MTHCA_QP_STATE_SQD;
326 case IB_QPS_SQE: return MTHCA_QP_STATE_SQE;
327 case IB_QPS_ERR: return MTHCA_QP_STATE_ERR;
328 default: return -1;
329 }
330}
331
332enum { RC, UC, UD, RD, RDEE, MLX, NUM_TRANS };
333
334static int to_mthca_st(int transport)
335{
336 switch (transport) {
337 case RC: return MTHCA_QP_ST_RC;
338 case UC: return MTHCA_QP_ST_UC;
339 case UD: return MTHCA_QP_ST_UD;
340 case RD: return MTHCA_QP_ST_RD;
341 case MLX: return MTHCA_QP_ST_MLX;
342 default: return -1;
343 }
344}
345
346static const struct {
347 int trans;
348 u32 req_param[NUM_TRANS];
349 u32 opt_param[NUM_TRANS];
350} state_table[IB_QPS_ERR + 1][IB_QPS_ERR + 1] = {
351 [IB_QPS_RESET] = {
352 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
353 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
354 [IB_QPS_INIT] = {
355 .trans = MTHCA_TRANS_RST2INIT,
356 .req_param = {
357 [UD] = (IB_QP_PKEY_INDEX |
358 IB_QP_PORT |
359 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700360 [UC] = (IB_QP_PKEY_INDEX |
361 IB_QP_PORT |
362 IB_QP_ACCESS_FLAGS),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 [RC] = (IB_QP_PKEY_INDEX |
364 IB_QP_PORT |
365 IB_QP_ACCESS_FLAGS),
366 [MLX] = (IB_QP_PKEY_INDEX |
367 IB_QP_QKEY),
368 },
369 /* bug-for-bug compatibility with VAPI: */
370 .opt_param = {
371 [MLX] = IB_QP_PORT
372 }
373 },
374 },
375 [IB_QPS_INIT] = {
376 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
377 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
378 [IB_QPS_INIT] = {
379 .trans = MTHCA_TRANS_INIT2INIT,
380 .opt_param = {
381 [UD] = (IB_QP_PKEY_INDEX |
382 IB_QP_PORT |
383 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700384 [UC] = (IB_QP_PKEY_INDEX |
385 IB_QP_PORT |
386 IB_QP_ACCESS_FLAGS),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 [RC] = (IB_QP_PKEY_INDEX |
388 IB_QP_PORT |
389 IB_QP_ACCESS_FLAGS),
390 [MLX] = (IB_QP_PKEY_INDEX |
391 IB_QP_QKEY),
392 }
393 },
394 [IB_QPS_RTR] = {
395 .trans = MTHCA_TRANS_INIT2RTR,
396 .req_param = {
Roland Dreier9e6970b2005-06-27 14:36:42 -0700397 [UC] = (IB_QP_AV |
398 IB_QP_PATH_MTU |
399 IB_QP_DEST_QPN |
400 IB_QP_RQ_PSN |
401 IB_QP_MAX_DEST_RD_ATOMIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 [RC] = (IB_QP_AV |
403 IB_QP_PATH_MTU |
404 IB_QP_DEST_QPN |
405 IB_QP_RQ_PSN |
406 IB_QP_MAX_DEST_RD_ATOMIC |
407 IB_QP_MIN_RNR_TIMER),
408 },
409 .opt_param = {
410 [UD] = (IB_QP_PKEY_INDEX |
411 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700412 [UC] = (IB_QP_ALT_PATH |
413 IB_QP_ACCESS_FLAGS |
414 IB_QP_PKEY_INDEX),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 [RC] = (IB_QP_ALT_PATH |
416 IB_QP_ACCESS_FLAGS |
417 IB_QP_PKEY_INDEX),
418 [MLX] = (IB_QP_PKEY_INDEX |
419 IB_QP_QKEY),
420 }
421 }
422 },
423 [IB_QPS_RTR] = {
424 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
425 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
426 [IB_QPS_RTS] = {
427 .trans = MTHCA_TRANS_RTR2RTS,
428 .req_param = {
429 [UD] = IB_QP_SQ_PSN,
Roland Dreier9e6970b2005-06-27 14:36:42 -0700430 [UC] = (IB_QP_SQ_PSN |
431 IB_QP_MAX_QP_RD_ATOMIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 [RC] = (IB_QP_TIMEOUT |
433 IB_QP_RETRY_CNT |
434 IB_QP_RNR_RETRY |
435 IB_QP_SQ_PSN |
436 IB_QP_MAX_QP_RD_ATOMIC),
437 [MLX] = IB_QP_SQ_PSN,
438 },
439 .opt_param = {
440 [UD] = (IB_QP_CUR_STATE |
441 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700442 [UC] = (IB_QP_CUR_STATE |
443 IB_QP_ALT_PATH |
444 IB_QP_ACCESS_FLAGS |
445 IB_QP_PKEY_INDEX |
446 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 [RC] = (IB_QP_CUR_STATE |
448 IB_QP_ALT_PATH |
449 IB_QP_ACCESS_FLAGS |
450 IB_QP_PKEY_INDEX |
451 IB_QP_MIN_RNR_TIMER |
452 IB_QP_PATH_MIG_STATE),
453 [MLX] = (IB_QP_CUR_STATE |
454 IB_QP_QKEY),
455 }
456 }
457 },
458 [IB_QPS_RTS] = {
459 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
460 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
461 [IB_QPS_RTS] = {
462 .trans = MTHCA_TRANS_RTS2RTS,
463 .opt_param = {
464 [UD] = (IB_QP_CUR_STATE |
465 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700466 [UC] = (IB_QP_ACCESS_FLAGS |
467 IB_QP_ALT_PATH |
468 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 [RC] = (IB_QP_ACCESS_FLAGS |
470 IB_QP_ALT_PATH |
471 IB_QP_PATH_MIG_STATE |
472 IB_QP_MIN_RNR_TIMER),
473 [MLX] = (IB_QP_CUR_STATE |
474 IB_QP_QKEY),
475 }
476 },
477 [IB_QPS_SQD] = {
478 .trans = MTHCA_TRANS_RTS2SQD,
479 },
480 },
481 [IB_QPS_SQD] = {
482 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
483 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
484 [IB_QPS_RTS] = {
485 .trans = MTHCA_TRANS_SQD2RTS,
486 .opt_param = {
487 [UD] = (IB_QP_CUR_STATE |
488 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700489 [UC] = (IB_QP_CUR_STATE |
490 IB_QP_ALT_PATH |
491 IB_QP_ACCESS_FLAGS |
492 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 [RC] = (IB_QP_CUR_STATE |
494 IB_QP_ALT_PATH |
495 IB_QP_ACCESS_FLAGS |
496 IB_QP_MIN_RNR_TIMER |
497 IB_QP_PATH_MIG_STATE),
498 [MLX] = (IB_QP_CUR_STATE |
499 IB_QP_QKEY),
500 }
501 },
502 [IB_QPS_SQD] = {
503 .trans = MTHCA_TRANS_SQD2SQD,
504 .opt_param = {
505 [UD] = (IB_QP_PKEY_INDEX |
506 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700507 [UC] = (IB_QP_AV |
508 IB_QP_MAX_QP_RD_ATOMIC |
509 IB_QP_MAX_DEST_RD_ATOMIC |
510 IB_QP_CUR_STATE |
511 IB_QP_ALT_PATH |
512 IB_QP_ACCESS_FLAGS |
513 IB_QP_PKEY_INDEX |
514 IB_QP_PATH_MIG_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 [RC] = (IB_QP_AV |
516 IB_QP_TIMEOUT |
517 IB_QP_RETRY_CNT |
518 IB_QP_RNR_RETRY |
519 IB_QP_MAX_QP_RD_ATOMIC |
520 IB_QP_MAX_DEST_RD_ATOMIC |
521 IB_QP_CUR_STATE |
522 IB_QP_ALT_PATH |
523 IB_QP_ACCESS_FLAGS |
524 IB_QP_PKEY_INDEX |
525 IB_QP_MIN_RNR_TIMER |
526 IB_QP_PATH_MIG_STATE),
527 [MLX] = (IB_QP_PKEY_INDEX |
528 IB_QP_QKEY),
529 }
530 }
531 },
532 [IB_QPS_SQE] = {
533 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
534 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR },
535 [IB_QPS_RTS] = {
536 .trans = MTHCA_TRANS_SQERR2RTS,
537 .opt_param = {
538 [UD] = (IB_QP_CUR_STATE |
539 IB_QP_QKEY),
Roland Dreier9e6970b2005-06-27 14:36:42 -0700540 [UC] = (IB_QP_CUR_STATE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 [RC] = (IB_QP_CUR_STATE |
542 IB_QP_MIN_RNR_TIMER),
543 [MLX] = (IB_QP_CUR_STATE |
544 IB_QP_QKEY),
545 }
546 }
547 },
548 [IB_QPS_ERR] = {
549 [IB_QPS_RESET] = { .trans = MTHCA_TRANS_ANY2RST },
550 [IB_QPS_ERR] = { .trans = MTHCA_TRANS_ANY2ERR }
551 }
552};
553
554static void store_attrs(struct mthca_sqp *sqp, struct ib_qp_attr *attr,
555 int attr_mask)
556{
557 if (attr_mask & IB_QP_PKEY_INDEX)
558 sqp->pkey_index = attr->pkey_index;
559 if (attr_mask & IB_QP_QKEY)
560 sqp->qkey = attr->qkey;
561 if (attr_mask & IB_QP_SQ_PSN)
562 sqp->send_psn = attr->sq_psn;
563}
564
565static void init_port(struct mthca_dev *dev, int port)
566{
567 int err;
568 u8 status;
569 struct mthca_init_ib_param param;
570
571 memset(&param, 0, sizeof param);
572
573 param.enable_1x = 1;
574 param.enable_4x = 1;
575 param.vl_cap = dev->limits.vl_cap;
576 param.mtu_cap = dev->limits.mtu_cap;
577 param.gid_cap = dev->limits.gid_table_len;
578 param.pkey_cap = dev->limits.pkey_table_len;
579
580 err = mthca_INIT_IB(dev, &param, port, &status);
581 if (err)
582 mthca_warn(dev, "INIT_IB failed, return code %d.\n", err);
583 if (status)
584 mthca_warn(dev, "INIT_IB returned status %02x.\n", status);
585}
586
587int mthca_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, int attr_mask)
588{
589 struct mthca_dev *dev = to_mdev(ibqp->device);
590 struct mthca_qp *qp = to_mqp(ibqp);
591 enum ib_qp_state cur_state, new_state;
Roland Dreiered878452005-06-27 14:36:45 -0700592 struct mthca_mailbox *mailbox;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 struct mthca_qp_param *qp_param;
594 struct mthca_qp_context *qp_context;
595 u32 req_param, opt_param;
596 u8 status;
597 int err;
598
599 if (attr_mask & IB_QP_CUR_STATE) {
600 if (attr->cur_qp_state != IB_QPS_RTR &&
601 attr->cur_qp_state != IB_QPS_RTS &&
602 attr->cur_qp_state != IB_QPS_SQD &&
603 attr->cur_qp_state != IB_QPS_SQE)
604 return -EINVAL;
605 else
606 cur_state = attr->cur_qp_state;
607 } else {
608 spin_lock_irq(&qp->sq.lock);
609 spin_lock(&qp->rq.lock);
610 cur_state = qp->state;
611 spin_unlock(&qp->rq.lock);
612 spin_unlock_irq(&qp->sq.lock);
613 }
614
615 if (attr_mask & IB_QP_STATE) {
616 if (attr->qp_state < 0 || attr->qp_state > IB_QPS_ERR)
617 return -EINVAL;
618 new_state = attr->qp_state;
619 } else
620 new_state = cur_state;
621
622 if (state_table[cur_state][new_state].trans == MTHCA_TRANS_INVALID) {
623 mthca_dbg(dev, "Illegal QP transition "
624 "%d->%d\n", cur_state, new_state);
625 return -EINVAL;
626 }
627
628 req_param = state_table[cur_state][new_state].req_param[qp->transport];
629 opt_param = state_table[cur_state][new_state].opt_param[qp->transport];
630
631 if ((req_param & attr_mask) != req_param) {
632 mthca_dbg(dev, "QP transition "
633 "%d->%d missing req attr 0x%08x\n",
634 cur_state, new_state,
635 req_param & ~attr_mask);
636 return -EINVAL;
637 }
638
639 if (attr_mask & ~(req_param | opt_param | IB_QP_STATE)) {
640 mthca_dbg(dev, "QP transition (transport %d) "
641 "%d->%d has extra attr 0x%08x\n",
642 qp->transport,
643 cur_state, new_state,
644 attr_mask & ~(req_param | opt_param |
645 IB_QP_STATE));
646 return -EINVAL;
647 }
648
Roland Dreiered878452005-06-27 14:36:45 -0700649 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
650 if (IS_ERR(mailbox))
651 return PTR_ERR(mailbox);
652 qp_param = mailbox->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 qp_context = &qp_param->context;
654 memset(qp_param, 0, sizeof *qp_param);
655
656 qp_context->flags = cpu_to_be32((to_mthca_state(new_state) << 28) |
657 (to_mthca_st(qp->transport) << 16));
658 qp_context->flags |= cpu_to_be32(MTHCA_QP_BIT_DE);
659 if (!(attr_mask & IB_QP_PATH_MIG_STATE))
660 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
661 else {
662 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PM_STATE);
663 switch (attr->path_mig_state) {
664 case IB_MIG_MIGRATED:
665 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
666 break;
667 case IB_MIG_REARM:
668 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_REARM << 11);
669 break;
670 case IB_MIG_ARMED:
671 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_ARMED << 11);
672 break;
673 }
674 }
675
676 /* leave tavor_sched_queue as 0 */
677
678 if (qp->transport == MLX || qp->transport == UD)
679 qp_context->mtu_msgmax = (IB_MTU_2048 << 5) | 11;
680 else if (attr_mask & IB_QP_PATH_MTU)
681 qp_context->mtu_msgmax = (attr->path_mtu << 5) | 31;
682
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700683 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 qp_context->rq_size_stride =
685 ((ffs(qp->rq.max) - 1) << 3) | (qp->rq.wqe_shift - 4);
686 qp_context->sq_size_stride =
687 ((ffs(qp->sq.max) - 1) << 3) | (qp->sq.wqe_shift - 4);
688 }
689
690 /* leave arbel_sched_queue as 0 */
691
692 qp_context->usr_page = cpu_to_be32(dev->driver_uar.index);
693 qp_context->local_qpn = cpu_to_be32(qp->qpn);
694 if (attr_mask & IB_QP_DEST_QPN) {
695 qp_context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
696 }
697
698 if (qp->transport == MLX)
699 qp_context->pri_path.port_pkey |=
700 cpu_to_be32(to_msqp(qp)->port << 24);
701 else {
702 if (attr_mask & IB_QP_PORT) {
703 qp_context->pri_path.port_pkey |=
704 cpu_to_be32(attr->port_num << 24);
705 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PORT_NUM);
706 }
707 }
708
709 if (attr_mask & IB_QP_PKEY_INDEX) {
710 qp_context->pri_path.port_pkey |=
711 cpu_to_be32(attr->pkey_index);
712 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PKEY_INDEX);
713 }
714
715 if (attr_mask & IB_QP_RNR_RETRY) {
716 qp_context->pri_path.rnr_retry = attr->rnr_retry << 5;
717 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_RETRY);
718 }
719
720 if (attr_mask & IB_QP_AV) {
721 qp_context->pri_path.g_mylmc = attr->ah_attr.src_path_bits & 0x7f;
722 qp_context->pri_path.rlid = cpu_to_be16(attr->ah_attr.dlid);
Roland Dreiercd123d72005-06-27 14:36:40 -0700723 qp_context->pri_path.static_rate = !!attr->ah_attr.static_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (attr->ah_attr.ah_flags & IB_AH_GRH) {
725 qp_context->pri_path.g_mylmc |= 1 << 7;
726 qp_context->pri_path.mgid_index = attr->ah_attr.grh.sgid_index;
727 qp_context->pri_path.hop_limit = attr->ah_attr.grh.hop_limit;
728 qp_context->pri_path.sl_tclass_flowlabel =
729 cpu_to_be32((attr->ah_attr.sl << 28) |
730 (attr->ah_attr.grh.traffic_class << 20) |
731 (attr->ah_attr.grh.flow_label));
732 memcpy(qp_context->pri_path.rgid,
733 attr->ah_attr.grh.dgid.raw, 16);
734 } else {
735 qp_context->pri_path.sl_tclass_flowlabel =
736 cpu_to_be32(attr->ah_attr.sl << 28);
737 }
738 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH);
739 }
740
741 if (attr_mask & IB_QP_TIMEOUT) {
742 qp_context->pri_path.ackto = attr->timeout;
743 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_ACK_TIMEOUT);
744 }
745
746 /* XXX alt_path */
747
748 /* leave rdd as 0 */
749 qp_context->pd = cpu_to_be32(to_mpd(ibqp->pd)->pd_num);
750 /* leave wqe_base as 0 (we always create an MR based at 0 for WQs) */
751 qp_context->wqe_lkey = cpu_to_be32(qp->mr.ibmr.lkey);
752 qp_context->params1 = cpu_to_be32((MTHCA_ACK_REQ_FREQ << 28) |
753 (MTHCA_FLIGHT_LIMIT << 24) |
754 MTHCA_QP_BIT_SRE |
755 MTHCA_QP_BIT_SWE |
756 MTHCA_QP_BIT_SAE);
757 if (qp->sq_policy == IB_SIGNAL_ALL_WR)
758 qp_context->params1 |= cpu_to_be32(MTHCA_QP_BIT_SSC);
759 if (attr_mask & IB_QP_RETRY_CNT) {
760 qp_context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
761 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RETRY_COUNT);
762 }
763
Roland Dreier34a4a752005-06-27 14:36:41 -0700764 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
765 qp_context->params1 |= cpu_to_be32(min(attr->max_rd_atomic ?
766 ffs(attr->max_rd_atomic) - 1 : 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 7) << 21);
768 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_SRA_MAX);
769 }
770
771 if (attr_mask & IB_QP_SQ_PSN)
772 qp_context->next_send_psn = cpu_to_be32(attr->sq_psn);
773 qp_context->cqn_snd = cpu_to_be32(to_mcq(ibqp->send_cq)->cqn);
774
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700775 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 qp_context->snd_wqe_base_l = cpu_to_be32(qp->send_wqe_offset);
777 qp_context->snd_db_index = cpu_to_be32(qp->sq.db_index);
778 }
779
780 if (attr_mask & IB_QP_ACCESS_FLAGS) {
781 /*
782 * Only enable RDMA/atomics if we have responder
783 * resources set to a non-zero value.
784 */
785 if (qp->resp_depth) {
786 qp_context->params2 |=
787 cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_WRITE ?
788 MTHCA_QP_BIT_RWE : 0);
789 qp_context->params2 |=
790 cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_READ ?
791 MTHCA_QP_BIT_RRE : 0);
792 qp_context->params2 |=
793 cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_ATOMIC ?
794 MTHCA_QP_BIT_RAE : 0);
795 }
796
797 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
798 MTHCA_QP_OPTPAR_RRE |
799 MTHCA_QP_OPTPAR_RAE);
800
801 qp->atomic_rd_en = attr->qp_access_flags;
802 }
803
Roland Dreier34a4a752005-06-27 14:36:41 -0700804 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 u8 rra_max;
806
Roland Dreier34a4a752005-06-27 14:36:41 -0700807 if (qp->resp_depth && !attr->max_dest_rd_atomic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /*
809 * Lowering our responder resources to zero.
810 * Turn off RDMA/atomics as responder.
811 * (RWE/RRE/RAE in params2 already zero)
812 */
813 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
814 MTHCA_QP_OPTPAR_RRE |
815 MTHCA_QP_OPTPAR_RAE);
816 }
817
Roland Dreier34a4a752005-06-27 14:36:41 -0700818 if (!qp->resp_depth && attr->max_dest_rd_atomic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /*
820 * Increasing our responder resources from
821 * zero. Turn on RDMA/atomics as appropriate.
822 */
823 qp_context->params2 |=
824 cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_WRITE ?
825 MTHCA_QP_BIT_RWE : 0);
826 qp_context->params2 |=
827 cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_READ ?
828 MTHCA_QP_BIT_RRE : 0);
829 qp_context->params2 |=
830 cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_ATOMIC ?
831 MTHCA_QP_BIT_RAE : 0);
832
833 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
834 MTHCA_QP_OPTPAR_RRE |
835 MTHCA_QP_OPTPAR_RAE);
836 }
837
838 for (rra_max = 0;
Roland Dreier34a4a752005-06-27 14:36:41 -0700839 1 << rra_max < attr->max_dest_rd_atomic &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 rra_max < dev->qp_table.rdb_shift;
841 ++rra_max)
842 ; /* nothing */
843
844 qp_context->params2 |= cpu_to_be32(rra_max << 21);
845 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RRA_MAX);
846
Roland Dreier34a4a752005-06-27 14:36:41 -0700847 qp->resp_depth = attr->max_dest_rd_atomic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849
850 qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RSC);
851
852 if (attr_mask & IB_QP_MIN_RNR_TIMER) {
853 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
854 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_TIMEOUT);
855 }
856 if (attr_mask & IB_QP_RQ_PSN)
857 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
858
859 qp_context->ra_buff_indx =
860 cpu_to_be32(dev->qp_table.rdb_base +
861 ((qp->qpn & (dev->limits.num_qps - 1)) * MTHCA_RDB_ENTRY_SIZE <<
862 dev->qp_table.rdb_shift));
863
864 qp_context->cqn_rcv = cpu_to_be32(to_mcq(ibqp->recv_cq)->cqn);
865
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700866 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 qp_context->rcv_db_index = cpu_to_be32(qp->rq.db_index);
868
869 if (attr_mask & IB_QP_QKEY) {
870 qp_context->qkey = cpu_to_be32(attr->qkey);
871 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_Q_KEY);
872 }
873
874 err = mthca_MODIFY_QP(dev, state_table[cur_state][new_state].trans,
Roland Dreiered878452005-06-27 14:36:45 -0700875 qp->qpn, 0, mailbox, 0, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (status) {
877 mthca_warn(dev, "modify QP %d returned status %02x.\n",
878 state_table[cur_state][new_state].trans, status);
879 err = -EINVAL;
880 }
881
882 if (!err)
883 qp->state = new_state;
884
Roland Dreiered878452005-06-27 14:36:45 -0700885 mthca_free_mailbox(dev, mailbox);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 if (is_sqp(dev, qp))
888 store_attrs(to_msqp(qp), attr, attr_mask);
889
890 /*
891 * If we are moving QP0 to RTR, bring the IB link up; if we
892 * are moving QP0 to RESET or ERROR, bring the link back down.
893 */
894 if (is_qp0(dev, qp)) {
895 if (cur_state != IB_QPS_RTR &&
896 new_state == IB_QPS_RTR)
897 init_port(dev, to_msqp(qp)->port);
898
899 if (cur_state != IB_QPS_RESET &&
900 cur_state != IB_QPS_ERR &&
901 (new_state == IB_QPS_RESET ||
902 new_state == IB_QPS_ERR))
903 mthca_CLOSE_IB(dev, to_msqp(qp)->port, &status);
904 }
905
906 return err;
907}
908
909/*
910 * Allocate and register buffer for WQEs. qp->rq.max, sq.max,
911 * rq.max_gs and sq.max_gs must all be assigned.
912 * mthca_alloc_wqe_buf will calculate rq.wqe_shift and
913 * sq.wqe_shift (as well as send_wqe_offset, is_direct, and
914 * queue)
915 */
916static int mthca_alloc_wqe_buf(struct mthca_dev *dev,
917 struct mthca_pd *pd,
918 struct mthca_qp *qp)
919{
920 int size;
921 int i;
922 int npages, shift;
923 dma_addr_t t;
924 u64 *dma_list = NULL;
925 int err = -ENOMEM;
926
927 size = sizeof (struct mthca_next_seg) +
928 qp->rq.max_gs * sizeof (struct mthca_data_seg);
929
930 for (qp->rq.wqe_shift = 6; 1 << qp->rq.wqe_shift < size;
931 qp->rq.wqe_shift++)
932 ; /* nothing */
933
934 size = sizeof (struct mthca_next_seg) +
935 qp->sq.max_gs * sizeof (struct mthca_data_seg);
936 switch (qp->transport) {
937 case MLX:
938 size += 2 * sizeof (struct mthca_data_seg);
939 break;
940 case UD:
Roland Dreierd10ddbf2005-04-16 15:26:32 -0700941 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 size += sizeof (struct mthca_arbel_ud_seg);
943 else
944 size += sizeof (struct mthca_tavor_ud_seg);
945 break;
946 default:
947 /* bind seg is as big as atomic + raddr segs */
948 size += sizeof (struct mthca_bind_seg);
949 }
950
951 for (qp->sq.wqe_shift = 6; 1 << qp->sq.wqe_shift < size;
952 qp->sq.wqe_shift++)
953 ; /* nothing */
954
955 qp->send_wqe_offset = ALIGN(qp->rq.max << qp->rq.wqe_shift,
956 1 << qp->sq.wqe_shift);
957 size = PAGE_ALIGN(qp->send_wqe_offset +
958 (qp->sq.max << qp->sq.wqe_shift));
959
960 qp->wrid = kmalloc((qp->rq.max + qp->sq.max) * sizeof (u64),
961 GFP_KERNEL);
962 if (!qp->wrid)
963 goto err_out;
964
965 if (size <= MTHCA_MAX_DIRECT_QP_SIZE) {
966 qp->is_direct = 1;
967 npages = 1;
968 shift = get_order(size) + PAGE_SHIFT;
969
970 if (0)
971 mthca_dbg(dev, "Creating direct QP of size %d (shift %d)\n",
972 size, shift);
973
Roland Dreier64dc81f2005-06-27 14:36:40 -0700974 qp->queue.direct.buf = dma_alloc_coherent(&dev->pdev->dev, size,
975 &t, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (!qp->queue.direct.buf)
977 goto err_out;
978
979 pci_unmap_addr_set(&qp->queue.direct, mapping, t);
980
981 memset(qp->queue.direct.buf, 0, size);
982
983 while (t & ((1 << shift) - 1)) {
984 --shift;
985 npages *= 2;
986 }
987
988 dma_list = kmalloc(npages * sizeof *dma_list, GFP_KERNEL);
989 if (!dma_list)
990 goto err_out_free;
991
992 for (i = 0; i < npages; ++i)
993 dma_list[i] = t + i * (1 << shift);
994 } else {
995 qp->is_direct = 0;
996 npages = size / PAGE_SIZE;
997 shift = PAGE_SHIFT;
998
999 if (0)
1000 mthca_dbg(dev, "Creating indirect QP with %d pages\n", npages);
1001
1002 dma_list = kmalloc(npages * sizeof *dma_list, GFP_KERNEL);
1003 if (!dma_list)
1004 goto err_out;
1005
1006 qp->queue.page_list = kmalloc(npages *
1007 sizeof *qp->queue.page_list,
1008 GFP_KERNEL);
1009 if (!qp->queue.page_list)
1010 goto err_out;
1011
1012 for (i = 0; i < npages; ++i) {
1013 qp->queue.page_list[i].buf =
Roland Dreier64dc81f2005-06-27 14:36:40 -07001014 dma_alloc_coherent(&dev->pdev->dev, PAGE_SIZE,
1015 &t, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (!qp->queue.page_list[i].buf)
1017 goto err_out_free;
1018
1019 memset(qp->queue.page_list[i].buf, 0, PAGE_SIZE);
1020
1021 pci_unmap_addr_set(&qp->queue.page_list[i], mapping, t);
1022 dma_list[i] = t;
1023 }
1024 }
1025
1026 err = mthca_mr_alloc_phys(dev, pd->pd_num, dma_list, shift,
1027 npages, 0, size,
1028 MTHCA_MPT_FLAG_LOCAL_READ,
1029 &qp->mr);
1030 if (err)
1031 goto err_out_free;
1032
1033 kfree(dma_list);
1034 return 0;
1035
1036 err_out_free:
1037 if (qp->is_direct) {
Roland Dreier64dc81f2005-06-27 14:36:40 -07001038 dma_free_coherent(&dev->pdev->dev, size, qp->queue.direct.buf,
1039 pci_unmap_addr(&qp->queue.direct, mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 } else
1041 for (i = 0; i < npages; ++i) {
1042 if (qp->queue.page_list[i].buf)
Roland Dreier64dc81f2005-06-27 14:36:40 -07001043 dma_free_coherent(&dev->pdev->dev, PAGE_SIZE,
1044 qp->queue.page_list[i].buf,
1045 pci_unmap_addr(&qp->queue.page_list[i],
1046 mapping));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 }
1049
1050 err_out:
1051 kfree(qp->wrid);
1052 kfree(dma_list);
1053 return err;
1054}
1055
1056static int mthca_alloc_memfree(struct mthca_dev *dev,
1057 struct mthca_qp *qp)
1058{
1059 int ret = 0;
1060
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001061 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 ret = mthca_table_get(dev, dev->qp_table.qp_table, qp->qpn);
1063 if (ret)
1064 return ret;
1065
1066 ret = mthca_table_get(dev, dev->qp_table.eqp_table, qp->qpn);
1067 if (ret)
1068 goto err_qpc;
1069
Roland Dreier08aeb142005-04-16 15:26:34 -07001070 ret = mthca_table_get(dev, dev->qp_table.rdb_table,
1071 qp->qpn << dev->qp_table.rdb_shift);
1072 if (ret)
1073 goto err_eqpc;
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 qp->rq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_RQ,
1076 qp->qpn, &qp->rq.db);
1077 if (qp->rq.db_index < 0) {
1078 ret = -ENOMEM;
Roland Dreier08aeb142005-04-16 15:26:34 -07001079 goto err_rdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081
1082 qp->sq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_SQ,
1083 qp->qpn, &qp->sq.db);
1084 if (qp->sq.db_index < 0) {
1085 ret = -ENOMEM;
1086 goto err_rq_db;
1087 }
1088 }
1089
1090 return 0;
1091
1092err_rq_db:
1093 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
1094
Roland Dreier08aeb142005-04-16 15:26:34 -07001095err_rdb:
1096 mthca_table_put(dev, dev->qp_table.rdb_table,
1097 qp->qpn << dev->qp_table.rdb_shift);
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099err_eqpc:
1100 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
1101
1102err_qpc:
1103 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
1104
1105 return ret;
1106}
1107
1108static void mthca_free_memfree(struct mthca_dev *dev,
1109 struct mthca_qp *qp)
1110{
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001111 if (mthca_is_memfree(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 mthca_free_db(dev, MTHCA_DB_TYPE_SQ, qp->sq.db_index);
1113 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
Roland Dreiera03a5a62005-06-27 14:36:43 -07001115
1116 mthca_table_put(dev, dev->qp_table.rdb_table,
1117 qp->qpn << dev->qp_table.rdb_shift);
1118 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
1119 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
1122static void mthca_wq_init(struct mthca_wq* wq)
1123{
1124 spin_lock_init(&wq->lock);
1125 wq->next_ind = 0;
1126 wq->last_comp = wq->max - 1;
1127 wq->head = 0;
1128 wq->tail = 0;
1129 wq->last = NULL;
1130}
1131
1132static int mthca_alloc_qp_common(struct mthca_dev *dev,
1133 struct mthca_pd *pd,
1134 struct mthca_cq *send_cq,
1135 struct mthca_cq *recv_cq,
1136 enum ib_sig_type send_policy,
1137 struct mthca_qp *qp)
1138{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 int ret;
1140 int i;
1141
1142 atomic_set(&qp->refcount, 1);
1143 qp->state = IB_QPS_RESET;
1144 qp->atomic_rd_en = 0;
1145 qp->resp_depth = 0;
1146 qp->sq_policy = send_policy;
1147 mthca_wq_init(&qp->sq);
1148 mthca_wq_init(&qp->rq);
1149
1150 ret = mthca_alloc_memfree(dev, qp);
1151 if (ret)
1152 return ret;
1153
1154 ret = mthca_alloc_wqe_buf(dev, pd, qp);
1155 if (ret) {
1156 mthca_free_memfree(dev, qp);
1157 return ret;
1158 }
1159
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001160 if (mthca_is_memfree(dev)) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001161 struct mthca_next_seg *next;
1162 struct mthca_data_seg *scatter;
1163 int size = (sizeof (struct mthca_next_seg) +
1164 qp->rq.max_gs * sizeof (struct mthca_data_seg)) / 16;
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 for (i = 0; i < qp->rq.max; ++i) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001167 next = get_recv_wqe(qp, i);
1168 next->nda_op = cpu_to_be32(((i + 1) & (qp->rq.max - 1)) <<
1169 qp->rq.wqe_shift);
1170 next->ee_nds = cpu_to_be32(size);
1171
1172 for (scatter = (void *) (next + 1);
1173 (void *) scatter < (void *) next + (1 << qp->rq.wqe_shift);
1174 ++scatter)
1175 scatter->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177
1178 for (i = 0; i < qp->sq.max; ++i) {
Roland Dreierddf841f2005-04-16 15:26:33 -07001179 next = get_send_wqe(qp, i);
1180 next->nda_op = cpu_to_be32((((i + 1) & (qp->sq.max - 1)) <<
1181 qp->sq.wqe_shift) +
1182 qp->send_wqe_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
1184 }
1185
1186 return 0;
1187}
1188
1189static void mthca_align_qp_size(struct mthca_dev *dev, struct mthca_qp *qp)
1190{
1191 int i;
1192
Roland Dreierd10ddbf2005-04-16 15:26:32 -07001193 if (!mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 return;
1195
1196 for (i = 0; 1 << i < qp->rq.max; ++i)
1197 ; /* nothing */
1198
1199 qp->rq.max = 1 << i;
1200
1201 for (i = 0; 1 << i < qp->sq.max; ++i)
1202 ; /* nothing */
1203
1204 qp->sq.max = 1 << i;
1205}
1206
1207int mthca_alloc_qp(struct mthca_dev *dev,
1208 struct mthca_pd *pd,
1209 struct mthca_cq *send_cq,
1210 struct mthca_cq *recv_cq,
1211 enum ib_qp_type type,
1212 enum ib_sig_type send_policy,
1213 struct mthca_qp *qp)
1214{
1215 int err;
1216
1217 mthca_align_qp_size(dev, qp);
1218
1219 switch (type) {
1220 case IB_QPT_RC: qp->transport = RC; break;
1221 case IB_QPT_UC: qp->transport = UC; break;
1222 case IB_QPT_UD: qp->transport = UD; break;
1223 default: return -EINVAL;
1224 }
1225
1226 qp->qpn = mthca_alloc(&dev->qp_table.alloc);
1227 if (qp->qpn == -1)
1228 return -ENOMEM;
1229
1230 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1231 send_policy, qp);
1232 if (err) {
1233 mthca_free(&dev->qp_table.alloc, qp->qpn);
1234 return err;
1235 }
1236
1237 spin_lock_irq(&dev->qp_table.lock);
1238 mthca_array_set(&dev->qp_table.qp,
1239 qp->qpn & (dev->limits.num_qps - 1), qp);
1240 spin_unlock_irq(&dev->qp_table.lock);
1241
1242 return 0;
1243}
1244
1245int mthca_alloc_sqp(struct mthca_dev *dev,
1246 struct mthca_pd *pd,
1247 struct mthca_cq *send_cq,
1248 struct mthca_cq *recv_cq,
1249 enum ib_sig_type send_policy,
1250 int qpn,
1251 int port,
1252 struct mthca_sqp *sqp)
1253{
1254 int err = 0;
1255 u32 mqpn = qpn * 2 + dev->qp_table.sqp_start + port - 1;
1256
1257 mthca_align_qp_size(dev, &sqp->qp);
1258
1259 sqp->header_buf_size = sqp->qp.sq.max * MTHCA_UD_HEADER_SIZE;
1260 sqp->header_buf = dma_alloc_coherent(&dev->pdev->dev, sqp->header_buf_size,
1261 &sqp->header_dma, GFP_KERNEL);
1262 if (!sqp->header_buf)
1263 return -ENOMEM;
1264
1265 spin_lock_irq(&dev->qp_table.lock);
1266 if (mthca_array_get(&dev->qp_table.qp, mqpn))
1267 err = -EBUSY;
1268 else
1269 mthca_array_set(&dev->qp_table.qp, mqpn, sqp);
1270 spin_unlock_irq(&dev->qp_table.lock);
1271
1272 if (err)
1273 goto err_out;
1274
1275 sqp->port = port;
1276 sqp->qp.qpn = mqpn;
1277 sqp->qp.transport = MLX;
1278
1279 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1280 send_policy, &sqp->qp);
1281 if (err)
1282 goto err_out_free;
1283
1284 atomic_inc(&pd->sqp_count);
1285
1286 return 0;
1287
1288 err_out_free:
1289 /*
1290 * Lock CQs here, so that CQ polling code can do QP lookup
1291 * without taking a lock.
1292 */
1293 spin_lock_irq(&send_cq->lock);
1294 if (send_cq != recv_cq)
1295 spin_lock(&recv_cq->lock);
1296
1297 spin_lock(&dev->qp_table.lock);
1298 mthca_array_clear(&dev->qp_table.qp, mqpn);
1299 spin_unlock(&dev->qp_table.lock);
1300
1301 if (send_cq != recv_cq)
1302 spin_unlock(&recv_cq->lock);
1303 spin_unlock_irq(&send_cq->lock);
1304
1305 err_out:
1306 dma_free_coherent(&dev->pdev->dev, sqp->header_buf_size,
1307 sqp->header_buf, sqp->header_dma);
1308
1309 return err;
1310}
1311
1312void mthca_free_qp(struct mthca_dev *dev,
1313 struct mthca_qp *qp)
1314{
1315 u8 status;
1316 int size;
1317 int i;
1318 struct mthca_cq *send_cq;
1319 struct mthca_cq *recv_cq;
1320
1321 send_cq = to_mcq(qp->ibqp.send_cq);
1322 recv_cq = to_mcq(qp->ibqp.recv_cq);
1323
1324 /*
1325 * Lock CQs here, so that CQ polling code can do QP lookup
1326 * without taking a lock.
1327 */
1328 spin_lock_irq(&send_cq->lock);
1329 if (send_cq != recv_cq)
1330 spin_lock(&recv_cq->lock);
1331
1332 spin_lock(&dev->qp_table.lock);
1333 mthca_array_clear(&dev->qp_table.qp,
1334 qp->qpn & (dev->limits.num_qps - 1));
1335 spin_unlock(&dev->qp_table.lock);
1336
1337 if (send_cq != recv_cq)
1338 spin_unlock(&recv_cq->lock);
1339 spin_unlock_irq(&send_cq->lock);
1340
1341 atomic_dec(&qp->refcount);
1342 wait_event(qp->wait, !atomic_read(&qp->refcount));
1343
1344 if (qp->state != IB_QPS_RESET)
1345 mthca_MODIFY_QP(dev, MTHCA_TRANS_ANY2RST, qp->qpn, 0, NULL, 0, &status);
1346
1347 mthca_cq_clean(dev, to_mcq(qp->ibqp.send_cq)->cqn, qp->qpn);
1348 if (qp->ibqp.send_cq != qp->ibqp.recv_cq)
1349 mthca_cq_clean(dev, to_mcq(qp->ibqp.recv_cq)->cqn, qp->qpn);
1350
1351 mthca_free_mr(dev, &qp->mr);
1352
1353 size = PAGE_ALIGN(qp->send_wqe_offset +
1354 (qp->sq.max << qp->sq.wqe_shift));
1355
1356 if (qp->is_direct) {
1357 pci_free_consistent(dev->pdev, size,
1358 qp->queue.direct.buf,
1359 pci_unmap_addr(&qp->queue.direct, mapping));
1360 } else {
1361 for (i = 0; i < size / PAGE_SIZE; ++i) {
1362 pci_free_consistent(dev->pdev, PAGE_SIZE,
1363 qp->queue.page_list[i].buf,
1364 pci_unmap_addr(&qp->queue.page_list[i],
1365 mapping));
1366 }
1367 }
1368
1369 kfree(qp->wrid);
1370
1371 mthca_free_memfree(dev, qp);
1372
1373 if (is_sqp(dev, qp)) {
1374 atomic_dec(&(to_mpd(qp->ibqp.pd)->sqp_count));
1375 dma_free_coherent(&dev->pdev->dev,
1376 to_msqp(qp)->header_buf_size,
1377 to_msqp(qp)->header_buf,
1378 to_msqp(qp)->header_dma);
1379 } else
1380 mthca_free(&dev->qp_table.alloc, qp->qpn);
1381}
1382
1383/* Create UD header for an MLX send and build a data segment for it */
1384static int build_mlx_header(struct mthca_dev *dev, struct mthca_sqp *sqp,
1385 int ind, struct ib_send_wr *wr,
1386 struct mthca_mlx_seg *mlx,
1387 struct mthca_data_seg *data)
1388{
1389 int header_size;
1390 int err;
1391
1392 ib_ud_header_init(256, /* assume a MAD */
1393 sqp->ud_header.grh_present,
1394 &sqp->ud_header);
1395
1396 err = mthca_read_ah(dev, to_mah(wr->wr.ud.ah), &sqp->ud_header);
1397 if (err)
1398 return err;
1399 mlx->flags &= ~cpu_to_be32(MTHCA_NEXT_SOLICIT | 1);
1400 mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MTHCA_MLX_VL15 : 0) |
1401 (sqp->ud_header.lrh.destination_lid == 0xffff ?
1402 MTHCA_MLX_SLR : 0) |
1403 (sqp->ud_header.lrh.service_level << 8));
1404 mlx->rlid = sqp->ud_header.lrh.destination_lid;
1405 mlx->vcrc = 0;
1406
1407 switch (wr->opcode) {
1408 case IB_WR_SEND:
1409 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
1410 sqp->ud_header.immediate_present = 0;
1411 break;
1412 case IB_WR_SEND_WITH_IMM:
1413 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
1414 sqp->ud_header.immediate_present = 1;
1415 sqp->ud_header.immediate_data = wr->imm_data;
1416 break;
1417 default:
1418 return -EINVAL;
1419 }
1420
1421 sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0;
1422 if (sqp->ud_header.lrh.destination_lid == 0xffff)
1423 sqp->ud_header.lrh.source_lid = 0xffff;
1424 sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED);
1425 if (!sqp->qp.ibqp.qp_num)
1426 ib_get_cached_pkey(&dev->ib_dev, sqp->port,
1427 sqp->pkey_index,
1428 &sqp->ud_header.bth.pkey);
1429 else
1430 ib_get_cached_pkey(&dev->ib_dev, sqp->port,
1431 wr->wr.ud.pkey_index,
1432 &sqp->ud_header.bth.pkey);
1433 cpu_to_be16s(&sqp->ud_header.bth.pkey);
1434 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->wr.ud.remote_qpn);
1435 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
1436 sqp->ud_header.deth.qkey = cpu_to_be32(wr->wr.ud.remote_qkey & 0x80000000 ?
1437 sqp->qkey : wr->wr.ud.remote_qkey);
1438 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
1439
1440 header_size = ib_ud_header_pack(&sqp->ud_header,
1441 sqp->header_buf +
1442 ind * MTHCA_UD_HEADER_SIZE);
1443
1444 data->byte_count = cpu_to_be32(header_size);
1445 data->lkey = cpu_to_be32(to_mpd(sqp->qp.ibqp.pd)->ntmr.ibmr.lkey);
1446 data->addr = cpu_to_be64(sqp->header_dma +
1447 ind * MTHCA_UD_HEADER_SIZE);
1448
1449 return 0;
1450}
1451
1452static inline int mthca_wq_overflow(struct mthca_wq *wq, int nreq,
1453 struct ib_cq *ib_cq)
1454{
1455 unsigned cur;
1456 struct mthca_cq *cq;
1457
1458 cur = wq->head - wq->tail;
1459 if (likely(cur + nreq < wq->max))
1460 return 0;
1461
1462 cq = to_mcq(ib_cq);
1463 spin_lock(&cq->lock);
1464 cur = wq->head - wq->tail;
1465 spin_unlock(&cq->lock);
1466
1467 return cur + nreq >= wq->max;
1468}
1469
1470int mthca_tavor_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
1471 struct ib_send_wr **bad_wr)
1472{
1473 struct mthca_dev *dev = to_mdev(ibqp->device);
1474 struct mthca_qp *qp = to_mqp(ibqp);
1475 void *wqe;
1476 void *prev_wqe;
1477 unsigned long flags;
1478 int err = 0;
1479 int nreq;
1480 int i;
1481 int size;
1482 int size0 = 0;
1483 u32 f0 = 0;
1484 int ind;
1485 u8 op0 = 0;
1486
1487 spin_lock_irqsave(&qp->sq.lock, flags);
1488
1489 /* XXX check that state is OK to post send */
1490
1491 ind = qp->sq.next_ind;
1492
1493 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1494 if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1495 mthca_err(dev, "SQ %06x full (%u head, %u tail,"
1496 " %d max, %d nreq)\n", qp->qpn,
1497 qp->sq.head, qp->sq.tail,
1498 qp->sq.max, nreq);
1499 err = -ENOMEM;
1500 *bad_wr = wr;
1501 goto out;
1502 }
1503
1504 wqe = get_send_wqe(qp, ind);
1505 prev_wqe = qp->sq.last;
1506 qp->sq.last = wqe;
1507
1508 ((struct mthca_next_seg *) wqe)->nda_op = 0;
1509 ((struct mthca_next_seg *) wqe)->ee_nds = 0;
1510 ((struct mthca_next_seg *) wqe)->flags =
1511 ((wr->send_flags & IB_SEND_SIGNALED) ?
1512 cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) |
1513 ((wr->send_flags & IB_SEND_SOLICITED) ?
1514 cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) |
1515 cpu_to_be32(1);
1516 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1517 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
Roland Dreier3fba2312005-04-16 15:26:16 -07001518 ((struct mthca_next_seg *) wqe)->imm = wr->imm_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520 wqe += sizeof (struct mthca_next_seg);
1521 size = sizeof (struct mthca_next_seg) / 16;
1522
1523 switch (qp->transport) {
1524 case RC:
1525 switch (wr->opcode) {
1526 case IB_WR_ATOMIC_CMP_AND_SWP:
1527 case IB_WR_ATOMIC_FETCH_AND_ADD:
1528 ((struct mthca_raddr_seg *) wqe)->raddr =
1529 cpu_to_be64(wr->wr.atomic.remote_addr);
1530 ((struct mthca_raddr_seg *) wqe)->rkey =
1531 cpu_to_be32(wr->wr.atomic.rkey);
1532 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1533
1534 wqe += sizeof (struct mthca_raddr_seg);
1535
1536 if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
1537 ((struct mthca_atomic_seg *) wqe)->swap_add =
1538 cpu_to_be64(wr->wr.atomic.swap);
1539 ((struct mthca_atomic_seg *) wqe)->compare =
1540 cpu_to_be64(wr->wr.atomic.compare_add);
1541 } else {
1542 ((struct mthca_atomic_seg *) wqe)->swap_add =
1543 cpu_to_be64(wr->wr.atomic.compare_add);
1544 ((struct mthca_atomic_seg *) wqe)->compare = 0;
1545 }
1546
1547 wqe += sizeof (struct mthca_atomic_seg);
1548 size += sizeof (struct mthca_raddr_seg) / 16 +
1549 sizeof (struct mthca_atomic_seg);
1550 break;
1551
1552 case IB_WR_RDMA_WRITE:
1553 case IB_WR_RDMA_WRITE_WITH_IMM:
1554 case IB_WR_RDMA_READ:
1555 ((struct mthca_raddr_seg *) wqe)->raddr =
1556 cpu_to_be64(wr->wr.rdma.remote_addr);
1557 ((struct mthca_raddr_seg *) wqe)->rkey =
1558 cpu_to_be32(wr->wr.rdma.rkey);
1559 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1560 wqe += sizeof (struct mthca_raddr_seg);
1561 size += sizeof (struct mthca_raddr_seg) / 16;
1562 break;
1563
1564 default:
1565 /* No extra segments required for sends */
1566 break;
1567 }
1568
1569 break;
1570
Roland Dreier9e6970b2005-06-27 14:36:42 -07001571 case UC:
1572 switch (wr->opcode) {
1573 case IB_WR_RDMA_WRITE:
1574 case IB_WR_RDMA_WRITE_WITH_IMM:
1575 ((struct mthca_raddr_seg *) wqe)->raddr =
1576 cpu_to_be64(wr->wr.rdma.remote_addr);
1577 ((struct mthca_raddr_seg *) wqe)->rkey =
1578 cpu_to_be32(wr->wr.rdma.rkey);
1579 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1580 wqe += sizeof (struct mthca_raddr_seg);
1581 size += sizeof (struct mthca_raddr_seg) / 16;
1582 break;
1583
1584 default:
1585 /* No extra segments required for sends */
1586 break;
1587 }
1588
1589 break;
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 case UD:
1592 ((struct mthca_tavor_ud_seg *) wqe)->lkey =
1593 cpu_to_be32(to_mah(wr->wr.ud.ah)->key);
1594 ((struct mthca_tavor_ud_seg *) wqe)->av_addr =
1595 cpu_to_be64(to_mah(wr->wr.ud.ah)->avdma);
1596 ((struct mthca_tavor_ud_seg *) wqe)->dqpn =
1597 cpu_to_be32(wr->wr.ud.remote_qpn);
1598 ((struct mthca_tavor_ud_seg *) wqe)->qkey =
1599 cpu_to_be32(wr->wr.ud.remote_qkey);
1600
1601 wqe += sizeof (struct mthca_tavor_ud_seg);
1602 size += sizeof (struct mthca_tavor_ud_seg) / 16;
1603 break;
1604
1605 case MLX:
1606 err = build_mlx_header(dev, to_msqp(qp), ind, wr,
1607 wqe - sizeof (struct mthca_next_seg),
1608 wqe);
1609 if (err) {
1610 *bad_wr = wr;
1611 goto out;
1612 }
1613 wqe += sizeof (struct mthca_data_seg);
1614 size += sizeof (struct mthca_data_seg) / 16;
1615 break;
1616 }
1617
1618 if (wr->num_sge > qp->sq.max_gs) {
1619 mthca_err(dev, "too many gathers\n");
1620 err = -EINVAL;
1621 *bad_wr = wr;
1622 goto out;
1623 }
1624
1625 for (i = 0; i < wr->num_sge; ++i) {
1626 ((struct mthca_data_seg *) wqe)->byte_count =
1627 cpu_to_be32(wr->sg_list[i].length);
1628 ((struct mthca_data_seg *) wqe)->lkey =
1629 cpu_to_be32(wr->sg_list[i].lkey);
1630 ((struct mthca_data_seg *) wqe)->addr =
1631 cpu_to_be64(wr->sg_list[i].addr);
1632 wqe += sizeof (struct mthca_data_seg);
1633 size += sizeof (struct mthca_data_seg) / 16;
1634 }
1635
1636 /* Add one more inline data segment for ICRC */
1637 if (qp->transport == MLX) {
1638 ((struct mthca_data_seg *) wqe)->byte_count =
1639 cpu_to_be32((1 << 31) | 4);
1640 ((u32 *) wqe)[1] = 0;
1641 wqe += sizeof (struct mthca_data_seg);
1642 size += sizeof (struct mthca_data_seg) / 16;
1643 }
1644
1645 qp->wrid[ind + qp->rq.max] = wr->wr_id;
1646
1647 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
1648 mthca_err(dev, "opcode invalid\n");
1649 err = -EINVAL;
1650 *bad_wr = wr;
1651 goto out;
1652 }
1653
1654 if (prev_wqe) {
1655 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1656 cpu_to_be32(((ind << qp->sq.wqe_shift) +
1657 qp->send_wqe_offset) |
1658 mthca_opcode[wr->opcode]);
1659 wmb();
1660 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1661 cpu_to_be32((size0 ? 0 : MTHCA_NEXT_DBD) | size);
1662 }
1663
1664 if (!size0) {
1665 size0 = size;
1666 op0 = mthca_opcode[wr->opcode];
1667 }
1668
1669 ++ind;
1670 if (unlikely(ind >= qp->sq.max))
1671 ind -= qp->sq.max;
1672 }
1673
1674out:
1675 if (likely(nreq)) {
1676 u32 doorbell[2];
1677
1678 doorbell[0] = cpu_to_be32(((qp->sq.next_ind << qp->sq.wqe_shift) +
1679 qp->send_wqe_offset) | f0 | op0);
1680 doorbell[1] = cpu_to_be32((qp->qpn << 8) | size0);
1681
1682 wmb();
1683
1684 mthca_write64(doorbell,
1685 dev->kar + MTHCA_SEND_DOORBELL,
1686 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1687 }
1688
1689 qp->sq.next_ind = ind;
1690 qp->sq.head += nreq;
1691
1692 spin_unlock_irqrestore(&qp->sq.lock, flags);
1693 return err;
1694}
1695
1696int mthca_tavor_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
1697 struct ib_recv_wr **bad_wr)
1698{
1699 struct mthca_dev *dev = to_mdev(ibqp->device);
1700 struct mthca_qp *qp = to_mqp(ibqp);
1701 unsigned long flags;
1702 int err = 0;
1703 int nreq;
1704 int i;
1705 int size;
1706 int size0 = 0;
1707 int ind;
1708 void *wqe;
1709 void *prev_wqe;
1710
1711 spin_lock_irqsave(&qp->rq.lock, flags);
1712
1713 /* XXX check that state is OK to post receive */
1714
1715 ind = qp->rq.next_ind;
1716
1717 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1718 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
1719 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
1720 " %d max, %d nreq)\n", qp->qpn,
1721 qp->rq.head, qp->rq.tail,
1722 qp->rq.max, nreq);
1723 err = -ENOMEM;
1724 *bad_wr = wr;
1725 goto out;
1726 }
1727
1728 wqe = get_recv_wqe(qp, ind);
1729 prev_wqe = qp->rq.last;
1730 qp->rq.last = wqe;
1731
1732 ((struct mthca_next_seg *) wqe)->nda_op = 0;
1733 ((struct mthca_next_seg *) wqe)->ee_nds =
1734 cpu_to_be32(MTHCA_NEXT_DBD);
1735 ((struct mthca_next_seg *) wqe)->flags = 0;
1736
1737 wqe += sizeof (struct mthca_next_seg);
1738 size = sizeof (struct mthca_next_seg) / 16;
1739
1740 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
1741 err = -EINVAL;
1742 *bad_wr = wr;
1743 goto out;
1744 }
1745
1746 for (i = 0; i < wr->num_sge; ++i) {
1747 ((struct mthca_data_seg *) wqe)->byte_count =
1748 cpu_to_be32(wr->sg_list[i].length);
1749 ((struct mthca_data_seg *) wqe)->lkey =
1750 cpu_to_be32(wr->sg_list[i].lkey);
1751 ((struct mthca_data_seg *) wqe)->addr =
1752 cpu_to_be64(wr->sg_list[i].addr);
1753 wqe += sizeof (struct mthca_data_seg);
1754 size += sizeof (struct mthca_data_seg) / 16;
1755 }
1756
1757 qp->wrid[ind] = wr->wr_id;
1758
1759 if (likely(prev_wqe)) {
1760 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1761 cpu_to_be32((ind << qp->rq.wqe_shift) | 1);
1762 wmb();
1763 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1764 cpu_to_be32(MTHCA_NEXT_DBD | size);
1765 }
1766
1767 if (!size0)
1768 size0 = size;
1769
1770 ++ind;
1771 if (unlikely(ind >= qp->rq.max))
1772 ind -= qp->rq.max;
1773 }
1774
1775out:
1776 if (likely(nreq)) {
1777 u32 doorbell[2];
1778
1779 doorbell[0] = cpu_to_be32((qp->rq.next_ind << qp->rq.wqe_shift) | size0);
1780 doorbell[1] = cpu_to_be32((qp->qpn << 8) | nreq);
1781
1782 wmb();
1783
1784 mthca_write64(doorbell,
1785 dev->kar + MTHCA_RECEIVE_DOORBELL,
1786 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1787 }
1788
1789 qp->rq.next_ind = ind;
1790 qp->rq.head += nreq;
1791
1792 spin_unlock_irqrestore(&qp->rq.lock, flags);
1793 return err;
1794}
1795
1796int mthca_arbel_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
1797 struct ib_send_wr **bad_wr)
1798{
1799 struct mthca_dev *dev = to_mdev(ibqp->device);
1800 struct mthca_qp *qp = to_mqp(ibqp);
1801 void *wqe;
1802 void *prev_wqe;
1803 unsigned long flags;
1804 int err = 0;
1805 int nreq;
1806 int i;
1807 int size;
1808 int size0 = 0;
1809 u32 f0 = 0;
1810 int ind;
1811 u8 op0 = 0;
1812
1813 spin_lock_irqsave(&qp->sq.lock, flags);
1814
1815 /* XXX check that state is OK to post send */
1816
1817 ind = qp->sq.head & (qp->sq.max - 1);
1818
1819 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1820 if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1821 mthca_err(dev, "SQ %06x full (%u head, %u tail,"
1822 " %d max, %d nreq)\n", qp->qpn,
1823 qp->sq.head, qp->sq.tail,
1824 qp->sq.max, nreq);
1825 err = -ENOMEM;
1826 *bad_wr = wr;
1827 goto out;
1828 }
1829
1830 wqe = get_send_wqe(qp, ind);
1831 prev_wqe = qp->sq.last;
1832 qp->sq.last = wqe;
1833
1834 ((struct mthca_next_seg *) wqe)->flags =
1835 ((wr->send_flags & IB_SEND_SIGNALED) ?
1836 cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) |
1837 ((wr->send_flags & IB_SEND_SOLICITED) ?
1838 cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) |
1839 cpu_to_be32(1);
1840 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1841 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
Roland Dreier3fba2312005-04-16 15:26:16 -07001842 ((struct mthca_next_seg *) wqe)->imm = wr->imm_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844 wqe += sizeof (struct mthca_next_seg);
1845 size = sizeof (struct mthca_next_seg) / 16;
1846
1847 switch (qp->transport) {
Roland Dreierddb934e2005-04-16 15:26:23 -07001848 case RC:
1849 switch (wr->opcode) {
1850 case IB_WR_ATOMIC_CMP_AND_SWP:
1851 case IB_WR_ATOMIC_FETCH_AND_ADD:
1852 ((struct mthca_raddr_seg *) wqe)->raddr =
1853 cpu_to_be64(wr->wr.atomic.remote_addr);
1854 ((struct mthca_raddr_seg *) wqe)->rkey =
1855 cpu_to_be32(wr->wr.atomic.rkey);
1856 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1857
1858 wqe += sizeof (struct mthca_raddr_seg);
1859
1860 if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
1861 ((struct mthca_atomic_seg *) wqe)->swap_add =
1862 cpu_to_be64(wr->wr.atomic.swap);
1863 ((struct mthca_atomic_seg *) wqe)->compare =
1864 cpu_to_be64(wr->wr.atomic.compare_add);
1865 } else {
1866 ((struct mthca_atomic_seg *) wqe)->swap_add =
1867 cpu_to_be64(wr->wr.atomic.compare_add);
1868 ((struct mthca_atomic_seg *) wqe)->compare = 0;
1869 }
1870
1871 wqe += sizeof (struct mthca_atomic_seg);
1872 size += sizeof (struct mthca_raddr_seg) / 16 +
1873 sizeof (struct mthca_atomic_seg);
1874 break;
1875
Roland Dreier9e6970b2005-06-27 14:36:42 -07001876 case IB_WR_RDMA_READ:
Roland Dreierddb934e2005-04-16 15:26:23 -07001877 case IB_WR_RDMA_WRITE:
1878 case IB_WR_RDMA_WRITE_WITH_IMM:
Roland Dreier9e6970b2005-06-27 14:36:42 -07001879 ((struct mthca_raddr_seg *) wqe)->raddr =
1880 cpu_to_be64(wr->wr.rdma.remote_addr);
1881 ((struct mthca_raddr_seg *) wqe)->rkey =
1882 cpu_to_be32(wr->wr.rdma.rkey);
1883 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1884 wqe += sizeof (struct mthca_raddr_seg);
1885 size += sizeof (struct mthca_raddr_seg) / 16;
1886 break;
1887
1888 default:
1889 /* No extra segments required for sends */
1890 break;
1891 }
1892
1893 break;
1894
1895 case UC:
1896 switch (wr->opcode) {
1897 case IB_WR_RDMA_WRITE:
1898 case IB_WR_RDMA_WRITE_WITH_IMM:
Roland Dreierddb934e2005-04-16 15:26:23 -07001899 ((struct mthca_raddr_seg *) wqe)->raddr =
1900 cpu_to_be64(wr->wr.rdma.remote_addr);
1901 ((struct mthca_raddr_seg *) wqe)->rkey =
1902 cpu_to_be32(wr->wr.rdma.rkey);
1903 ((struct mthca_raddr_seg *) wqe)->reserved = 0;
1904 wqe += sizeof (struct mthca_raddr_seg);
1905 size += sizeof (struct mthca_raddr_seg) / 16;
1906 break;
1907
1908 default:
1909 /* No extra segments required for sends */
1910 break;
1911 }
1912
1913 break;
1914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 case UD:
1916 memcpy(((struct mthca_arbel_ud_seg *) wqe)->av,
1917 to_mah(wr->wr.ud.ah)->av, MTHCA_AV_SIZE);
1918 ((struct mthca_arbel_ud_seg *) wqe)->dqpn =
1919 cpu_to_be32(wr->wr.ud.remote_qpn);
1920 ((struct mthca_arbel_ud_seg *) wqe)->qkey =
1921 cpu_to_be32(wr->wr.ud.remote_qkey);
1922
1923 wqe += sizeof (struct mthca_arbel_ud_seg);
1924 size += sizeof (struct mthca_arbel_ud_seg) / 16;
1925 break;
1926
1927 case MLX:
1928 err = build_mlx_header(dev, to_msqp(qp), ind, wr,
1929 wqe - sizeof (struct mthca_next_seg),
1930 wqe);
1931 if (err) {
1932 *bad_wr = wr;
1933 goto out;
1934 }
1935 wqe += sizeof (struct mthca_data_seg);
1936 size += sizeof (struct mthca_data_seg) / 16;
1937 break;
1938 }
1939
1940 if (wr->num_sge > qp->sq.max_gs) {
1941 mthca_err(dev, "too many gathers\n");
1942 err = -EINVAL;
1943 *bad_wr = wr;
1944 goto out;
1945 }
1946
1947 for (i = 0; i < wr->num_sge; ++i) {
1948 ((struct mthca_data_seg *) wqe)->byte_count =
1949 cpu_to_be32(wr->sg_list[i].length);
1950 ((struct mthca_data_seg *) wqe)->lkey =
1951 cpu_to_be32(wr->sg_list[i].lkey);
1952 ((struct mthca_data_seg *) wqe)->addr =
1953 cpu_to_be64(wr->sg_list[i].addr);
1954 wqe += sizeof (struct mthca_data_seg);
1955 size += sizeof (struct mthca_data_seg) / 16;
1956 }
1957
1958 /* Add one more inline data segment for ICRC */
1959 if (qp->transport == MLX) {
1960 ((struct mthca_data_seg *) wqe)->byte_count =
1961 cpu_to_be32((1 << 31) | 4);
1962 ((u32 *) wqe)[1] = 0;
1963 wqe += sizeof (struct mthca_data_seg);
1964 size += sizeof (struct mthca_data_seg) / 16;
1965 }
1966
1967 qp->wrid[ind + qp->rq.max] = wr->wr_id;
1968
1969 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
1970 mthca_err(dev, "opcode invalid\n");
1971 err = -EINVAL;
1972 *bad_wr = wr;
1973 goto out;
1974 }
1975
1976 if (likely(prev_wqe)) {
1977 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1978 cpu_to_be32(((ind << qp->sq.wqe_shift) +
1979 qp->send_wqe_offset) |
1980 mthca_opcode[wr->opcode]);
1981 wmb();
1982 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1983 cpu_to_be32(MTHCA_NEXT_DBD | size);
1984 }
1985
1986 if (!size0) {
1987 size0 = size;
1988 op0 = mthca_opcode[wr->opcode];
1989 }
1990
1991 ++ind;
1992 if (unlikely(ind >= qp->sq.max))
1993 ind -= qp->sq.max;
1994 }
1995
1996out:
1997 if (likely(nreq)) {
1998 u32 doorbell[2];
1999
2000 doorbell[0] = cpu_to_be32((nreq << 24) |
2001 ((qp->sq.head & 0xffff) << 8) |
2002 f0 | op0);
2003 doorbell[1] = cpu_to_be32((qp->qpn << 8) | size0);
2004
2005 qp->sq.head += nreq;
2006
2007 /*
2008 * Make sure that descriptors are written before
2009 * doorbell record.
2010 */
2011 wmb();
2012 *qp->sq.db = cpu_to_be32(qp->sq.head & 0xffff);
2013
2014 /*
2015 * Make sure doorbell record is written before we
2016 * write MMIO send doorbell.
2017 */
2018 wmb();
2019 mthca_write64(doorbell,
2020 dev->kar + MTHCA_SEND_DOORBELL,
2021 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
2022 }
2023
2024 spin_unlock_irqrestore(&qp->sq.lock, flags);
2025 return err;
2026}
2027
2028int mthca_arbel_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
2029 struct ib_recv_wr **bad_wr)
2030{
2031 struct mthca_dev *dev = to_mdev(ibqp->device);
2032 struct mthca_qp *qp = to_mqp(ibqp);
2033 unsigned long flags;
2034 int err = 0;
2035 int nreq;
2036 int ind;
2037 int i;
2038 void *wqe;
2039
2040 spin_lock_irqsave(&qp->rq.lock, flags);
2041
2042 /* XXX check that state is OK to post receive */
2043
2044 ind = qp->rq.head & (qp->rq.max - 1);
2045
2046 for (nreq = 0; wr; ++nreq, wr = wr->next) {
2047 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
2048 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
2049 " %d max, %d nreq)\n", qp->qpn,
2050 qp->rq.head, qp->rq.tail,
2051 qp->rq.max, nreq);
2052 err = -ENOMEM;
2053 *bad_wr = wr;
2054 goto out;
2055 }
2056
2057 wqe = get_recv_wqe(qp, ind);
2058
2059 ((struct mthca_next_seg *) wqe)->flags = 0;
2060
2061 wqe += sizeof (struct mthca_next_seg);
2062
2063 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
2064 err = -EINVAL;
2065 *bad_wr = wr;
2066 goto out;
2067 }
2068
2069 for (i = 0; i < wr->num_sge; ++i) {
2070 ((struct mthca_data_seg *) wqe)->byte_count =
2071 cpu_to_be32(wr->sg_list[i].length);
2072 ((struct mthca_data_seg *) wqe)->lkey =
2073 cpu_to_be32(wr->sg_list[i].lkey);
2074 ((struct mthca_data_seg *) wqe)->addr =
2075 cpu_to_be64(wr->sg_list[i].addr);
2076 wqe += sizeof (struct mthca_data_seg);
2077 }
2078
2079 if (i < qp->rq.max_gs) {
2080 ((struct mthca_data_seg *) wqe)->byte_count = 0;
Roland Dreierddf841f2005-04-16 15:26:33 -07002081 ((struct mthca_data_seg *) wqe)->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 ((struct mthca_data_seg *) wqe)->addr = 0;
2083 }
2084
2085 qp->wrid[ind] = wr->wr_id;
2086
2087 ++ind;
2088 if (unlikely(ind >= qp->rq.max))
2089 ind -= qp->rq.max;
2090 }
2091out:
2092 if (likely(nreq)) {
2093 qp->rq.head += nreq;
2094
2095 /*
2096 * Make sure that descriptors are written before
2097 * doorbell record.
2098 */
2099 wmb();
2100 *qp->rq.db = cpu_to_be32(qp->rq.head & 0xffff);
2101 }
2102
2103 spin_unlock_irqrestore(&qp->rq.lock, flags);
2104 return err;
2105}
2106
2107int mthca_free_err_wqe(struct mthca_dev *dev, struct mthca_qp *qp, int is_send,
2108 int index, int *dbd, u32 *new_wqe)
2109{
2110 struct mthca_next_seg *next;
2111
2112 if (is_send)
2113 next = get_send_wqe(qp, index);
2114 else
2115 next = get_recv_wqe(qp, index);
2116
Roland Dreierd10ddbf2005-04-16 15:26:32 -07002117 if (mthca_is_memfree(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 *dbd = 1;
2119 else
2120 *dbd = !!(next->ee_nds & cpu_to_be32(MTHCA_NEXT_DBD));
2121 if (next->ee_nds & cpu_to_be32(0x3f))
2122 *new_wqe = (next->nda_op & cpu_to_be32(~0x3f)) |
2123 (next->ee_nds & cpu_to_be32(0x3f));
2124 else
2125 *new_wqe = 0;
2126
2127 return 0;
2128}
2129
2130int __devinit mthca_init_qp_table(struct mthca_dev *dev)
2131{
2132 int err;
2133 u8 status;
2134 int i;
2135
2136 spin_lock_init(&dev->qp_table.lock);
2137
2138 /*
2139 * We reserve 2 extra QPs per port for the special QPs. The
2140 * special QP for port 1 has to be even, so round up.
2141 */
2142 dev->qp_table.sqp_start = (dev->limits.reserved_qps + 1) & ~1UL;
2143 err = mthca_alloc_init(&dev->qp_table.alloc,
2144 dev->limits.num_qps,
2145 (1 << 24) - 1,
2146 dev->qp_table.sqp_start +
2147 MTHCA_MAX_PORTS * 2);
2148 if (err)
2149 return err;
2150
2151 err = mthca_array_init(&dev->qp_table.qp,
2152 dev->limits.num_qps);
2153 if (err) {
2154 mthca_alloc_cleanup(&dev->qp_table.alloc);
2155 return err;
2156 }
2157
2158 for (i = 0; i < 2; ++i) {
2159 err = mthca_CONF_SPECIAL_QP(dev, i ? IB_QPT_GSI : IB_QPT_SMI,
2160 dev->qp_table.sqp_start + i * 2,
2161 &status);
2162 if (err)
2163 goto err_out;
2164 if (status) {
2165 mthca_warn(dev, "CONF_SPECIAL_QP returned "
2166 "status %02x, aborting.\n",
2167 status);
2168 err = -EINVAL;
2169 goto err_out;
2170 }
2171 }
2172 return 0;
2173
2174 err_out:
2175 for (i = 0; i < 2; ++i)
2176 mthca_CONF_SPECIAL_QP(dev, i, 0, &status);
2177
2178 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps);
2179 mthca_alloc_cleanup(&dev->qp_table.alloc);
2180
2181 return err;
2182}
2183
2184void __devexit mthca_cleanup_qp_table(struct mthca_dev *dev)
2185{
2186 int i;
2187 u8 status;
2188
2189 for (i = 0; i < 2; ++i)
2190 mthca_CONF_SPECIAL_QP(dev, i, 0, &status);
2191
2192 mthca_alloc_cleanup(&dev->qp_table.alloc);
2193}