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