IB/mthca: Remove checks for srq->first_free < 0
[linux-2.6-block.git] / drivers / infiniband / hw / mthca / mthca_srq.c
CommitLineData
ec34a922
RD
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
8c65b4a6
TS
35#include <linux/slab.h>
36#include <linux/string.h>
e8edc6e0 37#include <linux/sched.h>
8c65b4a6 38
1f5c23e2
AK
39#include <asm/io.h>
40
ec34a922
RD
41#include "mthca_dev.h"
42#include "mthca_cmd.h"
43#include "mthca_memfree.h"
44#include "mthca_wqe.h"
45
46enum {
47 MTHCA_MAX_DIRECT_SRQ_SIZE = 4 * PAGE_SIZE
48};
49
50struct mthca_tavor_srq_context {
51 __be64 wqe_base_ds; /* low 6 bits is descriptor size */
52 __be32 state_pd;
53 __be32 lkey;
54 __be32 uar;
fd02e803
EC
55 __be16 limit_watermark;
56 __be16 wqe_cnt;
ec34a922
RD
57 u32 reserved[2];
58};
59
60struct mthca_arbel_srq_context {
61 __be32 state_logsize_srqn;
62 __be32 lkey;
63 __be32 db_index;
64 __be32 logstride_usrpage;
65 __be64 wqe_base;
66 __be32 eq_pd;
67 __be16 limit_watermark;
68 __be16 wqe_cnt;
69 u16 reserved1;
70 __be16 wqe_counter;
71 u32 reserved2[3];
72};
73
74static void *get_wqe(struct mthca_srq *srq, int n)
75{
76 if (srq->is_direct)
77 return srq->queue.direct.buf + (n << srq->wqe_shift);
78 else
79 return srq->queue.page_list[(n << srq->wqe_shift) >> PAGE_SHIFT].buf +
80 ((n << srq->wqe_shift) & (PAGE_SIZE - 1));
81}
82
83/*
84 * Return a pointer to the location within a WQE that we're using as a
e5b251a2
RD
85 * link when the WQE is in the free list. We use the imm field
86 * because in the Tavor case, posting a WQE may overwrite the next
87 * segment of the previous WQE, but a receive WQE will never touch the
88 * imm field. This avoids corrupting our free list if the previous
89 * WQE has already completed and been put on the free list when we
90 * post the next WQE.
ec34a922
RD
91 */
92static inline int *wqe_to_link(void *wqe)
93{
e5b251a2 94 return (int *) (wqe + offsetof(struct mthca_next_seg, imm));
ec34a922
RD
95}
96
97static void mthca_tavor_init_srq_context(struct mthca_dev *dev,
98 struct mthca_pd *pd,
99 struct mthca_srq *srq,
100 struct mthca_tavor_srq_context *context)
101{
102 memset(context, 0, sizeof *context);
103
104 context->wqe_base_ds = cpu_to_be64(1 << (srq->wqe_shift - 4));
105 context->state_pd = cpu_to_be32(pd->pd_num);
106 context->lkey = cpu_to_be32(srq->mr.ibmr.lkey);
107
108 if (pd->ibpd.uobject)
109 context->uar =
110 cpu_to_be32(to_mucontext(pd->ibpd.uobject->context)->uar.index);
111 else
112 context->uar = cpu_to_be32(dev->driver_uar.index);
113}
114
115static void mthca_arbel_init_srq_context(struct mthca_dev *dev,
116 struct mthca_pd *pd,
117 struct mthca_srq *srq,
118 struct mthca_arbel_srq_context *context)
119{
6bdd61d8 120 int logsize, max;
ec34a922
RD
121
122 memset(context, 0, sizeof *context);
123
6bdd61d8
DH
124 /*
125 * Put max in a temporary variable to work around gcc bug
126 * triggered by ilog2() on sparc64.
127 */
128 max = srq->max;
129 logsize = ilog2(max);
ec34a922
RD
130 context->state_logsize_srqn = cpu_to_be32(logsize << 24 | srq->srqn);
131 context->lkey = cpu_to_be32(srq->mr.ibmr.lkey);
132 context->db_index = cpu_to_be32(srq->db_index);
133 context->logstride_usrpage = cpu_to_be32((srq->wqe_shift - 4) << 29);
134 if (pd->ibpd.uobject)
135 context->logstride_usrpage |=
136 cpu_to_be32(to_mucontext(pd->ibpd.uobject->context)->uar.index);
137 else
138 context->logstride_usrpage |= cpu_to_be32(dev->driver_uar.index);
139 context->eq_pd = cpu_to_be32(MTHCA_EQ_ASYNC << 24 | pd->pd_num);
140}
141
142static void mthca_free_srq_buf(struct mthca_dev *dev, struct mthca_srq *srq)
143{
144 mthca_buf_free(dev, srq->max << srq->wqe_shift, &srq->queue,
145 srq->is_direct, &srq->mr);
146 kfree(srq->wrid);
147}
148
149static int mthca_alloc_srq_buf(struct mthca_dev *dev, struct mthca_pd *pd,
150 struct mthca_srq *srq)
151{
152 struct mthca_data_seg *scatter;
153 void *wqe;
154 int err;
155 int i;
156
157 if (pd->ibpd.uobject)
158 return 0;
159
160 srq->wrid = kmalloc(srq->max * sizeof (u64), GFP_KERNEL);
161 if (!srq->wrid)
162 return -ENOMEM;
163
164 err = mthca_buf_alloc(dev, srq->max << srq->wqe_shift,
165 MTHCA_MAX_DIRECT_SRQ_SIZE,
166 &srq->queue, &srq->is_direct, pd, 1, &srq->mr);
167 if (err) {
168 kfree(srq->wrid);
169 return err;
170 }
171
172 /*
173 * Now initialize the SRQ buffer so that all of the WQEs are
174 * linked into the list of free WQEs. In addition, set the
175 * scatter list L_Keys to the sentry value of 0x100.
176 */
177 for (i = 0; i < srq->max; ++i) {
178 wqe = get_wqe(srq, i);
179
180 *wqe_to_link(wqe) = i < srq->max - 1 ? i + 1 : -1;
181
182 for (scatter = wqe + sizeof (struct mthca_next_seg);
183 (void *) scatter < wqe + (1 << srq->wqe_shift);
184 ++scatter)
185 scatter->lkey = cpu_to_be32(MTHCA_INVAL_LKEY);
186 }
187
6577ae51
RD
188 srq->last = get_wqe(srq, srq->max - 1);
189
ec34a922
RD
190 return 0;
191}
192
193int mthca_alloc_srq(struct mthca_dev *dev, struct mthca_pd *pd,
194 struct ib_srq_attr *attr, struct mthca_srq *srq)
195{
196 struct mthca_mailbox *mailbox;
197 u8 status;
198 int ds;
199 int err;
200
201 /* Sanity check SRQ size before proceeding */
efaae8f7 202 if (attr->max_wr > dev->limits.max_srq_wqes ||
59fef3b1 203 attr->max_sge > dev->limits.max_srq_sge)
ec34a922
RD
204 return -EINVAL;
205
206 srq->max = attr->max_wr;
207 srq->max_gs = attr->max_sge;
ec34a922
RD
208 srq->counter = 0;
209
210 if (mthca_is_memfree(dev))
211 srq->max = roundup_pow_of_two(srq->max + 1);
2cbe19d4
MT
212 else
213 srq->max = srq->max + 1;
ec34a922 214
1d7d2f6f 215 ds = max(64UL,
ec34a922
RD
216 roundup_pow_of_two(sizeof (struct mthca_next_seg) +
217 srq->max_gs * sizeof (struct mthca_data_seg)));
ded9ad72 218
a07bacca 219 if (!mthca_is_memfree(dev) && (ds > dev->limits.max_desc_sz))
ded9ad72
JM
220 return -EINVAL;
221
f0d1b0b3 222 srq->wqe_shift = ilog2(ds);
ec34a922
RD
223
224 srq->srqn = mthca_alloc(&dev->srq_table.alloc);
225 if (srq->srqn == -1)
226 return -ENOMEM;
227
228 if (mthca_is_memfree(dev)) {
229 err = mthca_table_get(dev, dev->srq_table.table, srq->srqn);
230 if (err)
231 goto err_out;
232
233 if (!pd->ibpd.uobject) {
234 srq->db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_SRQ,
235 srq->srqn, &srq->db);
236 if (srq->db_index < 0) {
237 err = -ENOMEM;
238 goto err_out_icm;
239 }
240 }
241 }
242
243 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
244 if (IS_ERR(mailbox)) {
245 err = PTR_ERR(mailbox);
246 goto err_out_db;
247 }
248
249 err = mthca_alloc_srq_buf(dev, pd, srq);
250 if (err)
251 goto err_out_mailbox;
252
253 spin_lock_init(&srq->lock);
a3285aa4 254 srq->refcount = 1;
ec34a922 255 init_waitqueue_head(&srq->wait);
c93b6fba 256 mutex_init(&srq->mutex);
ec34a922
RD
257
258 if (mthca_is_memfree(dev))
259 mthca_arbel_init_srq_context(dev, pd, srq, mailbox->buf);
260 else
261 mthca_tavor_init_srq_context(dev, pd, srq, mailbox->buf);
262
263 err = mthca_SW2HW_SRQ(dev, mailbox, srq->srqn, &status);
264
265 if (err) {
266 mthca_warn(dev, "SW2HW_SRQ failed (%d)\n", err);
267 goto err_out_free_buf;
268 }
269 if (status) {
270 mthca_warn(dev, "SW2HW_SRQ returned status 0x%02x\n",
271 status);
272 err = -EINVAL;
273 goto err_out_free_buf;
274 }
275
276 spin_lock_irq(&dev->srq_table.lock);
277 if (mthca_array_set(&dev->srq_table.srq,
278 srq->srqn & (dev->limits.num_srqs - 1),
279 srq)) {
280 spin_unlock_irq(&dev->srq_table.lock);
281 goto err_out_free_srq;
282 }
283 spin_unlock_irq(&dev->srq_table.lock);
284
285 mthca_free_mailbox(dev, mailbox);
286
287 srq->first_free = 0;
288 srq->last_free = srq->max - 1;
289
2cbe19d4 290 attr->max_wr = srq->max - 1;
abb6e9ba
DB
291 attr->max_sge = srq->max_gs;
292
ec34a922
RD
293 return 0;
294
295err_out_free_srq:
296 err = mthca_HW2SW_SRQ(dev, mailbox, srq->srqn, &status);
297 if (err)
298 mthca_warn(dev, "HW2SW_SRQ failed (%d)\n", err);
299 else if (status)
300 mthca_warn(dev, "HW2SW_SRQ returned status 0x%02x\n", status);
301
302err_out_free_buf:
303 if (!pd->ibpd.uobject)
304 mthca_free_srq_buf(dev, srq);
305
306err_out_mailbox:
307 mthca_free_mailbox(dev, mailbox);
308
309err_out_db:
310 if (!pd->ibpd.uobject && mthca_is_memfree(dev))
311 mthca_free_db(dev, MTHCA_DB_TYPE_SRQ, srq->db_index);
312
313err_out_icm:
314 mthca_table_put(dev, dev->srq_table.table, srq->srqn);
315
316err_out:
317 mthca_free(&dev->srq_table.alloc, srq->srqn);
318
319 return err;
320}
321
a3285aa4
RD
322static inline int get_srq_refcount(struct mthca_dev *dev, struct mthca_srq *srq)
323{
324 int c;
325
326 spin_lock_irq(&dev->srq_table.lock);
327 c = srq->refcount;
328 spin_unlock_irq(&dev->srq_table.lock);
329
330 return c;
331}
332
ec34a922
RD
333void mthca_free_srq(struct mthca_dev *dev, struct mthca_srq *srq)
334{
335 struct mthca_mailbox *mailbox;
336 int err;
337 u8 status;
338
339 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
340 if (IS_ERR(mailbox)) {
341 mthca_warn(dev, "No memory for mailbox to free SRQ.\n");
342 return;
343 }
344
345 err = mthca_HW2SW_SRQ(dev, mailbox, srq->srqn, &status);
346 if (err)
347 mthca_warn(dev, "HW2SW_SRQ failed (%d)\n", err);
348 else if (status)
349 mthca_warn(dev, "HW2SW_SRQ returned status 0x%02x\n", status);
350
351 spin_lock_irq(&dev->srq_table.lock);
352 mthca_array_clear(&dev->srq_table.srq,
353 srq->srqn & (dev->limits.num_srqs - 1));
a3285aa4 354 --srq->refcount;
ec34a922
RD
355 spin_unlock_irq(&dev->srq_table.lock);
356
a3285aa4 357 wait_event(srq->wait, !get_srq_refcount(dev, srq));
ec34a922
RD
358
359 if (!srq->ibsrq.uobject) {
360 mthca_free_srq_buf(dev, srq);
361 if (mthca_is_memfree(dev))
362 mthca_free_db(dev, MTHCA_DB_TYPE_SRQ, srq->db_index);
363 }
364
365 mthca_table_put(dev, dev->srq_table.table, srq->srqn);
366 mthca_free(&dev->srq_table.alloc, srq->srqn);
367 mthca_free_mailbox(dev, mailbox);
368}
369
90f104da 370int mthca_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *attr,
9bc57e2d 371 enum ib_srq_attr_mask attr_mask, struct ib_udata *udata)
2fa5e2eb 372{
90f104da
RD
373 struct mthca_dev *dev = to_mdev(ibsrq->device);
374 struct mthca_srq *srq = to_msrq(ibsrq);
375 int ret;
376 u8 status;
377
378 /* We don't support resizing SRQs (yet?) */
379 if (attr_mask & IB_SRQ_MAX_WR)
380 return -EINVAL;
381
382 if (attr_mask & IB_SRQ_LIMIT) {
1252c517
DB
383 u32 max_wr = mthca_is_memfree(dev) ? srq->max - 1 : srq->max;
384 if (attr->srq_limit > max_wr)
d4301e2c 385 return -EINVAL;
c93b6fba
RD
386
387 mutex_lock(&srq->mutex);
90f104da 388 ret = mthca_ARM_SRQ(dev, srq->srqn, attr->srq_limit, &status);
c93b6fba
RD
389 mutex_unlock(&srq->mutex);
390
90f104da
RD
391 if (ret)
392 return ret;
393 if (status)
394 return -EINVAL;
395 }
396
397 return 0;
398}
399
8ebe5077
EC
400int mthca_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr)
401{
402 struct mthca_dev *dev = to_mdev(ibsrq->device);
403 struct mthca_srq *srq = to_msrq(ibsrq);
404 struct mthca_mailbox *mailbox;
405 struct mthca_arbel_srq_context *arbel_ctx;
fd02e803 406 struct mthca_tavor_srq_context *tavor_ctx;
8ebe5077
EC
407 u8 status;
408 int err;
409
410 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
411 if (IS_ERR(mailbox))
412 return PTR_ERR(mailbox);
413
414 err = mthca_QUERY_SRQ(dev, srq->srqn, mailbox, &status);
415 if (err)
416 goto out;
417
418 if (mthca_is_memfree(dev)) {
419 arbel_ctx = mailbox->buf;
fd02e803
EC
420 srq_attr->srq_limit = be16_to_cpu(arbel_ctx->limit_watermark);
421 } else {
422 tavor_ctx = mailbox->buf;
423 srq_attr->srq_limit = be16_to_cpu(tavor_ctx->limit_watermark);
424 }
8ebe5077 425
2cbe19d4 426 srq_attr->max_wr = srq->max - 1;
8ebe5077
EC
427 srq_attr->max_sge = srq->max_gs;
428
429out:
430 mthca_free_mailbox(dev, mailbox);
431
432 return err;
433}
434
ec34a922
RD
435void mthca_srq_event(struct mthca_dev *dev, u32 srqn,
436 enum ib_event_type event_type)
437{
438 struct mthca_srq *srq;
439 struct ib_event event;
440
441 spin_lock(&dev->srq_table.lock);
442 srq = mthca_array_get(&dev->srq_table.srq, srqn & (dev->limits.num_srqs - 1));
443 if (srq)
a3285aa4 444 ++srq->refcount;
ec34a922
RD
445 spin_unlock(&dev->srq_table.lock);
446
447 if (!srq) {
448 mthca_warn(dev, "Async event for bogus SRQ %08x\n", srqn);
449 return;
450 }
451
452 if (!srq->ibsrq.event_handler)
453 goto out;
454
455 event.device = &dev->ib_dev;
456 event.event = event_type;
90f104da 457 event.element.srq = &srq->ibsrq;
ec34a922
RD
458 srq->ibsrq.event_handler(&event, srq->ibsrq.srq_context);
459
460out:
a3285aa4
RD
461 spin_lock(&dev->srq_table.lock);
462 if (!--srq->refcount)
ec34a922 463 wake_up(&srq->wait);
a3285aa4 464 spin_unlock(&dev->srq_table.lock);
ec34a922
RD
465}
466
467/*
468 * This function must be called with IRQs disabled.
469 */
470void mthca_free_srq_wqe(struct mthca_srq *srq, u32 wqe_addr)
471{
472 int ind;
473
474 ind = wqe_addr >> srq->wqe_shift;
475
476 spin_lock(&srq->lock);
477
1203c42e 478 *wqe_to_link(get_wqe(srq, srq->last_free)) = ind;
ec34a922
RD
479 *wqe_to_link(get_wqe(srq, ind)) = -1;
480 srq->last_free = ind;
481
482 spin_unlock(&srq->lock);
483}
484
485int mthca_tavor_post_srq_recv(struct ib_srq *ibsrq, struct ib_recv_wr *wr,
486 struct ib_recv_wr **bad_wr)
487{
488 struct mthca_dev *dev = to_mdev(ibsrq->device);
489 struct mthca_srq *srq = to_msrq(ibsrq);
490 unsigned long flags;
491 int err = 0;
492 int first_ind;
493 int ind;
494 int next_ind;
495 int nreq;
496 int i;
497 void *wqe;
498 void *prev_wqe;
499
500 spin_lock_irqsave(&srq->lock, flags);
501
502 first_ind = srq->first_free;
503
ab28b171 504 for (nreq = 0; wr; wr = wr->next) {
1203c42e 505 ind = srq->first_free;
ec34a922
RD
506 wqe = get_wqe(srq, ind);
507 next_ind = *wqe_to_link(wqe);
e23d6d2b 508
55a98e95 509 if (unlikely(next_ind < 0)) {
e23d6d2b
RD
510 mthca_err(dev, "SRQ %06x full\n", srq->srqn);
511 err = -ENOMEM;
512 *bad_wr = wr;
513 break;
514 }
515
ec34a922
RD
516 prev_wqe = srq->last;
517 srq->last = wqe;
518
519 ((struct mthca_next_seg *) wqe)->nda_op = 0;
520 ((struct mthca_next_seg *) wqe)->ee_nds = 0;
521 /* flags field will always remain 0 */
522
523 wqe += sizeof (struct mthca_next_seg);
524
525 if (unlikely(wr->num_sge > srq->max_gs)) {
526 err = -EINVAL;
527 *bad_wr = wr;
528 srq->last = prev_wqe;
3853194c 529 break;
ec34a922
RD
530 }
531
532 for (i = 0; i < wr->num_sge; ++i) {
80885456 533 mthca_set_data_seg(wqe, wr->sg_list + i);
ec34a922
RD
534 wqe += sizeof (struct mthca_data_seg);
535 }
536
80885456
RD
537 if (i < srq->max_gs)
538 mthca_set_data_seg_inval(wqe);
ec34a922 539
d6cff021
RD
540 ((struct mthca_next_seg *) prev_wqe)->nda_op =
541 cpu_to_be32((ind << srq->wqe_shift) | 1);
542 wmb();
543 ((struct mthca_next_seg *) prev_wqe)->ee_nds =
544 cpu_to_be32(MTHCA_NEXT_DBD);
ec34a922
RD
545
546 srq->wrid[ind] = wr->wr_id;
547 srq->first_free = next_ind;
ab28b171
MT
548
549 ++nreq;
550 if (unlikely(nreq == MTHCA_TAVOR_MAX_WQES_PER_RECV_DB)) {
551 nreq = 0;
552
ab28b171
MT
553 /*
554 * Make sure that descriptors are written
555 * before doorbell is rung.
556 */
557 wmb();
558
ab8403c4 559 mthca_write64(first_ind << srq->wqe_shift, srq->srqn << 8,
ab28b171
MT
560 dev->kar + MTHCA_RECEIVE_DOORBELL,
561 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
562
563 first_ind = srq->first_free;
564 }
ec34a922
RD
565 }
566
ec34a922 567 if (likely(nreq)) {
ec34a922
RD
568 /*
569 * Make sure that descriptors are written before
570 * doorbell is rung.
571 */
572 wmb();
573
ab8403c4 574 mthca_write64(first_ind << srq->wqe_shift, (srq->srqn << 8) | nreq,
ec34a922
RD
575 dev->kar + MTHCA_RECEIVE_DOORBELL,
576 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
577 }
578
1f5c23e2
AK
579 /*
580 * Make sure doorbells don't leak out of SRQ spinlock and
581 * reach the HCA out of order:
582 */
583 mmiowb();
584
ec34a922
RD
585 spin_unlock_irqrestore(&srq->lock, flags);
586 return err;
587}
588
589int mthca_arbel_post_srq_recv(struct ib_srq *ibsrq, struct ib_recv_wr *wr,
590 struct ib_recv_wr **bad_wr)
591{
592 struct mthca_dev *dev = to_mdev(ibsrq->device);
593 struct mthca_srq *srq = to_msrq(ibsrq);
594 unsigned long flags;
595 int err = 0;
596 int ind;
597 int next_ind;
598 int nreq;
599 int i;
600 void *wqe;
601
602 spin_lock_irqsave(&srq->lock, flags);
603
604 for (nreq = 0; wr; ++nreq, wr = wr->next) {
1203c42e 605 ind = srq->first_free;
ec34a922
RD
606 wqe = get_wqe(srq, ind);
607 next_ind = *wqe_to_link(wqe);
608
55a98e95 609 if (unlikely(next_ind < 0)) {
e23d6d2b
RD
610 mthca_err(dev, "SRQ %06x full\n", srq->srqn);
611 err = -ENOMEM;
612 *bad_wr = wr;
613 break;
614 }
615
ec34a922
RD
616 ((struct mthca_next_seg *) wqe)->nda_op =
617 cpu_to_be32((next_ind << srq->wqe_shift) | 1);
618 ((struct mthca_next_seg *) wqe)->ee_nds = 0;
619 /* flags field will always remain 0 */
620
621 wqe += sizeof (struct mthca_next_seg);
622
623 if (unlikely(wr->num_sge > srq->max_gs)) {
624 err = -EINVAL;
625 *bad_wr = wr;
3853194c 626 break;
ec34a922
RD
627 }
628
629 for (i = 0; i < wr->num_sge; ++i) {
80885456 630 mthca_set_data_seg(wqe, wr->sg_list + i);
ec34a922
RD
631 wqe += sizeof (struct mthca_data_seg);
632 }
633
80885456
RD
634 if (i < srq->max_gs)
635 mthca_set_data_seg_inval(wqe);
ec34a922
RD
636
637 srq->wrid[ind] = wr->wr_id;
638 srq->first_free = next_ind;
639 }
640
641 if (likely(nreq)) {
642 srq->counter += nreq;
643
644 /*
645 * Make sure that descriptors are written before
646 * we write doorbell record.
647 */
648 wmb();
649 *srq->db = cpu_to_be32(srq->counter);
650 }
651
652 spin_unlock_irqrestore(&srq->lock, flags);
653 return err;
654}
655
59fef3b1
JM
656int mthca_max_srq_sge(struct mthca_dev *dev)
657{
658 if (mthca_is_memfree(dev))
659 return dev->limits.max_sg;
660
661 /*
662 * SRQ allocations are based on powers of 2 for Tavor,
663 * (although they only need to be multiples of 16 bytes).
664 *
665 * Therefore, we need to base the max number of sg entries on
666 * the largest power of 2 descriptor size that is <= to the
667 * actual max WQE descriptor size, rather than return the
668 * max_sg value given by the firmware (which is based on WQE
669 * sizes as multiples of 16, not powers of 2).
670 *
671 * If SRQ implementation is changed for Tavor to be based on
672 * multiples of 16, the calculation below can be deleted and
673 * the FW max_sg value returned.
674 */
675 return min_t(int, dev->limits.max_sg,
676 ((1 << (fls(dev->limits.max_desc_sz) - 1)) -
677 sizeof (struct mthca_next_seg)) /
678 sizeof (struct mthca_data_seg));
679}
680
f4f3d0f0 681int mthca_init_srq_table(struct mthca_dev *dev)
ec34a922
RD
682{
683 int err;
684
685 if (!(dev->mthca_flags & MTHCA_FLAG_SRQ))
686 return 0;
687
688 spin_lock_init(&dev->srq_table.lock);
689
690 err = mthca_alloc_init(&dev->srq_table.alloc,
691 dev->limits.num_srqs,
692 dev->limits.num_srqs - 1,
693 dev->limits.reserved_srqs);
694 if (err)
695 return err;
696
697 err = mthca_array_init(&dev->srq_table.srq,
698 dev->limits.num_srqs);
699 if (err)
700 mthca_alloc_cleanup(&dev->srq_table.alloc);
701
702 return err;
703}
704
e1f7868c 705void mthca_cleanup_srq_table(struct mthca_dev *dev)
ec34a922
RD
706{
707 if (!(dev->mthca_flags & MTHCA_FLAG_SRQ))
708 return;
709
710 mthca_array_cleanup(&dev->srq_table.srq, dev->limits.num_srqs);
711 mthca_alloc_cleanup(&dev->srq_table.alloc);
712}