2 * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
3 * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 #include <linux/mlx4/qp.h>
35 #include <linux/mlx4/srq.h>
36 #include <linux/slab.h>
37 #include <linux/vmalloc.h>
42 static void *get_wqe(struct mlx4_ib_srq
*srq
, int n
)
44 return mlx4_buf_offset(&srq
->buf
, n
<< srq
->msrq
.wqe_shift
);
47 static void mlx4_ib_srq_event(struct mlx4_srq
*srq
, enum mlx4_event type
)
49 struct ib_event event
;
50 struct ib_srq
*ibsrq
= &to_mibsrq(srq
)->ibsrq
;
52 if (ibsrq
->event_handler
) {
53 event
.device
= ibsrq
->device
;
54 event
.element
.srq
= ibsrq
;
56 case MLX4_EVENT_TYPE_SRQ_LIMIT
:
57 event
.event
= IB_EVENT_SRQ_LIMIT_REACHED
;
59 case MLX4_EVENT_TYPE_SRQ_CATAS_ERROR
:
60 event
.event
= IB_EVENT_SRQ_ERR
;
63 pr_warn("Unexpected event type %d "
64 "on SRQ %06x\n", type
, srq
->srqn
);
68 ibsrq
->event_handler(&event
, ibsrq
->srq_context
);
72 struct ib_srq
*mlx4_ib_create_srq(struct ib_pd
*pd
,
73 struct ib_srq_init_attr
*init_attr
,
74 struct ib_udata
*udata
)
76 struct mlx4_ib_dev
*dev
= to_mdev(pd
->device
);
77 struct mlx4_ib_srq
*srq
;
78 struct mlx4_wqe_srq_next_seg
*next
;
79 struct mlx4_wqe_data_seg
*scatter
;
87 /* Sanity check SRQ size before proceeding */
88 if (init_attr
->attr
.max_wr
>= dev
->dev
->caps
.max_srq_wqes
||
89 init_attr
->attr
.max_sge
> dev
->dev
->caps
.max_srq_sge
)
90 return ERR_PTR(-EINVAL
);
92 srq
= kmalloc(sizeof *srq
, GFP_KERNEL
);
94 return ERR_PTR(-ENOMEM
);
96 mutex_init(&srq
->mutex
);
97 spin_lock_init(&srq
->lock
);
98 srq
->msrq
.max
= roundup_pow_of_two(init_attr
->attr
.max_wr
+ 1);
99 srq
->msrq
.max_gs
= init_attr
->attr
.max_sge
;
101 desc_size
= max(32UL,
102 roundup_pow_of_two(sizeof (struct mlx4_wqe_srq_next_seg
) +
104 sizeof (struct mlx4_wqe_data_seg
)));
105 srq
->msrq
.wqe_shift
= ilog2(desc_size
);
107 buf_size
= srq
->msrq
.max
* desc_size
;
110 struct mlx4_ib_create_srq ucmd
;
112 if (ib_copy_from_udata(&ucmd
, udata
, sizeof ucmd
)) {
117 srq
->umem
= ib_umem_get(pd
->uobject
->context
, ucmd
.buf_addr
,
119 if (IS_ERR(srq
->umem
)) {
120 err
= PTR_ERR(srq
->umem
);
124 err
= mlx4_mtt_init(dev
->dev
, ib_umem_page_count(srq
->umem
),
125 ilog2(srq
->umem
->page_size
), &srq
->mtt
);
129 err
= mlx4_ib_umem_write_mtt(dev
, &srq
->mtt
, srq
->umem
);
133 err
= mlx4_ib_db_map_user(to_mucontext(pd
->uobject
->context
),
134 ucmd
.db_addr
, &srq
->db
);
138 err
= mlx4_db_alloc(dev
->dev
, &srq
->db
, 0, GFP_KERNEL
);
144 if (mlx4_buf_alloc(dev
->dev
, buf_size
, PAGE_SIZE
* 2, &srq
->buf
,
151 srq
->tail
= srq
->msrq
.max
- 1;
154 for (i
= 0; i
< srq
->msrq
.max
; ++i
) {
155 next
= get_wqe(srq
, i
);
156 next
->next_wqe_index
=
157 cpu_to_be16((i
+ 1) & (srq
->msrq
.max
- 1));
159 for (scatter
= (void *) (next
+ 1);
160 (void *) scatter
< (void *) next
+ desc_size
;
162 scatter
->lkey
= cpu_to_be32(MLX4_INVALID_LKEY
);
165 err
= mlx4_mtt_init(dev
->dev
, srq
->buf
.npages
, srq
->buf
.page_shift
,
170 err
= mlx4_buf_write_mtt(dev
->dev
, &srq
->mtt
, &srq
->buf
, GFP_KERNEL
);
174 srq
->wrid
= kmalloc(srq
->msrq
.max
* sizeof (u64
), GFP_KERNEL
);
176 srq
->wrid
= __vmalloc(srq
->msrq
.max
* sizeof(u64
),
177 GFP_KERNEL
, PAGE_KERNEL
);
185 cqn
= (init_attr
->srq_type
== IB_SRQT_XRC
) ?
186 to_mcq(init_attr
->ext
.xrc
.cq
)->mcq
.cqn
: 0;
187 xrcdn
= (init_attr
->srq_type
== IB_SRQT_XRC
) ?
188 to_mxrcd(init_attr
->ext
.xrc
.xrcd
)->xrcdn
:
189 (u16
) dev
->dev
->caps
.reserved_xrcds
;
190 err
= mlx4_srq_alloc(dev
->dev
, to_mpd(pd
)->pdn
, cqn
, xrcdn
, &srq
->mtt
,
191 srq
->db
.dma
, &srq
->msrq
);
195 srq
->msrq
.event
= mlx4_ib_srq_event
;
196 srq
->ibsrq
.ext
.xrc
.srq_num
= srq
->msrq
.srqn
;
199 if (ib_copy_to_udata(udata
, &srq
->msrq
.srqn
, sizeof (__u32
))) {
204 init_attr
->attr
.max_wr
= srq
->msrq
.max
- 1;
210 mlx4_ib_db_unmap_user(to_mucontext(pd
->uobject
->context
), &srq
->db
);
215 mlx4_mtt_cleanup(dev
->dev
, &srq
->mtt
);
219 ib_umem_release(srq
->umem
);
221 mlx4_buf_free(dev
->dev
, buf_size
, &srq
->buf
);
225 mlx4_db_free(dev
->dev
, &srq
->db
);
233 int mlx4_ib_modify_srq(struct ib_srq
*ibsrq
, struct ib_srq_attr
*attr
,
234 enum ib_srq_attr_mask attr_mask
, struct ib_udata
*udata
)
236 struct mlx4_ib_dev
*dev
= to_mdev(ibsrq
->device
);
237 struct mlx4_ib_srq
*srq
= to_msrq(ibsrq
);
240 /* We don't support resizing SRQs (yet?) */
241 if (attr_mask
& IB_SRQ_MAX_WR
)
244 if (attr_mask
& IB_SRQ_LIMIT
) {
245 if (attr
->srq_limit
>= srq
->msrq
.max
)
248 mutex_lock(&srq
->mutex
);
249 ret
= mlx4_srq_arm(dev
->dev
, &srq
->msrq
, attr
->srq_limit
);
250 mutex_unlock(&srq
->mutex
);
259 int mlx4_ib_query_srq(struct ib_srq
*ibsrq
, struct ib_srq_attr
*srq_attr
)
261 struct mlx4_ib_dev
*dev
= to_mdev(ibsrq
->device
);
262 struct mlx4_ib_srq
*srq
= to_msrq(ibsrq
);
266 ret
= mlx4_srq_query(dev
->dev
, &srq
->msrq
, &limit_watermark
);
270 srq_attr
->srq_limit
= limit_watermark
;
271 srq_attr
->max_wr
= srq
->msrq
.max
- 1;
272 srq_attr
->max_sge
= srq
->msrq
.max_gs
;
277 int mlx4_ib_destroy_srq(struct ib_srq
*srq
)
279 struct mlx4_ib_dev
*dev
= to_mdev(srq
->device
);
280 struct mlx4_ib_srq
*msrq
= to_msrq(srq
);
282 mlx4_srq_free(dev
->dev
, &msrq
->msrq
);
283 mlx4_mtt_cleanup(dev
->dev
, &msrq
->mtt
);
286 mlx4_ib_db_unmap_user(to_mucontext(srq
->uobject
->context
), &msrq
->db
);
287 ib_umem_release(msrq
->umem
);
290 mlx4_buf_free(dev
->dev
, msrq
->msrq
.max
<< msrq
->msrq
.wqe_shift
,
292 mlx4_db_free(dev
->dev
, &msrq
->db
);
300 void mlx4_ib_free_srq_wqe(struct mlx4_ib_srq
*srq
, int wqe_index
)
302 struct mlx4_wqe_srq_next_seg
*next
;
304 /* always called with interrupts disabled. */
305 spin_lock(&srq
->lock
);
307 next
= get_wqe(srq
, srq
->tail
);
308 next
->next_wqe_index
= cpu_to_be16(wqe_index
);
309 srq
->tail
= wqe_index
;
311 spin_unlock(&srq
->lock
);
314 int mlx4_ib_post_srq_recv(struct ib_srq
*ibsrq
, struct ib_recv_wr
*wr
,
315 struct ib_recv_wr
**bad_wr
)
317 struct mlx4_ib_srq
*srq
= to_msrq(ibsrq
);
318 struct mlx4_wqe_srq_next_seg
*next
;
319 struct mlx4_wqe_data_seg
*scat
;
324 struct mlx4_ib_dev
*mdev
= to_mdev(ibsrq
->device
);
326 spin_lock_irqsave(&srq
->lock
, flags
);
327 if (mdev
->dev
->persist
->state
& MLX4_DEVICE_STATE_INTERNAL_ERROR
) {
334 for (nreq
= 0; wr
; ++nreq
, wr
= wr
->next
) {
335 if (unlikely(wr
->num_sge
> srq
->msrq
.max_gs
)) {
341 if (unlikely(srq
->head
== srq
->tail
)) {
347 srq
->wrid
[srq
->head
] = wr
->wr_id
;
349 next
= get_wqe(srq
, srq
->head
);
350 srq
->head
= be16_to_cpu(next
->next_wqe_index
);
351 scat
= (struct mlx4_wqe_data_seg
*) (next
+ 1);
353 for (i
= 0; i
< wr
->num_sge
; ++i
) {
354 scat
[i
].byte_count
= cpu_to_be32(wr
->sg_list
[i
].length
);
355 scat
[i
].lkey
= cpu_to_be32(wr
->sg_list
[i
].lkey
);
356 scat
[i
].addr
= cpu_to_be64(wr
->sg_list
[i
].addr
);
359 if (i
< srq
->msrq
.max_gs
) {
360 scat
[i
].byte_count
= 0;
361 scat
[i
].lkey
= cpu_to_be32(MLX4_INVALID_LKEY
);
367 srq
->wqe_ctr
+= nreq
;
370 * Make sure that descriptors are written before
375 *srq
->db
.db
= cpu_to_be32(srq
->wqe_ctr
);
379 spin_unlock_irqrestore(&srq
->lock
, flags
);