IB/mthca: Support for query QP and SRQ
[pandora-kernel.git] / drivers / infiniband / hw / mthca / mthca_srq.c
1 /*
2  * Copyright (c) 2005 Cisco Systems. All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  *
32  * $Id: mthca_srq.c 3047 2005-08-10 03:59:35Z roland $
33  */
34
35 #include <linux/slab.h>
36 #include <linux/string.h>
37
38 #include "mthca_dev.h"
39 #include "mthca_cmd.h"
40 #include "mthca_memfree.h"
41 #include "mthca_wqe.h"
42
43 enum {
44         MTHCA_MAX_DIRECT_SRQ_SIZE = 4 * PAGE_SIZE
45 };
46
47 struct mthca_tavor_srq_context {
48         __be64 wqe_base_ds;     /* low 6 bits is descriptor size */
49         __be32 state_pd;
50         __be32 lkey;
51         __be32 uar;
52         __be32 wqe_cnt;
53         u32    reserved[2];
54 };
55
56 struct mthca_arbel_srq_context {
57         __be32 state_logsize_srqn;
58         __be32 lkey;
59         __be32 db_index;
60         __be32 logstride_usrpage;
61         __be64 wqe_base;
62         __be32 eq_pd;
63         __be16 limit_watermark;
64         __be16 wqe_cnt;
65         u16    reserved1;
66         __be16 wqe_counter;
67         u32    reserved2[3];
68 };
69
70 static void *get_wqe(struct mthca_srq *srq, int n)
71 {
72         if (srq->is_direct)
73                 return srq->queue.direct.buf + (n << srq->wqe_shift);
74         else
75                 return srq->queue.page_list[(n << srq->wqe_shift) >> PAGE_SHIFT].buf +
76                         ((n << srq->wqe_shift) & (PAGE_SIZE - 1));
77 }
78
79 /*
80  * Return a pointer to the location within a WQE that we're using as a
81  * link when the WQE is in the free list.  We use the imm field
82  * because in the Tavor case, posting a WQE may overwrite the next
83  * segment of the previous WQE, but a receive WQE will never touch the
84  * imm field.  This avoids corrupting our free list if the previous
85  * WQE has already completed and been put on the free list when we
86  * post the next WQE.
87  */
88 static inline int *wqe_to_link(void *wqe)
89 {
90         return (int *) (wqe + offsetof(struct mthca_next_seg, imm));
91 }
92
93 static void mthca_tavor_init_srq_context(struct mthca_dev *dev,
94                                          struct mthca_pd *pd,
95                                          struct mthca_srq *srq,
96                                          struct mthca_tavor_srq_context *context)
97 {
98         memset(context, 0, sizeof *context);
99
100         context->wqe_base_ds = cpu_to_be64(1 << (srq->wqe_shift - 4));
101         context->state_pd    = cpu_to_be32(pd->pd_num);
102         context->lkey        = cpu_to_be32(srq->mr.ibmr.lkey);
103
104         if (pd->ibpd.uobject)
105                 context->uar =
106                         cpu_to_be32(to_mucontext(pd->ibpd.uobject->context)->uar.index);
107         else
108                 context->uar = cpu_to_be32(dev->driver_uar.index);
109 }
110
111 static void mthca_arbel_init_srq_context(struct mthca_dev *dev,
112                                          struct mthca_pd *pd,
113                                          struct mthca_srq *srq,
114                                          struct mthca_arbel_srq_context *context)
115 {
116         int logsize;
117
118         memset(context, 0, sizeof *context);
119
120         logsize = long_log2(srq->max) + srq->wqe_shift;
121         context->state_logsize_srqn = cpu_to_be32(logsize << 24 | srq->srqn);
122         context->lkey = cpu_to_be32(srq->mr.ibmr.lkey);
123         context->db_index = cpu_to_be32(srq->db_index);
124         context->logstride_usrpage = cpu_to_be32((srq->wqe_shift - 4) << 29);
125         if (pd->ibpd.uobject)
126                 context->logstride_usrpage |=
127                         cpu_to_be32(to_mucontext(pd->ibpd.uobject->context)->uar.index);
128         else
129                 context->logstride_usrpage |= cpu_to_be32(dev->driver_uar.index);
130         context->eq_pd = cpu_to_be32(MTHCA_EQ_ASYNC << 24 | pd->pd_num);
131 }
132
133 static void mthca_free_srq_buf(struct mthca_dev *dev, struct mthca_srq *srq)
134 {
135         mthca_buf_free(dev, srq->max << srq->wqe_shift, &srq->queue,
136                        srq->is_direct, &srq->mr);
137         kfree(srq->wrid);
138 }
139
140 static int mthca_alloc_srq_buf(struct mthca_dev *dev, struct mthca_pd *pd,
141                                struct mthca_srq *srq)
142 {
143         struct mthca_data_seg *scatter;
144         void *wqe;
145         int err;
146         int i;
147
148         if (pd->ibpd.uobject)
149                 return 0;
150
151         srq->wrid = kmalloc(srq->max * sizeof (u64), GFP_KERNEL);
152         if (!srq->wrid)
153                 return -ENOMEM;
154
155         err = mthca_buf_alloc(dev, srq->max << srq->wqe_shift,
156                               MTHCA_MAX_DIRECT_SRQ_SIZE,
157                               &srq->queue, &srq->is_direct, pd, 1, &srq->mr);
158         if (err) {
159                 kfree(srq->wrid);
160                 return err;
161         }
162
163         /*
164          * Now initialize the SRQ buffer so that all of the WQEs are
165          * linked into the list of free WQEs.  In addition, set the
166          * scatter list L_Keys to the sentry value of 0x100.
167          */
168         for (i = 0; i < srq->max; ++i) {
169                 wqe = get_wqe(srq, i);
170
171                 *wqe_to_link(wqe) = i < srq->max - 1 ? i + 1 : -1;
172
173                 for (scatter = wqe + sizeof (struct mthca_next_seg);
174                      (void *) scatter < wqe + (1 << srq->wqe_shift);
175                      ++scatter)
176                         scatter->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
177         }
178
179         srq->last = get_wqe(srq, srq->max - 1);
180
181         return 0;
182 }
183
184 int mthca_alloc_srq(struct mthca_dev *dev, struct mthca_pd *pd,
185                     struct ib_srq_attr *attr, struct mthca_srq *srq)
186 {
187         struct mthca_mailbox *mailbox;
188         u8 status;
189         int ds;
190         int err;
191
192         /* Sanity check SRQ size before proceeding */
193         if (attr->max_wr  > dev->limits.max_srq_wqes ||
194             attr->max_sge > dev->limits.max_sg)
195                 return -EINVAL;
196
197         srq->max      = attr->max_wr;
198         srq->max_gs   = attr->max_sge;
199         srq->counter  = 0;
200
201         if (mthca_is_memfree(dev))
202                 srq->max = roundup_pow_of_two(srq->max + 1);
203
204         ds = max(64UL,
205                  roundup_pow_of_two(sizeof (struct mthca_next_seg) +
206                                     srq->max_gs * sizeof (struct mthca_data_seg)));
207         srq->wqe_shift = long_log2(ds);
208
209         srq->srqn = mthca_alloc(&dev->srq_table.alloc);
210         if (srq->srqn == -1)
211                 return -ENOMEM;
212
213         if (mthca_is_memfree(dev)) {
214                 err = mthca_table_get(dev, dev->srq_table.table, srq->srqn);
215                 if (err)
216                         goto err_out;
217
218                 if (!pd->ibpd.uobject) {
219                         srq->db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_SRQ,
220                                                        srq->srqn, &srq->db);
221                         if (srq->db_index < 0) {
222                                 err = -ENOMEM;
223                                 goto err_out_icm;
224                         }
225                 }
226         }
227
228         mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
229         if (IS_ERR(mailbox)) {
230                 err = PTR_ERR(mailbox);
231                 goto err_out_db;
232         }
233
234         err = mthca_alloc_srq_buf(dev, pd, srq);
235         if (err)
236                 goto err_out_mailbox;
237
238         spin_lock_init(&srq->lock);
239         atomic_set(&srq->refcount, 1);
240         init_waitqueue_head(&srq->wait);
241
242         if (mthca_is_memfree(dev))
243                 mthca_arbel_init_srq_context(dev, pd, srq, mailbox->buf);
244         else
245                 mthca_tavor_init_srq_context(dev, pd, srq, mailbox->buf);
246
247         err = mthca_SW2HW_SRQ(dev, mailbox, srq->srqn, &status);
248
249         if (err) {
250                 mthca_warn(dev, "SW2HW_SRQ failed (%d)\n", err);
251                 goto err_out_free_buf;
252         }
253         if (status) {
254                 mthca_warn(dev, "SW2HW_SRQ returned status 0x%02x\n",
255                            status);
256                 err = -EINVAL;
257                 goto err_out_free_buf;
258         }
259
260         spin_lock_irq(&dev->srq_table.lock);
261         if (mthca_array_set(&dev->srq_table.srq,
262                             srq->srqn & (dev->limits.num_srqs - 1),
263                             srq)) {
264                 spin_unlock_irq(&dev->srq_table.lock);
265                 goto err_out_free_srq;
266         }
267         spin_unlock_irq(&dev->srq_table.lock);
268
269         mthca_free_mailbox(dev, mailbox);
270
271         srq->first_free = 0;
272         srq->last_free  = srq->max - 1;
273
274         return 0;
275
276 err_out_free_srq:
277         err = mthca_HW2SW_SRQ(dev, mailbox, srq->srqn, &status);
278         if (err)
279                 mthca_warn(dev, "HW2SW_SRQ failed (%d)\n", err);
280         else if (status)
281                 mthca_warn(dev, "HW2SW_SRQ returned status 0x%02x\n", status);
282
283 err_out_free_buf:
284         if (!pd->ibpd.uobject)
285                 mthca_free_srq_buf(dev, srq);
286
287 err_out_mailbox:
288         mthca_free_mailbox(dev, mailbox);
289
290 err_out_db:
291         if (!pd->ibpd.uobject && mthca_is_memfree(dev))
292                 mthca_free_db(dev, MTHCA_DB_TYPE_SRQ, srq->db_index);
293
294 err_out_icm:
295         mthca_table_put(dev, dev->srq_table.table, srq->srqn);
296
297 err_out:
298         mthca_free(&dev->srq_table.alloc, srq->srqn);
299
300         return err;
301 }
302
303 void mthca_free_srq(struct mthca_dev *dev, struct mthca_srq *srq)
304 {
305         struct mthca_mailbox *mailbox;
306         int err;
307         u8 status;
308
309         mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
310         if (IS_ERR(mailbox)) {
311                 mthca_warn(dev, "No memory for mailbox to free SRQ.\n");
312                 return;
313         }
314
315         err = mthca_HW2SW_SRQ(dev, mailbox, srq->srqn, &status);
316         if (err)
317                 mthca_warn(dev, "HW2SW_SRQ failed (%d)\n", err);
318         else if (status)
319                 mthca_warn(dev, "HW2SW_SRQ returned status 0x%02x\n", status);
320
321         spin_lock_irq(&dev->srq_table.lock);
322         mthca_array_clear(&dev->srq_table.srq,
323                           srq->srqn & (dev->limits.num_srqs - 1));
324         spin_unlock_irq(&dev->srq_table.lock);
325
326         atomic_dec(&srq->refcount);
327         wait_event(srq->wait, !atomic_read(&srq->refcount));
328
329         if (!srq->ibsrq.uobject) {
330                 mthca_free_srq_buf(dev, srq);
331                 if (mthca_is_memfree(dev))
332                         mthca_free_db(dev, MTHCA_DB_TYPE_SRQ, srq->db_index);
333         }
334
335         mthca_table_put(dev, dev->srq_table.table, srq->srqn);
336         mthca_free(&dev->srq_table.alloc, srq->srqn);
337         mthca_free_mailbox(dev, mailbox);
338 }
339
340 int mthca_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *attr,
341                      enum ib_srq_attr_mask attr_mask)
342 {
343         struct mthca_dev *dev = to_mdev(ibsrq->device);
344         struct mthca_srq *srq = to_msrq(ibsrq);
345         int ret;
346         u8 status;
347
348         /* We don't support resizing SRQs (yet?) */
349         if (attr_mask & IB_SRQ_MAX_WR)
350                 return -EINVAL;
351
352         if (attr_mask & IB_SRQ_LIMIT) {
353                 ret = mthca_ARM_SRQ(dev, srq->srqn, attr->srq_limit, &status);
354                 if (ret)
355                         return ret;
356                 if (status)
357                         return -EINVAL;
358         }
359
360         return 0;
361 }
362
363 int mthca_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr)
364 {
365         struct mthca_dev *dev = to_mdev(ibsrq->device);
366         struct mthca_srq *srq = to_msrq(ibsrq);
367         struct mthca_mailbox *mailbox;
368         struct mthca_arbel_srq_context *arbel_ctx;
369         u8 status;
370         int err;
371
372         mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
373         if (IS_ERR(mailbox))
374                 return PTR_ERR(mailbox);
375
376         err = mthca_QUERY_SRQ(dev, srq->srqn, mailbox, &status);
377         if (err)
378                 goto out;
379
380         if (mthca_is_memfree(dev)) {
381                 arbel_ctx = mailbox->buf;
382                 srq_attr->srq_limit = arbel_ctx->limit_watermark;
383         } else
384                 srq_attr->srq_limit = 0;
385
386         srq_attr->max_wr  = srq->max;
387         srq_attr->max_sge = srq->max_gs;
388
389 out:
390         mthca_free_mailbox(dev, mailbox);
391
392         return err;
393 }
394
395 void mthca_srq_event(struct mthca_dev *dev, u32 srqn,
396                      enum ib_event_type event_type)
397 {
398         struct mthca_srq *srq;
399         struct ib_event event;
400
401         spin_lock(&dev->srq_table.lock);
402         srq = mthca_array_get(&dev->srq_table.srq, srqn & (dev->limits.num_srqs - 1));
403         if (srq)
404                 atomic_inc(&srq->refcount);
405         spin_unlock(&dev->srq_table.lock);
406
407         if (!srq) {
408                 mthca_warn(dev, "Async event for bogus SRQ %08x\n", srqn);
409                 return;
410         }
411
412         if (!srq->ibsrq.event_handler)
413                 goto out;
414
415         event.device      = &dev->ib_dev;
416         event.event       = event_type;
417         event.element.srq = &srq->ibsrq;
418         srq->ibsrq.event_handler(&event, srq->ibsrq.srq_context);
419
420 out:
421         if (atomic_dec_and_test(&srq->refcount))
422                 wake_up(&srq->wait);
423 }
424
425 /*
426  * This function must be called with IRQs disabled.
427  */
428 void mthca_free_srq_wqe(struct mthca_srq *srq, u32 wqe_addr)
429 {
430         int ind;
431
432         ind = wqe_addr >> srq->wqe_shift;
433
434         spin_lock(&srq->lock);
435
436         if (likely(srq->first_free >= 0))
437                 *wqe_to_link(get_wqe(srq, srq->last_free)) = ind;
438         else
439                 srq->first_free = ind;
440
441         *wqe_to_link(get_wqe(srq, ind)) = -1;
442         srq->last_free = ind;
443
444         spin_unlock(&srq->lock);
445 }
446
447 int mthca_tavor_post_srq_recv(struct ib_srq *ibsrq, struct ib_recv_wr *wr,
448                               struct ib_recv_wr **bad_wr)
449 {
450         struct mthca_dev *dev = to_mdev(ibsrq->device);
451         struct mthca_srq *srq = to_msrq(ibsrq);
452         __be32 doorbell[2];
453         unsigned long flags;
454         int err = 0;
455         int first_ind;
456         int ind;
457         int next_ind;
458         int nreq;
459         int i;
460         void *wqe;
461         void *prev_wqe;
462
463         spin_lock_irqsave(&srq->lock, flags);
464
465         first_ind = srq->first_free;
466
467         for (nreq = 0; wr; ++nreq, wr = wr->next) {
468                 if (unlikely(nreq == MTHCA_TAVOR_MAX_WQES_PER_RECV_DB)) {
469                         nreq = 0;
470
471                         doorbell[0] = cpu_to_be32(first_ind << srq->wqe_shift);
472                         doorbell[1] = cpu_to_be32(srq->srqn << 8);
473
474                         /*
475                          * Make sure that descriptors are written
476                          * before doorbell is rung.
477                          */
478                         wmb();
479
480                         mthca_write64(doorbell,
481                                       dev->kar + MTHCA_RECEIVE_DOORBELL,
482                                       MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
483
484                         first_ind = srq->first_free;
485                 }
486
487                 ind = srq->first_free;
488
489                 if (ind < 0) {
490                         mthca_err(dev, "SRQ %06x full\n", srq->srqn);
491                         err = -ENOMEM;
492                         *bad_wr = wr;
493                         break;
494                 }
495
496                 wqe       = get_wqe(srq, ind);
497                 next_ind  = *wqe_to_link(wqe);
498
499                 if (next_ind < 0) {
500                         mthca_err(dev, "SRQ %06x full\n", srq->srqn);
501                         err = -ENOMEM;
502                         *bad_wr = wr;
503                         break;
504                 }
505
506                 prev_wqe  = srq->last;
507                 srq->last = wqe;
508
509                 ((struct mthca_next_seg *) wqe)->nda_op = 0;
510                 ((struct mthca_next_seg *) wqe)->ee_nds = 0;
511                 /* flags field will always remain 0 */
512
513                 wqe += sizeof (struct mthca_next_seg);
514
515                 if (unlikely(wr->num_sge > srq->max_gs)) {
516                         err = -EINVAL;
517                         *bad_wr = wr;
518                         srq->last = prev_wqe;
519                         break;
520                 }
521
522                 for (i = 0; i < wr->num_sge; ++i) {
523                         ((struct mthca_data_seg *) wqe)->byte_count =
524                                 cpu_to_be32(wr->sg_list[i].length);
525                         ((struct mthca_data_seg *) wqe)->lkey =
526                                 cpu_to_be32(wr->sg_list[i].lkey);
527                         ((struct mthca_data_seg *) wqe)->addr =
528                                 cpu_to_be64(wr->sg_list[i].addr);
529                         wqe += sizeof (struct mthca_data_seg);
530                 }
531
532                 if (i < srq->max_gs) {
533                         ((struct mthca_data_seg *) wqe)->byte_count = 0;
534                         ((struct mthca_data_seg *) wqe)->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
535                         ((struct mthca_data_seg *) wqe)->addr = 0;
536                 }
537
538                 ((struct mthca_next_seg *) prev_wqe)->nda_op =
539                         cpu_to_be32((ind << srq->wqe_shift) | 1);
540                 wmb();
541                 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
542                         cpu_to_be32(MTHCA_NEXT_DBD);
543
544                 srq->wrid[ind]  = wr->wr_id;
545                 srq->first_free = next_ind;
546         }
547
548         if (likely(nreq)) {
549                 doorbell[0] = cpu_to_be32(first_ind << srq->wqe_shift);
550                 doorbell[1] = cpu_to_be32((srq->srqn << 8) | nreq);
551
552                 /*
553                  * Make sure that descriptors are written before
554                  * doorbell is rung.
555                  */
556                 wmb();
557
558                 mthca_write64(doorbell,
559                               dev->kar + MTHCA_RECEIVE_DOORBELL,
560                               MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
561         }
562
563         spin_unlock_irqrestore(&srq->lock, flags);
564         return err;
565 }
566
567 int mthca_arbel_post_srq_recv(struct ib_srq *ibsrq, struct ib_recv_wr *wr,
568                               struct ib_recv_wr **bad_wr)
569 {
570         struct mthca_dev *dev = to_mdev(ibsrq->device);
571         struct mthca_srq *srq = to_msrq(ibsrq);
572         unsigned long flags;
573         int err = 0;
574         int ind;
575         int next_ind;
576         int nreq;
577         int i;
578         void *wqe;
579
580         spin_lock_irqsave(&srq->lock, flags);
581
582         for (nreq = 0; wr; ++nreq, wr = wr->next) {
583                 ind = srq->first_free;
584
585                 if (ind < 0) {
586                         mthca_err(dev, "SRQ %06x full\n", srq->srqn);
587                         err = -ENOMEM;
588                         *bad_wr = wr;
589                         break;
590                 }
591
592                 wqe       = get_wqe(srq, ind);
593                 next_ind  = *wqe_to_link(wqe);
594
595                 if (next_ind < 0) {
596                         mthca_err(dev, "SRQ %06x full\n", srq->srqn);
597                         err = -ENOMEM;
598                         *bad_wr = wr;
599                         break;
600                 }
601
602                 ((struct mthca_next_seg *) wqe)->nda_op =
603                         cpu_to_be32((next_ind << srq->wqe_shift) | 1);
604                 ((struct mthca_next_seg *) wqe)->ee_nds = 0;
605                 /* flags field will always remain 0 */
606
607                 wqe += sizeof (struct mthca_next_seg);
608
609                 if (unlikely(wr->num_sge > srq->max_gs)) {
610                         err = -EINVAL;
611                         *bad_wr = wr;
612                         break;
613                 }
614
615                 for (i = 0; i < wr->num_sge; ++i) {
616                         ((struct mthca_data_seg *) wqe)->byte_count =
617                                 cpu_to_be32(wr->sg_list[i].length);
618                         ((struct mthca_data_seg *) wqe)->lkey =
619                                 cpu_to_be32(wr->sg_list[i].lkey);
620                         ((struct mthca_data_seg *) wqe)->addr =
621                                 cpu_to_be64(wr->sg_list[i].addr);
622                         wqe += sizeof (struct mthca_data_seg);
623                 }
624
625                 if (i < srq->max_gs) {
626                         ((struct mthca_data_seg *) wqe)->byte_count = 0;
627                         ((struct mthca_data_seg *) wqe)->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
628                         ((struct mthca_data_seg *) wqe)->addr = 0;
629                 }
630
631                 srq->wrid[ind]  = wr->wr_id;
632                 srq->first_free = next_ind;
633         }
634
635         if (likely(nreq)) {
636                 srq->counter += nreq;
637
638                 /*
639                  * Make sure that descriptors are written before
640                  * we write doorbell record.
641                  */
642                 wmb();
643                 *srq->db = cpu_to_be32(srq->counter);
644         }
645
646         spin_unlock_irqrestore(&srq->lock, flags);
647         return err;
648 }
649
650 int __devinit mthca_init_srq_table(struct mthca_dev *dev)
651 {
652         int err;
653
654         if (!(dev->mthca_flags & MTHCA_FLAG_SRQ))
655                 return 0;
656
657         spin_lock_init(&dev->srq_table.lock);
658
659         err = mthca_alloc_init(&dev->srq_table.alloc,
660                                dev->limits.num_srqs,
661                                dev->limits.num_srqs - 1,
662                                dev->limits.reserved_srqs);
663         if (err)
664                 return err;
665
666         err = mthca_array_init(&dev->srq_table.srq,
667                                dev->limits.num_srqs);
668         if (err)
669                 mthca_alloc_cleanup(&dev->srq_table.alloc);
670
671         return err;
672 }
673
674 void __devexit mthca_cleanup_srq_table(struct mthca_dev *dev)
675 {
676         if (!(dev->mthca_flags & MTHCA_FLAG_SRQ))
677                 return;
678
679         mthca_array_cleanup(&dev->srq_table.srq, dev->limits.num_srqs);
680         mthca_alloc_cleanup(&dev->srq_table.alloc);
681 }