2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Cisco Systems. All rights reserved.
4 * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
5 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
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:
13 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
17 * - Redistributions of source code must retain the above
18 * copyright notice, this list of conditions and the following
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.
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
36 #include <linux/string.h>
37 #include <linux/slab.h>
38 #include <linux/sched.h>
42 #include <rdma/ib_verbs.h>
43 #include <rdma/ib_cache.h>
44 #include <rdma/ib_pack.h>
45 #include <rdma/uverbs_ioctl.h>
47 #include "mthca_dev.h"
48 #include "mthca_cmd.h"
49 #include "mthca_memfree.h"
50 #include "mthca_wqe.h"
53 MTHCA_MAX_DIRECT_QP_SIZE = 4 * PAGE_SIZE,
54 MTHCA_ACK_REQ_FREQ = 10,
55 MTHCA_FLIGHT_LIMIT = 9,
56 MTHCA_UD_HEADER_SIZE = 72, /* largest UD header possible */
57 MTHCA_INLINE_HEADER_SIZE = 4, /* data segment overhead for inline */
58 MTHCA_INLINE_CHUNK_SIZE = 16 /* inline data segment chunk */
62 MTHCA_QP_STATE_RST = 0,
63 MTHCA_QP_STATE_INIT = 1,
64 MTHCA_QP_STATE_RTR = 2,
65 MTHCA_QP_STATE_RTS = 3,
66 MTHCA_QP_STATE_SQE = 4,
67 MTHCA_QP_STATE_SQD = 5,
68 MTHCA_QP_STATE_ERR = 6,
69 MTHCA_QP_STATE_DRAINING = 7
81 MTHCA_QP_PM_MIGRATED = 0x3,
82 MTHCA_QP_PM_ARMED = 0x0,
83 MTHCA_QP_PM_REARM = 0x1
87 /* qp_context flags */
88 MTHCA_QP_BIT_DE = 1 << 8,
90 MTHCA_QP_BIT_SRE = 1 << 15,
91 MTHCA_QP_BIT_SWE = 1 << 14,
92 MTHCA_QP_BIT_SAE = 1 << 13,
93 MTHCA_QP_BIT_SIC = 1 << 4,
94 MTHCA_QP_BIT_SSC = 1 << 3,
96 MTHCA_QP_BIT_RRE = 1 << 15,
97 MTHCA_QP_BIT_RWE = 1 << 14,
98 MTHCA_QP_BIT_RAE = 1 << 13,
99 MTHCA_QP_BIT_RIC = 1 << 4,
100 MTHCA_QP_BIT_RSC = 1 << 3
104 MTHCA_SEND_DOORBELL_FENCE = 1 << 5
107 struct mthca_qp_path {
116 __be32 sl_tclass_flowlabel;
120 struct mthca_qp_context {
122 __be32 tavor_sched_queue; /* Reserved on Arbel */
124 u8 rq_size_stride; /* Reserved on Tavor */
125 u8 sq_size_stride; /* Reserved on Tavor */
126 u8 rlkey_arbel_sched_queue; /* Reserved on Tavor */
131 struct mthca_qp_path pri_path;
132 struct mthca_qp_path alt_path;
139 __be32 next_send_psn;
141 __be32 snd_wqe_base_l; /* Next send WQE on Tavor */
142 __be32 snd_db_index; /* (debugging only entries) */
143 __be32 last_acked_psn;
146 __be32 rnr_nextrecvpsn;
149 __be32 rcv_wqe_base_l; /* Next recv WQE on Tavor */
150 __be32 rcv_db_index; /* (debugging only entries) */
154 __be16 rq_wqe_counter; /* reserved on Tavor */
155 __be16 sq_wqe_counter; /* reserved on Tavor */
159 struct mthca_qp_param {
160 __be32 opt_param_mask;
162 struct mthca_qp_context context;
167 MTHCA_QP_OPTPAR_ALT_ADDR_PATH = 1 << 0,
168 MTHCA_QP_OPTPAR_RRE = 1 << 1,
169 MTHCA_QP_OPTPAR_RAE = 1 << 2,
170 MTHCA_QP_OPTPAR_RWE = 1 << 3,
171 MTHCA_QP_OPTPAR_PKEY_INDEX = 1 << 4,
172 MTHCA_QP_OPTPAR_Q_KEY = 1 << 5,
173 MTHCA_QP_OPTPAR_RNR_TIMEOUT = 1 << 6,
174 MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH = 1 << 7,
175 MTHCA_QP_OPTPAR_SRA_MAX = 1 << 8,
176 MTHCA_QP_OPTPAR_RRA_MAX = 1 << 9,
177 MTHCA_QP_OPTPAR_PM_STATE = 1 << 10,
178 MTHCA_QP_OPTPAR_PORT_NUM = 1 << 11,
179 MTHCA_QP_OPTPAR_RETRY_COUNT = 1 << 12,
180 MTHCA_QP_OPTPAR_ALT_RNR_RETRY = 1 << 13,
181 MTHCA_QP_OPTPAR_ACK_TIMEOUT = 1 << 14,
182 MTHCA_QP_OPTPAR_RNR_RETRY = 1 << 15,
183 MTHCA_QP_OPTPAR_SCHED_QUEUE = 1 << 16
186 static const u8 mthca_opcode[] = {
187 [IB_WR_SEND] = MTHCA_OPCODE_SEND,
188 [IB_WR_SEND_WITH_IMM] = MTHCA_OPCODE_SEND_IMM,
189 [IB_WR_RDMA_WRITE] = MTHCA_OPCODE_RDMA_WRITE,
190 [IB_WR_RDMA_WRITE_WITH_IMM] = MTHCA_OPCODE_RDMA_WRITE_IMM,
191 [IB_WR_RDMA_READ] = MTHCA_OPCODE_RDMA_READ,
192 [IB_WR_ATOMIC_CMP_AND_SWP] = MTHCA_OPCODE_ATOMIC_CS,
193 [IB_WR_ATOMIC_FETCH_AND_ADD] = MTHCA_OPCODE_ATOMIC_FA,
196 static int is_sqp(struct mthca_dev *dev, struct mthca_qp *qp)
198 return qp->qpn >= dev->qp_table.sqp_start &&
199 qp->qpn <= dev->qp_table.sqp_start + 3;
202 static int is_qp0(struct mthca_dev *dev, struct mthca_qp *qp)
204 return qp->qpn >= dev->qp_table.sqp_start &&
205 qp->qpn <= dev->qp_table.sqp_start + 1;
208 static void *get_recv_wqe(struct mthca_qp *qp, int n)
211 return qp->queue.direct.buf + (n << qp->rq.wqe_shift);
213 return qp->queue.page_list[(n << qp->rq.wqe_shift) >> PAGE_SHIFT].buf +
214 ((n << qp->rq.wqe_shift) & (PAGE_SIZE - 1));
217 static void *get_send_wqe(struct mthca_qp *qp, int n)
220 return qp->queue.direct.buf + qp->send_wqe_offset +
221 (n << qp->sq.wqe_shift);
223 return qp->queue.page_list[(qp->send_wqe_offset +
224 (n << qp->sq.wqe_shift)) >>
226 ((qp->send_wqe_offset + (n << qp->sq.wqe_shift)) &
230 static void mthca_wq_reset(struct mthca_wq *wq)
233 wq->last_comp = wq->max - 1;
238 void mthca_qp_event(struct mthca_dev *dev, u32 qpn,
239 enum ib_event_type event_type)
242 struct ib_event event;
244 spin_lock(&dev->qp_table.lock);
245 qp = mthca_array_get(&dev->qp_table.qp, qpn & (dev->limits.num_qps - 1));
248 spin_unlock(&dev->qp_table.lock);
251 mthca_warn(dev, "Async event %d for bogus QP %08x\n",
256 if (event_type == IB_EVENT_PATH_MIG)
257 qp->port = qp->alt_port;
259 event.device = &dev->ib_dev;
260 event.event = event_type;
261 event.element.qp = &qp->ibqp;
262 if (qp->ibqp.event_handler)
263 qp->ibqp.event_handler(&event, qp->ibqp.qp_context);
265 spin_lock(&dev->qp_table.lock);
268 spin_unlock(&dev->qp_table.lock);
271 static int to_mthca_state(enum ib_qp_state ib_state)
274 case IB_QPS_RESET: return MTHCA_QP_STATE_RST;
275 case IB_QPS_INIT: return MTHCA_QP_STATE_INIT;
276 case IB_QPS_RTR: return MTHCA_QP_STATE_RTR;
277 case IB_QPS_RTS: return MTHCA_QP_STATE_RTS;
278 case IB_QPS_SQD: return MTHCA_QP_STATE_SQD;
279 case IB_QPS_SQE: return MTHCA_QP_STATE_SQE;
280 case IB_QPS_ERR: return MTHCA_QP_STATE_ERR;
285 enum { RC, UC, UD, RD, RDEE, MLX, NUM_TRANS };
287 static int to_mthca_st(int transport)
290 case RC: return MTHCA_QP_ST_RC;
291 case UC: return MTHCA_QP_ST_UC;
292 case UD: return MTHCA_QP_ST_UD;
293 case RD: return MTHCA_QP_ST_RD;
294 case MLX: return MTHCA_QP_ST_MLX;
299 static void store_attrs(struct mthca_sqp *sqp, const struct ib_qp_attr *attr,
302 if (attr_mask & IB_QP_PKEY_INDEX)
303 sqp->pkey_index = attr->pkey_index;
304 if (attr_mask & IB_QP_QKEY)
305 sqp->qkey = attr->qkey;
306 if (attr_mask & IB_QP_SQ_PSN)
307 sqp->send_psn = attr->sq_psn;
310 static void init_port(struct mthca_dev *dev, int port)
313 struct mthca_init_ib_param param;
315 memset(¶m, 0, sizeof param);
317 param.port_width = dev->limits.port_width_cap;
318 param.vl_cap = dev->limits.vl_cap;
319 param.mtu_cap = dev->limits.mtu_cap;
320 param.gid_cap = dev->limits.gid_table_len;
321 param.pkey_cap = dev->limits.pkey_table_len;
323 err = mthca_INIT_IB(dev, ¶m, port);
325 mthca_warn(dev, "INIT_IB failed, return code %d.\n", err);
328 static __be32 get_hw_access_flags(struct mthca_qp *qp, const struct ib_qp_attr *attr,
333 u32 hw_access_flags = 0;
335 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
336 dest_rd_atomic = attr->max_dest_rd_atomic;
338 dest_rd_atomic = qp->resp_depth;
340 if (attr_mask & IB_QP_ACCESS_FLAGS)
341 access_flags = attr->qp_access_flags;
343 access_flags = qp->atomic_rd_en;
346 access_flags &= IB_ACCESS_REMOTE_WRITE;
348 if (access_flags & IB_ACCESS_REMOTE_READ)
349 hw_access_flags |= MTHCA_QP_BIT_RRE;
350 if (access_flags & IB_ACCESS_REMOTE_ATOMIC)
351 hw_access_flags |= MTHCA_QP_BIT_RAE;
352 if (access_flags & IB_ACCESS_REMOTE_WRITE)
353 hw_access_flags |= MTHCA_QP_BIT_RWE;
355 return cpu_to_be32(hw_access_flags);
358 static inline enum ib_qp_state to_ib_qp_state(int mthca_state)
360 switch (mthca_state) {
361 case MTHCA_QP_STATE_RST: return IB_QPS_RESET;
362 case MTHCA_QP_STATE_INIT: return IB_QPS_INIT;
363 case MTHCA_QP_STATE_RTR: return IB_QPS_RTR;
364 case MTHCA_QP_STATE_RTS: return IB_QPS_RTS;
365 case MTHCA_QP_STATE_DRAINING:
366 case MTHCA_QP_STATE_SQD: return IB_QPS_SQD;
367 case MTHCA_QP_STATE_SQE: return IB_QPS_SQE;
368 case MTHCA_QP_STATE_ERR: return IB_QPS_ERR;
373 static inline enum ib_mig_state to_ib_mig_state(int mthca_mig_state)
375 switch (mthca_mig_state) {
376 case 0: return IB_MIG_ARMED;
377 case 1: return IB_MIG_REARM;
378 case 3: return IB_MIG_MIGRATED;
383 static int to_ib_qp_access_flags(int mthca_flags)
387 if (mthca_flags & MTHCA_QP_BIT_RRE)
388 ib_flags |= IB_ACCESS_REMOTE_READ;
389 if (mthca_flags & MTHCA_QP_BIT_RWE)
390 ib_flags |= IB_ACCESS_REMOTE_WRITE;
391 if (mthca_flags & MTHCA_QP_BIT_RAE)
392 ib_flags |= IB_ACCESS_REMOTE_ATOMIC;
397 static void to_rdma_ah_attr(struct mthca_dev *dev,
398 struct rdma_ah_attr *ah_attr,
399 struct mthca_qp_path *path)
401 u8 port_num = (be32_to_cpu(path->port_pkey) >> 24) & 0x3;
403 memset(ah_attr, 0, sizeof(*ah_attr));
405 if (port_num == 0 || port_num > dev->limits.num_ports)
407 ah_attr->type = rdma_ah_find_type(&dev->ib_dev, port_num);
408 rdma_ah_set_port_num(ah_attr, port_num);
410 rdma_ah_set_dlid(ah_attr, be16_to_cpu(path->rlid));
411 rdma_ah_set_sl(ah_attr, be32_to_cpu(path->sl_tclass_flowlabel) >> 28);
412 rdma_ah_set_path_bits(ah_attr, path->g_mylmc & 0x7f);
413 rdma_ah_set_static_rate(ah_attr,
414 mthca_rate_to_ib(dev,
415 path->static_rate & 0xf,
417 if (path->g_mylmc & (1 << 7)) {
418 u32 tc_fl = be32_to_cpu(path->sl_tclass_flowlabel);
420 rdma_ah_set_grh(ah_attr, NULL,
423 (dev->limits.gid_table_len - 1),
425 (tc_fl >> 20) & 0xff);
426 rdma_ah_set_dgid_raw(ah_attr, path->rgid);
430 int mthca_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, int qp_attr_mask,
431 struct ib_qp_init_attr *qp_init_attr)
433 struct mthca_dev *dev = to_mdev(ibqp->device);
434 struct mthca_qp *qp = to_mqp(ibqp);
436 struct mthca_mailbox *mailbox = NULL;
437 struct mthca_qp_param *qp_param;
438 struct mthca_qp_context *context;
441 mutex_lock(&qp->mutex);
443 if (qp->state == IB_QPS_RESET) {
444 qp_attr->qp_state = IB_QPS_RESET;
448 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
449 if (IS_ERR(mailbox)) {
450 err = PTR_ERR(mailbox);
454 err = mthca_QUERY_QP(dev, qp->qpn, 0, mailbox);
456 mthca_warn(dev, "QUERY_QP failed (%d)\n", err);
460 qp_param = mailbox->buf;
461 context = &qp_param->context;
462 mthca_state = be32_to_cpu(context->flags) >> 28;
464 qp->state = to_ib_qp_state(mthca_state);
465 qp_attr->qp_state = qp->state;
466 qp_attr->path_mtu = context->mtu_msgmax >> 5;
467 qp_attr->path_mig_state =
468 to_ib_mig_state((be32_to_cpu(context->flags) >> 11) & 0x3);
469 qp_attr->qkey = be32_to_cpu(context->qkey);
470 qp_attr->rq_psn = be32_to_cpu(context->rnr_nextrecvpsn) & 0xffffff;
471 qp_attr->sq_psn = be32_to_cpu(context->next_send_psn) & 0xffffff;
472 qp_attr->dest_qp_num = be32_to_cpu(context->remote_qpn) & 0xffffff;
473 qp_attr->qp_access_flags =
474 to_ib_qp_access_flags(be32_to_cpu(context->params2));
476 if (qp->transport == RC || qp->transport == UC) {
477 to_rdma_ah_attr(dev, &qp_attr->ah_attr, &context->pri_path);
478 to_rdma_ah_attr(dev, &qp_attr->alt_ah_attr, &context->alt_path);
479 qp_attr->alt_pkey_index =
480 be32_to_cpu(context->alt_path.port_pkey) & 0x7f;
481 qp_attr->alt_port_num =
482 rdma_ah_get_port_num(&qp_attr->alt_ah_attr);
485 qp_attr->pkey_index = be32_to_cpu(context->pri_path.port_pkey) & 0x7f;
487 (be32_to_cpu(context->pri_path.port_pkey) >> 24) & 0x3;
489 /* qp_attr->en_sqd_async_notify is only applicable in modify qp */
490 qp_attr->sq_draining = mthca_state == MTHCA_QP_STATE_DRAINING;
492 qp_attr->max_rd_atomic = 1 << ((be32_to_cpu(context->params1) >> 21) & 0x7);
494 qp_attr->max_dest_rd_atomic =
495 1 << ((be32_to_cpu(context->params2) >> 21) & 0x7);
496 qp_attr->min_rnr_timer =
497 (be32_to_cpu(context->rnr_nextrecvpsn) >> 24) & 0x1f;
498 qp_attr->timeout = context->pri_path.ackto >> 3;
499 qp_attr->retry_cnt = (be32_to_cpu(context->params1) >> 16) & 0x7;
500 qp_attr->rnr_retry = context->pri_path.rnr_retry >> 5;
501 qp_attr->alt_timeout = context->alt_path.ackto >> 3;
504 qp_attr->cur_qp_state = qp_attr->qp_state;
505 qp_attr->cap.max_send_wr = qp->sq.max;
506 qp_attr->cap.max_recv_wr = qp->rq.max;
507 qp_attr->cap.max_send_sge = qp->sq.max_gs;
508 qp_attr->cap.max_recv_sge = qp->rq.max_gs;
509 qp_attr->cap.max_inline_data = qp->max_inline_data;
511 qp_init_attr->cap = qp_attr->cap;
512 qp_init_attr->sq_sig_type = qp->sq_policy;
515 mthca_free_mailbox(dev, mailbox);
518 mutex_unlock(&qp->mutex);
522 static int mthca_path_set(struct mthca_dev *dev, const struct rdma_ah_attr *ah,
523 struct mthca_qp_path *path, u8 port)
525 path->g_mylmc = rdma_ah_get_path_bits(ah) & 0x7f;
526 path->rlid = cpu_to_be16(rdma_ah_get_dlid(ah));
527 path->static_rate = mthca_get_rate(dev, rdma_ah_get_static_rate(ah),
530 if (rdma_ah_get_ah_flags(ah) & IB_AH_GRH) {
531 const struct ib_global_route *grh = rdma_ah_read_grh(ah);
533 if (grh->sgid_index >= dev->limits.gid_table_len) {
534 mthca_dbg(dev, "sgid_index (%u) too large. max is %d\n",
536 dev->limits.gid_table_len - 1);
540 path->g_mylmc |= 1 << 7;
541 path->mgid_index = grh->sgid_index;
542 path->hop_limit = grh->hop_limit;
543 path->sl_tclass_flowlabel =
544 cpu_to_be32((rdma_ah_get_sl(ah) << 28) |
545 (grh->traffic_class << 20) |
547 memcpy(path->rgid, grh->dgid.raw, 16);
549 path->sl_tclass_flowlabel = cpu_to_be32(rdma_ah_get_sl(ah) <<
556 static int __mthca_modify_qp(struct ib_qp *ibqp,
557 const struct ib_qp_attr *attr, int attr_mask,
558 enum ib_qp_state cur_state,
559 enum ib_qp_state new_state,
560 struct ib_udata *udata)
562 struct mthca_dev *dev = to_mdev(ibqp->device);
563 struct mthca_qp *qp = to_mqp(ibqp);
564 struct mthca_ucontext *context = rdma_udata_to_drv_context(
565 udata, struct mthca_ucontext, ibucontext);
566 struct mthca_mailbox *mailbox;
567 struct mthca_qp_param *qp_param;
568 struct mthca_qp_context *qp_context;
572 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
573 if (IS_ERR(mailbox)) {
574 err = PTR_ERR(mailbox);
577 qp_param = mailbox->buf;
578 qp_context = &qp_param->context;
579 memset(qp_param, 0, sizeof *qp_param);
581 qp_context->flags = cpu_to_be32((to_mthca_state(new_state) << 28) |
582 (to_mthca_st(qp->transport) << 16));
583 qp_context->flags |= cpu_to_be32(MTHCA_QP_BIT_DE);
584 if (!(attr_mask & IB_QP_PATH_MIG_STATE))
585 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
587 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PM_STATE);
588 switch (attr->path_mig_state) {
589 case IB_MIG_MIGRATED:
590 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_MIGRATED << 11);
593 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_REARM << 11);
596 qp_context->flags |= cpu_to_be32(MTHCA_QP_PM_ARMED << 11);
601 /* leave tavor_sched_queue as 0 */
603 if (qp->transport == MLX || qp->transport == UD)
604 qp_context->mtu_msgmax = (IB_MTU_2048 << 5) | 11;
605 else if (attr_mask & IB_QP_PATH_MTU) {
606 if (attr->path_mtu < IB_MTU_256 || attr->path_mtu > IB_MTU_2048) {
607 mthca_dbg(dev, "path MTU (%u) is invalid\n",
611 qp_context->mtu_msgmax = (attr->path_mtu << 5) | 31;
614 if (mthca_is_memfree(dev)) {
616 qp_context->rq_size_stride = ilog2(qp->rq.max) << 3;
617 qp_context->rq_size_stride |= qp->rq.wqe_shift - 4;
620 qp_context->sq_size_stride = ilog2(qp->sq.max) << 3;
621 qp_context->sq_size_stride |= qp->sq.wqe_shift - 4;
624 /* leave arbel_sched_queue as 0 */
626 if (qp->ibqp.uobject)
627 qp_context->usr_page = cpu_to_be32(context->uar.index);
629 qp_context->usr_page = cpu_to_be32(dev->driver_uar.index);
630 qp_context->local_qpn = cpu_to_be32(qp->qpn);
631 if (attr_mask & IB_QP_DEST_QPN) {
632 qp_context->remote_qpn = cpu_to_be32(attr->dest_qp_num);
635 if (qp->transport == MLX)
636 qp_context->pri_path.port_pkey |=
637 cpu_to_be32(qp->port << 24);
639 if (attr_mask & IB_QP_PORT) {
640 qp_context->pri_path.port_pkey |=
641 cpu_to_be32(attr->port_num << 24);
642 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PORT_NUM);
646 if (attr_mask & IB_QP_PKEY_INDEX) {
647 qp_context->pri_path.port_pkey |=
648 cpu_to_be32(attr->pkey_index);
649 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PKEY_INDEX);
652 if (attr_mask & IB_QP_RNR_RETRY) {
653 qp_context->alt_path.rnr_retry = qp_context->pri_path.rnr_retry =
654 attr->rnr_retry << 5;
655 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_RETRY |
656 MTHCA_QP_OPTPAR_ALT_RNR_RETRY);
659 if (attr_mask & IB_QP_AV) {
660 if (mthca_path_set(dev, &attr->ah_attr, &qp_context->pri_path,
661 attr_mask & IB_QP_PORT ? attr->port_num : qp->port))
664 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_PRIMARY_ADDR_PATH);
667 if (ibqp->qp_type == IB_QPT_RC &&
668 cur_state == IB_QPS_INIT && new_state == IB_QPS_RTR) {
669 u8 sched_queue = ibqp->uobject ? 0x2 : 0x1;
671 if (mthca_is_memfree(dev))
672 qp_context->rlkey_arbel_sched_queue |= sched_queue;
674 qp_context->tavor_sched_queue |= cpu_to_be32(sched_queue);
676 qp_param->opt_param_mask |=
677 cpu_to_be32(MTHCA_QP_OPTPAR_SCHED_QUEUE);
680 if (attr_mask & IB_QP_TIMEOUT) {
681 qp_context->pri_path.ackto = attr->timeout << 3;
682 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_ACK_TIMEOUT);
685 if (attr_mask & IB_QP_ALT_PATH) {
686 if (attr->alt_pkey_index >= dev->limits.pkey_table_len) {
687 mthca_dbg(dev, "Alternate P_Key index (%u) too large. max is %d\n",
688 attr->alt_pkey_index, dev->limits.pkey_table_len-1);
692 if (attr->alt_port_num == 0 || attr->alt_port_num > dev->limits.num_ports) {
693 mthca_dbg(dev, "Alternate port number (%u) is invalid\n",
698 if (mthca_path_set(dev, &attr->alt_ah_attr, &qp_context->alt_path,
699 rdma_ah_get_port_num(&attr->alt_ah_attr)))
702 qp_context->alt_path.port_pkey |= cpu_to_be32(attr->alt_pkey_index |
703 attr->alt_port_num << 24);
704 qp_context->alt_path.ackto = attr->alt_timeout << 3;
705 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_ALT_ADDR_PATH);
709 qp_context->pd = cpu_to_be32(to_mpd(ibqp->pd)->pd_num);
710 /* leave wqe_base as 0 (we always create an MR based at 0 for WQs) */
711 qp_context->wqe_lkey = cpu_to_be32(qp->mr.ibmr.lkey);
712 qp_context->params1 = cpu_to_be32((MTHCA_ACK_REQ_FREQ << 28) |
713 (MTHCA_FLIGHT_LIMIT << 24) |
715 if (qp->sq_policy == IB_SIGNAL_ALL_WR)
716 qp_context->params1 |= cpu_to_be32(MTHCA_QP_BIT_SSC);
717 if (attr_mask & IB_QP_RETRY_CNT) {
718 qp_context->params1 |= cpu_to_be32(attr->retry_cnt << 16);
719 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RETRY_COUNT);
722 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) {
723 if (attr->max_rd_atomic) {
724 qp_context->params1 |=
725 cpu_to_be32(MTHCA_QP_BIT_SRE |
727 qp_context->params1 |=
728 cpu_to_be32(fls(attr->max_rd_atomic - 1) << 21);
730 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_SRA_MAX);
733 if (attr_mask & IB_QP_SQ_PSN)
734 qp_context->next_send_psn = cpu_to_be32(attr->sq_psn);
735 qp_context->cqn_snd = cpu_to_be32(to_mcq(ibqp->send_cq)->cqn);
737 if (mthca_is_memfree(dev)) {
738 qp_context->snd_wqe_base_l = cpu_to_be32(qp->send_wqe_offset);
739 qp_context->snd_db_index = cpu_to_be32(qp->sq.db_index);
742 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) {
743 if (attr->max_dest_rd_atomic)
744 qp_context->params2 |=
745 cpu_to_be32(fls(attr->max_dest_rd_atomic - 1) << 21);
747 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RRA_MAX);
750 if (attr_mask & (IB_QP_ACCESS_FLAGS | IB_QP_MAX_DEST_RD_ATOMIC)) {
751 qp_context->params2 |= get_hw_access_flags(qp, attr, attr_mask);
752 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE |
753 MTHCA_QP_OPTPAR_RRE |
754 MTHCA_QP_OPTPAR_RAE);
757 qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RSC);
760 qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RIC);
762 if (attr_mask & IB_QP_MIN_RNR_TIMER) {
763 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->min_rnr_timer << 24);
764 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RNR_TIMEOUT);
766 if (attr_mask & IB_QP_RQ_PSN)
767 qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn);
769 qp_context->ra_buff_indx =
770 cpu_to_be32(dev->qp_table.rdb_base +
771 ((qp->qpn & (dev->limits.num_qps - 1)) * MTHCA_RDB_ENTRY_SIZE <<
772 dev->qp_table.rdb_shift));
774 qp_context->cqn_rcv = cpu_to_be32(to_mcq(ibqp->recv_cq)->cqn);
776 if (mthca_is_memfree(dev))
777 qp_context->rcv_db_index = cpu_to_be32(qp->rq.db_index);
779 if (attr_mask & IB_QP_QKEY) {
780 qp_context->qkey = cpu_to_be32(attr->qkey);
781 qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_Q_KEY);
785 qp_context->srqn = cpu_to_be32(1 << 24 |
786 to_msrq(ibqp->srq)->srqn);
788 if (cur_state == IB_QPS_RTS && new_state == IB_QPS_SQD &&
789 attr_mask & IB_QP_EN_SQD_ASYNC_NOTIFY &&
790 attr->en_sqd_async_notify)
793 err = mthca_MODIFY_QP(dev, cur_state, new_state, qp->qpn, 0,
796 mthca_warn(dev, "modify QP %d->%d returned %d.\n",
797 cur_state, new_state, err);
801 qp->state = new_state;
802 if (attr_mask & IB_QP_ACCESS_FLAGS)
803 qp->atomic_rd_en = attr->qp_access_flags;
804 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC)
805 qp->resp_depth = attr->max_dest_rd_atomic;
806 if (attr_mask & IB_QP_PORT)
807 qp->port = attr->port_num;
808 if (attr_mask & IB_QP_ALT_PATH)
809 qp->alt_port = attr->alt_port_num;
812 store_attrs(to_msqp(qp), attr, attr_mask);
815 * If we moved QP0 to RTR, bring the IB link up; if we moved
816 * QP0 to RESET or ERROR, bring the link back down.
818 if (is_qp0(dev, qp)) {
819 if (cur_state != IB_QPS_RTR &&
820 new_state == IB_QPS_RTR)
821 init_port(dev, qp->port);
823 if (cur_state != IB_QPS_RESET &&
824 cur_state != IB_QPS_ERR &&
825 (new_state == IB_QPS_RESET ||
826 new_state == IB_QPS_ERR))
827 mthca_CLOSE_IB(dev, qp->port);
831 * If we moved a kernel QP to RESET, clean up all old CQ
832 * entries and reinitialize the QP.
834 if (new_state == IB_QPS_RESET && !qp->ibqp.uobject) {
835 mthca_cq_clean(dev, to_mcq(qp->ibqp.recv_cq), qp->qpn,
836 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
837 if (qp->ibqp.send_cq != qp->ibqp.recv_cq)
838 mthca_cq_clean(dev, to_mcq(qp->ibqp.send_cq), qp->qpn, NULL);
840 mthca_wq_reset(&qp->sq);
841 qp->sq.last = get_send_wqe(qp, qp->sq.max - 1);
843 mthca_wq_reset(&qp->rq);
844 qp->rq.last = get_recv_wqe(qp, qp->rq.max - 1);
846 if (mthca_is_memfree(dev)) {
853 mthca_free_mailbox(dev, mailbox);
858 int mthca_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, int attr_mask,
859 struct ib_udata *udata)
861 struct mthca_dev *dev = to_mdev(ibqp->device);
862 struct mthca_qp *qp = to_mqp(ibqp);
863 enum ib_qp_state cur_state, new_state;
866 mutex_lock(&qp->mutex);
867 if (attr_mask & IB_QP_CUR_STATE) {
868 cur_state = attr->cur_qp_state;
870 spin_lock_irq(&qp->sq.lock);
871 spin_lock(&qp->rq.lock);
872 cur_state = qp->state;
873 spin_unlock(&qp->rq.lock);
874 spin_unlock_irq(&qp->sq.lock);
877 new_state = attr_mask & IB_QP_STATE ? attr->qp_state : cur_state;
879 if (!ib_modify_qp_is_ok(cur_state, new_state, ibqp->qp_type,
881 mthca_dbg(dev, "Bad QP transition (transport %d) "
882 "%d->%d with attr 0x%08x\n",
883 qp->transport, cur_state, new_state,
888 if ((attr_mask & IB_QP_PKEY_INDEX) &&
889 attr->pkey_index >= dev->limits.pkey_table_len) {
890 mthca_dbg(dev, "P_Key index (%u) too large. max is %d\n",
891 attr->pkey_index, dev->limits.pkey_table_len-1);
895 if ((attr_mask & IB_QP_PORT) &&
896 (attr->port_num == 0 || attr->port_num > dev->limits.num_ports)) {
897 mthca_dbg(dev, "Port number (%u) is invalid\n", attr->port_num);
901 if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC &&
902 attr->max_rd_atomic > dev->limits.max_qp_init_rdma) {
903 mthca_dbg(dev, "Max rdma_atomic as initiator %u too large (max is %d)\n",
904 attr->max_rd_atomic, dev->limits.max_qp_init_rdma);
908 if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC &&
909 attr->max_dest_rd_atomic > 1 << dev->qp_table.rdb_shift) {
910 mthca_dbg(dev, "Max rdma_atomic as responder %u too large (max %d)\n",
911 attr->max_dest_rd_atomic, 1 << dev->qp_table.rdb_shift);
915 if (cur_state == new_state && cur_state == IB_QPS_RESET) {
920 err = __mthca_modify_qp(ibqp, attr, attr_mask, cur_state, new_state,
924 mutex_unlock(&qp->mutex);
928 static int mthca_max_data_size(struct mthca_dev *dev, struct mthca_qp *qp, int desc_sz)
931 * Calculate the maximum size of WQE s/g segments, excluding
932 * the next segment and other non-data segments.
934 int max_data_size = desc_sz - sizeof (struct mthca_next_seg);
936 switch (qp->transport) {
938 max_data_size -= 2 * sizeof (struct mthca_data_seg);
942 if (mthca_is_memfree(dev))
943 max_data_size -= sizeof (struct mthca_arbel_ud_seg);
945 max_data_size -= sizeof (struct mthca_tavor_ud_seg);
949 max_data_size -= sizeof (struct mthca_raddr_seg);
953 return max_data_size;
956 static inline int mthca_max_inline_data(struct mthca_pd *pd, int max_data_size)
958 /* We don't support inline data for kernel QPs (yet). */
959 return pd->ibpd.uobject ? max_data_size - MTHCA_INLINE_HEADER_SIZE : 0;
962 static void mthca_adjust_qp_caps(struct mthca_dev *dev,
966 int max_data_size = mthca_max_data_size(dev, qp,
967 min(dev->limits.max_desc_sz,
968 1 << qp->sq.wqe_shift));
970 qp->max_inline_data = mthca_max_inline_data(pd, max_data_size);
972 qp->sq.max_gs = min_t(int, dev->limits.max_sg,
973 max_data_size / sizeof (struct mthca_data_seg));
974 qp->rq.max_gs = min_t(int, dev->limits.max_sg,
975 (min(dev->limits.max_desc_sz, 1 << qp->rq.wqe_shift) -
976 sizeof (struct mthca_next_seg)) /
977 sizeof (struct mthca_data_seg));
981 * Allocate and register buffer for WQEs. qp->rq.max, sq.max,
982 * rq.max_gs and sq.max_gs must all be assigned.
983 * mthca_alloc_wqe_buf will calculate rq.wqe_shift and
984 * sq.wqe_shift (as well as send_wqe_offset, is_direct, and
987 static int mthca_alloc_wqe_buf(struct mthca_dev *dev,
990 struct ib_udata *udata)
995 size = sizeof (struct mthca_next_seg) +
996 qp->rq.max_gs * sizeof (struct mthca_data_seg);
998 if (size > dev->limits.max_desc_sz)
1001 for (qp->rq.wqe_shift = 6; 1 << qp->rq.wqe_shift < size;
1005 size = qp->sq.max_gs * sizeof (struct mthca_data_seg);
1006 switch (qp->transport) {
1008 size += 2 * sizeof (struct mthca_data_seg);
1012 size += mthca_is_memfree(dev) ?
1013 sizeof (struct mthca_arbel_ud_seg) :
1014 sizeof (struct mthca_tavor_ud_seg);
1018 size += sizeof (struct mthca_raddr_seg);
1022 size += sizeof (struct mthca_raddr_seg);
1024 * An atomic op will require an atomic segment, a
1025 * remote address segment and one scatter entry.
1027 size = max_t(int, size,
1028 sizeof (struct mthca_atomic_seg) +
1029 sizeof (struct mthca_raddr_seg) +
1030 sizeof (struct mthca_data_seg));
1037 /* Make sure that we have enough space for a bind request */
1038 size = max_t(int, size, sizeof (struct mthca_bind_seg));
1040 size += sizeof (struct mthca_next_seg);
1042 if (size > dev->limits.max_desc_sz)
1045 for (qp->sq.wqe_shift = 6; 1 << qp->sq.wqe_shift < size;
1049 qp->send_wqe_offset = ALIGN(qp->rq.max << qp->rq.wqe_shift,
1050 1 << qp->sq.wqe_shift);
1053 * If this is a userspace QP, we don't actually have to
1054 * allocate anything. All we need is to calculate the WQE
1055 * sizes and the send_wqe_offset, so we're done now.
1060 size = PAGE_ALIGN(qp->send_wqe_offset +
1061 (qp->sq.max << qp->sq.wqe_shift));
1063 qp->wrid = kmalloc_array(qp->rq.max + qp->sq.max, sizeof(u64),
1068 err = mthca_buf_alloc(dev, size, MTHCA_MAX_DIRECT_QP_SIZE,
1069 &qp->queue, &qp->is_direct, pd, 0, &qp->mr);
1080 static void mthca_free_wqe_buf(struct mthca_dev *dev,
1081 struct mthca_qp *qp)
1083 mthca_buf_free(dev, PAGE_ALIGN(qp->send_wqe_offset +
1084 (qp->sq.max << qp->sq.wqe_shift)),
1085 &qp->queue, qp->is_direct, &qp->mr);
1089 static int mthca_map_memfree(struct mthca_dev *dev,
1090 struct mthca_qp *qp)
1094 if (mthca_is_memfree(dev)) {
1095 ret = mthca_table_get(dev, dev->qp_table.qp_table, qp->qpn);
1099 ret = mthca_table_get(dev, dev->qp_table.eqp_table, qp->qpn);
1103 ret = mthca_table_get(dev, dev->qp_table.rdb_table,
1104 qp->qpn << dev->qp_table.rdb_shift);
1113 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
1116 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
1121 static void mthca_unmap_memfree(struct mthca_dev *dev,
1122 struct mthca_qp *qp)
1124 mthca_table_put(dev, dev->qp_table.rdb_table,
1125 qp->qpn << dev->qp_table.rdb_shift);
1126 mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn);
1127 mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn);
1130 static int mthca_alloc_memfree(struct mthca_dev *dev,
1131 struct mthca_qp *qp)
1133 if (mthca_is_memfree(dev)) {
1134 qp->rq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_RQ,
1135 qp->qpn, &qp->rq.db);
1136 if (qp->rq.db_index < 0)
1139 qp->sq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_SQ,
1140 qp->qpn, &qp->sq.db);
1141 if (qp->sq.db_index < 0) {
1142 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
1150 static void mthca_free_memfree(struct mthca_dev *dev,
1151 struct mthca_qp *qp)
1153 if (mthca_is_memfree(dev)) {
1154 mthca_free_db(dev, MTHCA_DB_TYPE_SQ, qp->sq.db_index);
1155 mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index);
1159 static int mthca_alloc_qp_common(struct mthca_dev *dev,
1160 struct mthca_pd *pd,
1161 struct mthca_cq *send_cq,
1162 struct mthca_cq *recv_cq,
1163 enum ib_sig_type send_policy,
1164 struct mthca_qp *qp,
1165 struct ib_udata *udata)
1169 struct mthca_next_seg *next;
1172 init_waitqueue_head(&qp->wait);
1173 mutex_init(&qp->mutex);
1174 qp->state = IB_QPS_RESET;
1175 qp->atomic_rd_en = 0;
1177 qp->sq_policy = send_policy;
1178 mthca_wq_reset(&qp->sq);
1179 mthca_wq_reset(&qp->rq);
1181 spin_lock_init(&qp->sq.lock);
1182 spin_lock_init(&qp->rq.lock);
1184 ret = mthca_map_memfree(dev, qp);
1188 ret = mthca_alloc_wqe_buf(dev, pd, qp, udata);
1190 mthca_unmap_memfree(dev, qp);
1194 mthca_adjust_qp_caps(dev, pd, qp);
1197 * If this is a userspace QP, we're done now. The doorbells
1198 * will be allocated and buffers will be initialized in
1204 ret = mthca_alloc_memfree(dev, qp);
1206 mthca_free_wqe_buf(dev, qp);
1207 mthca_unmap_memfree(dev, qp);
1211 if (mthca_is_memfree(dev)) {
1212 struct mthca_data_seg *scatter;
1213 int size = (sizeof (struct mthca_next_seg) +
1214 qp->rq.max_gs * sizeof (struct mthca_data_seg)) / 16;
1216 for (i = 0; i < qp->rq.max; ++i) {
1217 next = get_recv_wqe(qp, i);
1218 next->nda_op = cpu_to_be32(((i + 1) & (qp->rq.max - 1)) <<
1220 next->ee_nds = cpu_to_be32(size);
1222 for (scatter = (void *) (next + 1);
1223 (void *) scatter < (void *) next + (1 << qp->rq.wqe_shift);
1225 scatter->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
1228 for (i = 0; i < qp->sq.max; ++i) {
1229 next = get_send_wqe(qp, i);
1230 next->nda_op = cpu_to_be32((((i + 1) & (qp->sq.max - 1)) <<
1232 qp->send_wqe_offset);
1235 for (i = 0; i < qp->rq.max; ++i) {
1236 next = get_recv_wqe(qp, i);
1237 next->nda_op = htonl((((i + 1) % qp->rq.max) <<
1238 qp->rq.wqe_shift) | 1);
1243 qp->sq.last = get_send_wqe(qp, qp->sq.max - 1);
1244 qp->rq.last = get_recv_wqe(qp, qp->rq.max - 1);
1249 static int mthca_set_qp_size(struct mthca_dev *dev, struct ib_qp_cap *cap,
1250 struct mthca_pd *pd, struct mthca_qp *qp)
1252 int max_data_size = mthca_max_data_size(dev, qp, dev->limits.max_desc_sz);
1254 /* Sanity check QP size before proceeding */
1255 if (cap->max_send_wr > dev->limits.max_wqes ||
1256 cap->max_recv_wr > dev->limits.max_wqes ||
1257 cap->max_send_sge > dev->limits.max_sg ||
1258 cap->max_recv_sge > dev->limits.max_sg ||
1259 cap->max_inline_data > mthca_max_inline_data(pd, max_data_size))
1263 * For MLX transport we need 2 extra send gather entries:
1264 * one for the header and one for the checksum at the end
1266 if (qp->transport == MLX && cap->max_send_sge + 2 > dev->limits.max_sg)
1269 if (mthca_is_memfree(dev)) {
1270 qp->rq.max = cap->max_recv_wr ?
1271 roundup_pow_of_two(cap->max_recv_wr) : 0;
1272 qp->sq.max = cap->max_send_wr ?
1273 roundup_pow_of_two(cap->max_send_wr) : 0;
1275 qp->rq.max = cap->max_recv_wr;
1276 qp->sq.max = cap->max_send_wr;
1279 qp->rq.max_gs = cap->max_recv_sge;
1280 qp->sq.max_gs = max_t(int, cap->max_send_sge,
1281 ALIGN(cap->max_inline_data + MTHCA_INLINE_HEADER_SIZE,
1282 MTHCA_INLINE_CHUNK_SIZE) /
1283 sizeof (struct mthca_data_seg));
1288 int mthca_alloc_qp(struct mthca_dev *dev,
1289 struct mthca_pd *pd,
1290 struct mthca_cq *send_cq,
1291 struct mthca_cq *recv_cq,
1292 enum ib_qp_type type,
1293 enum ib_sig_type send_policy,
1294 struct ib_qp_cap *cap,
1295 struct mthca_qp *qp,
1296 struct ib_udata *udata)
1301 case IB_QPT_RC: qp->transport = RC; break;
1302 case IB_QPT_UC: qp->transport = UC; break;
1303 case IB_QPT_UD: qp->transport = UD; break;
1304 default: return -EINVAL;
1307 err = mthca_set_qp_size(dev, cap, pd, qp);
1311 qp->qpn = mthca_alloc(&dev->qp_table.alloc);
1315 /* initialize port to zero for error-catching. */
1318 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1319 send_policy, qp, udata);
1321 mthca_free(&dev->qp_table.alloc, qp->qpn);
1325 spin_lock_irq(&dev->qp_table.lock);
1326 mthca_array_set(&dev->qp_table.qp,
1327 qp->qpn & (dev->limits.num_qps - 1), qp);
1328 spin_unlock_irq(&dev->qp_table.lock);
1333 static void mthca_lock_cqs(struct mthca_cq *send_cq, struct mthca_cq *recv_cq)
1334 __acquires(&send_cq->lock) __acquires(&recv_cq->lock)
1336 if (send_cq == recv_cq) {
1337 spin_lock_irq(&send_cq->lock);
1338 __acquire(&recv_cq->lock);
1339 } else if (send_cq->cqn < recv_cq->cqn) {
1340 spin_lock_irq(&send_cq->lock);
1341 spin_lock_nested(&recv_cq->lock, SINGLE_DEPTH_NESTING);
1343 spin_lock_irq(&recv_cq->lock);
1344 spin_lock_nested(&send_cq->lock, SINGLE_DEPTH_NESTING);
1348 static void mthca_unlock_cqs(struct mthca_cq *send_cq, struct mthca_cq *recv_cq)
1349 __releases(&send_cq->lock) __releases(&recv_cq->lock)
1351 if (send_cq == recv_cq) {
1352 __release(&recv_cq->lock);
1353 spin_unlock_irq(&send_cq->lock);
1354 } else if (send_cq->cqn < recv_cq->cqn) {
1355 spin_unlock(&recv_cq->lock);
1356 spin_unlock_irq(&send_cq->lock);
1358 spin_unlock(&send_cq->lock);
1359 spin_unlock_irq(&recv_cq->lock);
1363 int mthca_alloc_sqp(struct mthca_dev *dev,
1364 struct mthca_pd *pd,
1365 struct mthca_cq *send_cq,
1366 struct mthca_cq *recv_cq,
1367 enum ib_sig_type send_policy,
1368 struct ib_qp_cap *cap,
1371 struct mthca_sqp *sqp,
1372 struct ib_udata *udata)
1374 u32 mqpn = qpn * 2 + dev->qp_table.sqp_start + port - 1;
1377 sqp->qp.transport = MLX;
1378 err = mthca_set_qp_size(dev, cap, pd, &sqp->qp);
1382 sqp->header_buf_size = sqp->qp.sq.max * MTHCA_UD_HEADER_SIZE;
1383 sqp->header_buf = dma_alloc_coherent(&dev->pdev->dev, sqp->header_buf_size,
1384 &sqp->header_dma, GFP_KERNEL);
1385 if (!sqp->header_buf)
1388 spin_lock_irq(&dev->qp_table.lock);
1389 if (mthca_array_get(&dev->qp_table.qp, mqpn))
1392 mthca_array_set(&dev->qp_table.qp, mqpn, sqp);
1393 spin_unlock_irq(&dev->qp_table.lock);
1398 sqp->qp.port = port;
1400 sqp->qp.transport = MLX;
1402 err = mthca_alloc_qp_common(dev, pd, send_cq, recv_cq,
1403 send_policy, &sqp->qp, udata);
1407 atomic_inc(&pd->sqp_count);
1413 * Lock CQs here, so that CQ polling code can do QP lookup
1414 * without taking a lock.
1416 mthca_lock_cqs(send_cq, recv_cq);
1418 spin_lock(&dev->qp_table.lock);
1419 mthca_array_clear(&dev->qp_table.qp, mqpn);
1420 spin_unlock(&dev->qp_table.lock);
1422 mthca_unlock_cqs(send_cq, recv_cq);
1425 dma_free_coherent(&dev->pdev->dev, sqp->header_buf_size,
1426 sqp->header_buf, sqp->header_dma);
1431 static inline int get_qp_refcount(struct mthca_dev *dev, struct mthca_qp *qp)
1435 spin_lock_irq(&dev->qp_table.lock);
1437 spin_unlock_irq(&dev->qp_table.lock);
1442 void mthca_free_qp(struct mthca_dev *dev,
1443 struct mthca_qp *qp)
1445 struct mthca_cq *send_cq;
1446 struct mthca_cq *recv_cq;
1448 send_cq = to_mcq(qp->ibqp.send_cq);
1449 recv_cq = to_mcq(qp->ibqp.recv_cq);
1452 * Lock CQs here, so that CQ polling code can do QP lookup
1453 * without taking a lock.
1455 mthca_lock_cqs(send_cq, recv_cq);
1457 spin_lock(&dev->qp_table.lock);
1458 mthca_array_clear(&dev->qp_table.qp,
1459 qp->qpn & (dev->limits.num_qps - 1));
1461 spin_unlock(&dev->qp_table.lock);
1463 mthca_unlock_cqs(send_cq, recv_cq);
1465 wait_event(qp->wait, !get_qp_refcount(dev, qp));
1467 if (qp->state != IB_QPS_RESET)
1468 mthca_MODIFY_QP(dev, qp->state, IB_QPS_RESET, qp->qpn, 0,
1472 * If this is a userspace QP, the buffers, MR, CQs and so on
1473 * will be cleaned up in userspace, so all we have to do is
1474 * unref the mem-free tables and free the QPN in our table.
1476 if (!qp->ibqp.uobject) {
1477 mthca_cq_clean(dev, recv_cq, qp->qpn,
1478 qp->ibqp.srq ? to_msrq(qp->ibqp.srq) : NULL);
1479 if (send_cq != recv_cq)
1480 mthca_cq_clean(dev, send_cq, qp->qpn, NULL);
1482 mthca_free_memfree(dev, qp);
1483 mthca_free_wqe_buf(dev, qp);
1486 mthca_unmap_memfree(dev, qp);
1488 if (is_sqp(dev, qp)) {
1489 atomic_dec(&(to_mpd(qp->ibqp.pd)->sqp_count));
1490 dma_free_coherent(&dev->pdev->dev,
1491 to_msqp(qp)->header_buf_size,
1492 to_msqp(qp)->header_buf,
1493 to_msqp(qp)->header_dma);
1495 mthca_free(&dev->qp_table.alloc, qp->qpn);
1498 /* Create UD header for an MLX send and build a data segment for it */
1499 static int build_mlx_header(struct mthca_dev *dev, struct mthca_sqp *sqp,
1500 int ind, const struct ib_ud_wr *wr,
1501 struct mthca_mlx_seg *mlx,
1502 struct mthca_data_seg *data)
1508 ib_ud_header_init(256, /* assume a MAD */ 1, 0, 0,
1509 mthca_ah_grh_present(to_mah(wr->ah)), 0, 0, 0,
1512 err = mthca_read_ah(dev, to_mah(wr->ah), &sqp->ud_header);
1515 mlx->flags &= ~cpu_to_be32(MTHCA_NEXT_SOLICIT | 1);
1516 mlx->flags |= cpu_to_be32((!sqp->qp.ibqp.qp_num ? MTHCA_MLX_VL15 : 0) |
1517 (sqp->ud_header.lrh.destination_lid ==
1518 IB_LID_PERMISSIVE ? MTHCA_MLX_SLR : 0) |
1519 (sqp->ud_header.lrh.service_level << 8));
1520 mlx->rlid = sqp->ud_header.lrh.destination_lid;
1523 switch (wr->wr.opcode) {
1525 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY;
1526 sqp->ud_header.immediate_present = 0;
1528 case IB_WR_SEND_WITH_IMM:
1529 sqp->ud_header.bth.opcode = IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE;
1530 sqp->ud_header.immediate_present = 1;
1531 sqp->ud_header.immediate_data = wr->wr.ex.imm_data;
1537 sqp->ud_header.lrh.virtual_lane = !sqp->qp.ibqp.qp_num ? 15 : 0;
1538 if (sqp->ud_header.lrh.destination_lid == IB_LID_PERMISSIVE)
1539 sqp->ud_header.lrh.source_lid = IB_LID_PERMISSIVE;
1540 sqp->ud_header.bth.solicited_event = !!(wr->wr.send_flags & IB_SEND_SOLICITED);
1541 if (!sqp->qp.ibqp.qp_num)
1542 ib_get_cached_pkey(&dev->ib_dev, sqp->qp.port,
1543 sqp->pkey_index, &pkey);
1545 ib_get_cached_pkey(&dev->ib_dev, sqp->qp.port,
1546 wr->pkey_index, &pkey);
1547 sqp->ud_header.bth.pkey = cpu_to_be16(pkey);
1548 sqp->ud_header.bth.destination_qpn = cpu_to_be32(wr->remote_qpn);
1549 sqp->ud_header.bth.psn = cpu_to_be32((sqp->send_psn++) & ((1 << 24) - 1));
1550 sqp->ud_header.deth.qkey = cpu_to_be32(wr->remote_qkey & 0x80000000 ?
1551 sqp->qkey : wr->remote_qkey);
1552 sqp->ud_header.deth.source_qpn = cpu_to_be32(sqp->qp.ibqp.qp_num);
1554 header_size = ib_ud_header_pack(&sqp->ud_header,
1556 ind * MTHCA_UD_HEADER_SIZE);
1558 data->byte_count = cpu_to_be32(header_size);
1559 data->lkey = cpu_to_be32(to_mpd(sqp->qp.ibqp.pd)->ntmr.ibmr.lkey);
1560 data->addr = cpu_to_be64(sqp->header_dma +
1561 ind * MTHCA_UD_HEADER_SIZE);
1566 static inline int mthca_wq_overflow(struct mthca_wq *wq, int nreq,
1567 struct ib_cq *ib_cq)
1570 struct mthca_cq *cq;
1572 cur = wq->head - wq->tail;
1573 if (likely(cur + nreq < wq->max))
1577 spin_lock(&cq->lock);
1578 cur = wq->head - wq->tail;
1579 spin_unlock(&cq->lock);
1581 return cur + nreq >= wq->max;
1584 static __always_inline void set_raddr_seg(struct mthca_raddr_seg *rseg,
1585 u64 remote_addr, u32 rkey)
1587 rseg->raddr = cpu_to_be64(remote_addr);
1588 rseg->rkey = cpu_to_be32(rkey);
1592 static __always_inline void set_atomic_seg(struct mthca_atomic_seg *aseg,
1593 const struct ib_atomic_wr *wr)
1595 if (wr->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
1596 aseg->swap_add = cpu_to_be64(wr->swap);
1597 aseg->compare = cpu_to_be64(wr->compare_add);
1599 aseg->swap_add = cpu_to_be64(wr->compare_add);
1605 static void set_tavor_ud_seg(struct mthca_tavor_ud_seg *useg,
1606 const struct ib_ud_wr *wr)
1608 useg->lkey = cpu_to_be32(to_mah(wr->ah)->key);
1609 useg->av_addr = cpu_to_be64(to_mah(wr->ah)->avdma);
1610 useg->dqpn = cpu_to_be32(wr->remote_qpn);
1611 useg->qkey = cpu_to_be32(wr->remote_qkey);
1615 static void set_arbel_ud_seg(struct mthca_arbel_ud_seg *useg,
1616 const struct ib_ud_wr *wr)
1618 memcpy(useg->av, to_mah(wr->ah)->av, MTHCA_AV_SIZE);
1619 useg->dqpn = cpu_to_be32(wr->remote_qpn);
1620 useg->qkey = cpu_to_be32(wr->remote_qkey);
1623 int mthca_tavor_post_send(struct ib_qp *ibqp, const struct ib_send_wr *wr,
1624 const struct ib_send_wr **bad_wr)
1626 struct mthca_dev *dev = to_mdev(ibqp->device);
1627 struct mthca_qp *qp = to_mqp(ibqp);
1630 unsigned long flags;
1636 * f0 and size0 are only used if nreq != 0, and they will
1637 * always be initialized the first time through the main loop
1638 * before nreq is incremented. So nreq cannot become non-zero
1639 * without initializing f0 and size0, and they are in fact
1640 * never used uninitialized.
1642 int uninitialized_var(size0);
1643 u32 uninitialized_var(f0);
1647 spin_lock_irqsave(&qp->sq.lock, flags);
1649 /* XXX check that state is OK to post send */
1651 ind = qp->sq.next_ind;
1653 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1654 if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1655 mthca_err(dev, "SQ %06x full (%u head, %u tail,"
1656 " %d max, %d nreq)\n", qp->qpn,
1657 qp->sq.head, qp->sq.tail,
1664 wqe = get_send_wqe(qp, ind);
1665 prev_wqe = qp->sq.last;
1668 ((struct mthca_next_seg *) wqe)->nda_op = 0;
1669 ((struct mthca_next_seg *) wqe)->ee_nds = 0;
1670 ((struct mthca_next_seg *) wqe)->flags =
1671 ((wr->send_flags & IB_SEND_SIGNALED) ?
1672 cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) |
1673 ((wr->send_flags & IB_SEND_SOLICITED) ?
1674 cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) |
1676 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
1677 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
1678 ((struct mthca_next_seg *) wqe)->imm = wr->ex.imm_data;
1680 wqe += sizeof (struct mthca_next_seg);
1681 size = sizeof (struct mthca_next_seg) / 16;
1683 switch (qp->transport) {
1685 switch (wr->opcode) {
1686 case IB_WR_ATOMIC_CMP_AND_SWP:
1687 case IB_WR_ATOMIC_FETCH_AND_ADD:
1688 set_raddr_seg(wqe, atomic_wr(wr)->remote_addr,
1689 atomic_wr(wr)->rkey);
1690 wqe += sizeof (struct mthca_raddr_seg);
1692 set_atomic_seg(wqe, atomic_wr(wr));
1693 wqe += sizeof (struct mthca_atomic_seg);
1694 size += (sizeof (struct mthca_raddr_seg) +
1695 sizeof (struct mthca_atomic_seg)) / 16;
1698 case IB_WR_RDMA_WRITE:
1699 case IB_WR_RDMA_WRITE_WITH_IMM:
1700 case IB_WR_RDMA_READ:
1701 set_raddr_seg(wqe, rdma_wr(wr)->remote_addr,
1703 wqe += sizeof (struct mthca_raddr_seg);
1704 size += sizeof (struct mthca_raddr_seg) / 16;
1708 /* No extra segments required for sends */
1715 switch (wr->opcode) {
1716 case IB_WR_RDMA_WRITE:
1717 case IB_WR_RDMA_WRITE_WITH_IMM:
1718 set_raddr_seg(wqe, rdma_wr(wr)->remote_addr,
1720 wqe += sizeof (struct mthca_raddr_seg);
1721 size += sizeof (struct mthca_raddr_seg) / 16;
1725 /* No extra segments required for sends */
1732 set_tavor_ud_seg(wqe, ud_wr(wr));
1733 wqe += sizeof (struct mthca_tavor_ud_seg);
1734 size += sizeof (struct mthca_tavor_ud_seg) / 16;
1738 err = build_mlx_header(dev, to_msqp(qp), ind, ud_wr(wr),
1739 wqe - sizeof (struct mthca_next_seg),
1745 wqe += sizeof (struct mthca_data_seg);
1746 size += sizeof (struct mthca_data_seg) / 16;
1750 if (wr->num_sge > qp->sq.max_gs) {
1751 mthca_err(dev, "too many gathers\n");
1757 for (i = 0; i < wr->num_sge; ++i) {
1758 mthca_set_data_seg(wqe, wr->sg_list + i);
1759 wqe += sizeof (struct mthca_data_seg);
1760 size += sizeof (struct mthca_data_seg) / 16;
1763 /* Add one more inline data segment for ICRC */
1764 if (qp->transport == MLX) {
1765 ((struct mthca_data_seg *) wqe)->byte_count =
1766 cpu_to_be32((1 << 31) | 4);
1767 ((u32 *) wqe)[1] = 0;
1768 wqe += sizeof (struct mthca_data_seg);
1769 size += sizeof (struct mthca_data_seg) / 16;
1772 qp->wrid[ind + qp->rq.max] = wr->wr_id;
1774 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
1775 mthca_err(dev, "opcode invalid\n");
1781 ((struct mthca_next_seg *) prev_wqe)->nda_op =
1782 cpu_to_be32(((ind << qp->sq.wqe_shift) +
1783 qp->send_wqe_offset) |
1784 mthca_opcode[wr->opcode]);
1786 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1787 cpu_to_be32((nreq ? 0 : MTHCA_NEXT_DBD) | size |
1788 ((wr->send_flags & IB_SEND_FENCE) ?
1789 MTHCA_NEXT_FENCE : 0));
1793 op0 = mthca_opcode[wr->opcode];
1794 f0 = wr->send_flags & IB_SEND_FENCE ?
1795 MTHCA_SEND_DOORBELL_FENCE : 0;
1799 if (unlikely(ind >= qp->sq.max))
1807 mthca_write64(((qp->sq.next_ind << qp->sq.wqe_shift) +
1808 qp->send_wqe_offset) | f0 | op0,
1809 (qp->qpn << 8) | size0,
1810 dev->kar + MTHCA_SEND_DOORBELL,
1811 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1813 * Make sure doorbells don't leak out of SQ spinlock
1814 * and reach the HCA out of order:
1819 qp->sq.next_ind = ind;
1820 qp->sq.head += nreq;
1822 spin_unlock_irqrestore(&qp->sq.lock, flags);
1826 int mthca_tavor_post_receive(struct ib_qp *ibqp, const struct ib_recv_wr *wr,
1827 const struct ib_recv_wr **bad_wr)
1829 struct mthca_dev *dev = to_mdev(ibqp->device);
1830 struct mthca_qp *qp = to_mqp(ibqp);
1831 unsigned long flags;
1837 * size0 is only used if nreq != 0, and it will always be
1838 * initialized the first time through the main loop before
1839 * nreq is incremented. So nreq cannot become non-zero
1840 * without initializing size0, and it is in fact never used
1843 int uninitialized_var(size0);
1848 spin_lock_irqsave(&qp->rq.lock, flags);
1850 /* XXX check that state is OK to post receive */
1852 ind = qp->rq.next_ind;
1854 for (nreq = 0; wr; wr = wr->next) {
1855 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
1856 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
1857 " %d max, %d nreq)\n", qp->qpn,
1858 qp->rq.head, qp->rq.tail,
1865 wqe = get_recv_wqe(qp, ind);
1866 prev_wqe = qp->rq.last;
1869 ((struct mthca_next_seg *) wqe)->ee_nds =
1870 cpu_to_be32(MTHCA_NEXT_DBD);
1871 ((struct mthca_next_seg *) wqe)->flags = 0;
1873 wqe += sizeof (struct mthca_next_seg);
1874 size = sizeof (struct mthca_next_seg) / 16;
1876 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
1882 for (i = 0; i < wr->num_sge; ++i) {
1883 mthca_set_data_seg(wqe, wr->sg_list + i);
1884 wqe += sizeof (struct mthca_data_seg);
1885 size += sizeof (struct mthca_data_seg) / 16;
1888 qp->wrid[ind] = wr->wr_id;
1890 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
1891 cpu_to_be32(MTHCA_NEXT_DBD | size);
1897 if (unlikely(ind >= qp->rq.max))
1901 if (unlikely(nreq == MTHCA_TAVOR_MAX_WQES_PER_RECV_DB)) {
1906 mthca_write64((qp->rq.next_ind << qp->rq.wqe_shift) | size0,
1907 qp->qpn << 8, dev->kar + MTHCA_RECEIVE_DOORBELL,
1908 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1910 qp->rq.next_ind = ind;
1911 qp->rq.head += MTHCA_TAVOR_MAX_WQES_PER_RECV_DB;
1919 mthca_write64((qp->rq.next_ind << qp->rq.wqe_shift) | size0,
1920 qp->qpn << 8 | nreq, dev->kar + MTHCA_RECEIVE_DOORBELL,
1921 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1924 qp->rq.next_ind = ind;
1925 qp->rq.head += nreq;
1928 * Make sure doorbells don't leak out of RQ spinlock and reach
1929 * the HCA out of order:
1933 spin_unlock_irqrestore(&qp->rq.lock, flags);
1937 int mthca_arbel_post_send(struct ib_qp *ibqp, const struct ib_send_wr *wr,
1938 const struct ib_send_wr **bad_wr)
1940 struct mthca_dev *dev = to_mdev(ibqp->device);
1941 struct mthca_qp *qp = to_mqp(ibqp);
1945 unsigned long flags;
1951 * f0 and size0 are only used if nreq != 0, and they will
1952 * always be initialized the first time through the main loop
1953 * before nreq is incremented. So nreq cannot become non-zero
1954 * without initializing f0 and size0, and they are in fact
1955 * never used uninitialized.
1957 int uninitialized_var(size0);
1958 u32 uninitialized_var(f0);
1962 spin_lock_irqsave(&qp->sq.lock, flags);
1964 /* XXX check that state is OK to post send */
1966 ind = qp->sq.head & (qp->sq.max - 1);
1968 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1969 if (unlikely(nreq == MTHCA_ARBEL_MAX_WQES_PER_SEND_DB)) {
1972 dbhi = (MTHCA_ARBEL_MAX_WQES_PER_SEND_DB << 24) |
1973 ((qp->sq.head & 0xffff) << 8) | f0 | op0;
1975 qp->sq.head += MTHCA_ARBEL_MAX_WQES_PER_SEND_DB;
1978 * Make sure that descriptors are written before
1982 *qp->sq.db = cpu_to_be32(qp->sq.head & 0xffff);
1985 * Make sure doorbell record is written before we
1986 * write MMIO send doorbell.
1990 mthca_write64(dbhi, (qp->qpn << 8) | size0,
1991 dev->kar + MTHCA_SEND_DOORBELL,
1992 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1995 if (mthca_wq_overflow(&qp->sq, nreq, qp->ibqp.send_cq)) {
1996 mthca_err(dev, "SQ %06x full (%u head, %u tail,"
1997 " %d max, %d nreq)\n", qp->qpn,
1998 qp->sq.head, qp->sq.tail,
2005 wqe = get_send_wqe(qp, ind);
2006 prev_wqe = qp->sq.last;
2009 ((struct mthca_next_seg *) wqe)->flags =
2010 ((wr->send_flags & IB_SEND_SIGNALED) ?
2011 cpu_to_be32(MTHCA_NEXT_CQ_UPDATE) : 0) |
2012 ((wr->send_flags & IB_SEND_SOLICITED) ?
2013 cpu_to_be32(MTHCA_NEXT_SOLICIT) : 0) |
2014 ((wr->send_flags & IB_SEND_IP_CSUM) ?
2015 cpu_to_be32(MTHCA_NEXT_IP_CSUM | MTHCA_NEXT_TCP_UDP_CSUM) : 0) |
2017 if (wr->opcode == IB_WR_SEND_WITH_IMM ||
2018 wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM)
2019 ((struct mthca_next_seg *) wqe)->imm = wr->ex.imm_data;
2021 wqe += sizeof (struct mthca_next_seg);
2022 size = sizeof (struct mthca_next_seg) / 16;
2024 switch (qp->transport) {
2026 switch (wr->opcode) {
2027 case IB_WR_ATOMIC_CMP_AND_SWP:
2028 case IB_WR_ATOMIC_FETCH_AND_ADD:
2029 set_raddr_seg(wqe, atomic_wr(wr)->remote_addr,
2030 atomic_wr(wr)->rkey);
2031 wqe += sizeof (struct mthca_raddr_seg);
2033 set_atomic_seg(wqe, atomic_wr(wr));
2034 wqe += sizeof (struct mthca_atomic_seg);
2035 size += (sizeof (struct mthca_raddr_seg) +
2036 sizeof (struct mthca_atomic_seg)) / 16;
2039 case IB_WR_RDMA_READ:
2040 case IB_WR_RDMA_WRITE:
2041 case IB_WR_RDMA_WRITE_WITH_IMM:
2042 set_raddr_seg(wqe, rdma_wr(wr)->remote_addr,
2044 wqe += sizeof (struct mthca_raddr_seg);
2045 size += sizeof (struct mthca_raddr_seg) / 16;
2049 /* No extra segments required for sends */
2056 switch (wr->opcode) {
2057 case IB_WR_RDMA_WRITE:
2058 case IB_WR_RDMA_WRITE_WITH_IMM:
2059 set_raddr_seg(wqe, rdma_wr(wr)->remote_addr,
2061 wqe += sizeof (struct mthca_raddr_seg);
2062 size += sizeof (struct mthca_raddr_seg) / 16;
2066 /* No extra segments required for sends */
2073 set_arbel_ud_seg(wqe, ud_wr(wr));
2074 wqe += sizeof (struct mthca_arbel_ud_seg);
2075 size += sizeof (struct mthca_arbel_ud_seg) / 16;
2079 err = build_mlx_header(dev, to_msqp(qp), ind, ud_wr(wr),
2080 wqe - sizeof (struct mthca_next_seg),
2086 wqe += sizeof (struct mthca_data_seg);
2087 size += sizeof (struct mthca_data_seg) / 16;
2091 if (wr->num_sge > qp->sq.max_gs) {
2092 mthca_err(dev, "too many gathers\n");
2098 for (i = 0; i < wr->num_sge; ++i) {
2099 mthca_set_data_seg(wqe, wr->sg_list + i);
2100 wqe += sizeof (struct mthca_data_seg);
2101 size += sizeof (struct mthca_data_seg) / 16;
2104 /* Add one more inline data segment for ICRC */
2105 if (qp->transport == MLX) {
2106 ((struct mthca_data_seg *) wqe)->byte_count =
2107 cpu_to_be32((1 << 31) | 4);
2108 ((u32 *) wqe)[1] = 0;
2109 wqe += sizeof (struct mthca_data_seg);
2110 size += sizeof (struct mthca_data_seg) / 16;
2113 qp->wrid[ind + qp->rq.max] = wr->wr_id;
2115 if (wr->opcode >= ARRAY_SIZE(mthca_opcode)) {
2116 mthca_err(dev, "opcode invalid\n");
2122 ((struct mthca_next_seg *) prev_wqe)->nda_op =
2123 cpu_to_be32(((ind << qp->sq.wqe_shift) +
2124 qp->send_wqe_offset) |
2125 mthca_opcode[wr->opcode]);
2127 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
2128 cpu_to_be32(MTHCA_NEXT_DBD | size |
2129 ((wr->send_flags & IB_SEND_FENCE) ?
2130 MTHCA_NEXT_FENCE : 0));
2134 op0 = mthca_opcode[wr->opcode];
2135 f0 = wr->send_flags & IB_SEND_FENCE ?
2136 MTHCA_SEND_DOORBELL_FENCE : 0;
2140 if (unlikely(ind >= qp->sq.max))
2146 dbhi = (nreq << 24) | ((qp->sq.head & 0xffff) << 8) | f0 | op0;
2148 qp->sq.head += nreq;
2151 * Make sure that descriptors are written before
2155 *qp->sq.db = cpu_to_be32(qp->sq.head & 0xffff);
2158 * Make sure doorbell record is written before we
2159 * write MMIO send doorbell.
2163 mthca_write64(dbhi, (qp->qpn << 8) | size0, dev->kar + MTHCA_SEND_DOORBELL,
2164 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
2168 * Make sure doorbells don't leak out of SQ spinlock and reach
2169 * the HCA out of order:
2173 spin_unlock_irqrestore(&qp->sq.lock, flags);
2177 int mthca_arbel_post_receive(struct ib_qp *ibqp, const struct ib_recv_wr *wr,
2178 const struct ib_recv_wr **bad_wr)
2180 struct mthca_dev *dev = to_mdev(ibqp->device);
2181 struct mthca_qp *qp = to_mqp(ibqp);
2182 unsigned long flags;
2189 spin_lock_irqsave(&qp->rq.lock, flags);
2191 /* XXX check that state is OK to post receive */
2193 ind = qp->rq.head & (qp->rq.max - 1);
2195 for (nreq = 0; wr; ++nreq, wr = wr->next) {
2196 if (mthca_wq_overflow(&qp->rq, nreq, qp->ibqp.recv_cq)) {
2197 mthca_err(dev, "RQ %06x full (%u head, %u tail,"
2198 " %d max, %d nreq)\n", qp->qpn,
2199 qp->rq.head, qp->rq.tail,
2206 wqe = get_recv_wqe(qp, ind);
2208 ((struct mthca_next_seg *) wqe)->flags = 0;
2210 wqe += sizeof (struct mthca_next_seg);
2212 if (unlikely(wr->num_sge > qp->rq.max_gs)) {
2218 for (i = 0; i < wr->num_sge; ++i) {
2219 mthca_set_data_seg(wqe, wr->sg_list + i);
2220 wqe += sizeof (struct mthca_data_seg);
2223 if (i < qp->rq.max_gs)
2224 mthca_set_data_seg_inval(wqe);
2226 qp->wrid[ind] = wr->wr_id;
2229 if (unlikely(ind >= qp->rq.max))
2234 qp->rq.head += nreq;
2237 * Make sure that descriptors are written before
2241 *qp->rq.db = cpu_to_be32(qp->rq.head & 0xffff);
2244 spin_unlock_irqrestore(&qp->rq.lock, flags);
2248 void mthca_free_err_wqe(struct mthca_dev *dev, struct mthca_qp *qp, int is_send,
2249 int index, int *dbd, __be32 *new_wqe)
2251 struct mthca_next_seg *next;
2254 * For SRQs, all receive WQEs generate a CQE, so we're always
2255 * at the end of the doorbell chain.
2257 if (qp->ibqp.srq && !is_send) {
2263 next = get_send_wqe(qp, index);
2265 next = get_recv_wqe(qp, index);
2267 *dbd = !!(next->ee_nds & cpu_to_be32(MTHCA_NEXT_DBD));
2268 if (next->ee_nds & cpu_to_be32(0x3f))
2269 *new_wqe = (next->nda_op & cpu_to_be32(~0x3f)) |
2270 (next->ee_nds & cpu_to_be32(0x3f));
2275 int mthca_init_qp_table(struct mthca_dev *dev)
2280 spin_lock_init(&dev->qp_table.lock);
2283 * We reserve 2 extra QPs per port for the special QPs. The
2284 * special QP for port 1 has to be even, so round up.
2286 dev->qp_table.sqp_start = (dev->limits.reserved_qps + 1) & ~1UL;
2287 err = mthca_alloc_init(&dev->qp_table.alloc,
2288 dev->limits.num_qps,
2290 dev->qp_table.sqp_start +
2291 MTHCA_MAX_PORTS * 2);
2295 err = mthca_array_init(&dev->qp_table.qp,
2296 dev->limits.num_qps);
2298 mthca_alloc_cleanup(&dev->qp_table.alloc);
2302 for (i = 0; i < 2; ++i) {
2303 err = mthca_CONF_SPECIAL_QP(dev, i ? IB_QPT_GSI : IB_QPT_SMI,
2304 dev->qp_table.sqp_start + i * 2);
2306 mthca_warn(dev, "CONF_SPECIAL_QP returned "
2307 "%d, aborting.\n", err);
2314 for (i = 0; i < 2; ++i)
2315 mthca_CONF_SPECIAL_QP(dev, i, 0);
2317 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps);
2318 mthca_alloc_cleanup(&dev->qp_table.alloc);
2323 void mthca_cleanup_qp_table(struct mthca_dev *dev)
2327 for (i = 0; i < 2; ++i)
2328 mthca_CONF_SPECIAL_QP(dev, i, 0);
2330 mthca_array_cleanup(&dev->qp_table.qp, dev->limits.num_qps);
2331 mthca_alloc_cleanup(&dev->qp_table.alloc);