2 * Copyright(c) 2016 - 2018 Intel Corporation.
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48 #include <linux/slab.h>
49 #include <linux/vmalloc.h>
54 static struct workqueue_struct
*comp_vector_wq
;
57 * rvt_cq_enter - add a new entry to the completion queue
58 * @cq: completion queue
59 * @entry: work completion entry to add
60 * @solicited: true if @entry is solicited
62 * This may be called with qp->s_lock held.
64 void rvt_cq_enter(struct rvt_cq
*cq
, struct ib_wc
*entry
, bool solicited
)
71 spin_lock_irqsave(&cq
->lock
, flags
);
74 * Note that the head pointer might be writable by user processes.
75 * Take care to verify it is a sane value.
79 if (head
>= (unsigned)cq
->ibcq
.cqe
) {
86 if (unlikely(next
== wc
->tail
)) {
87 spin_unlock_irqrestore(&cq
->lock
, flags
);
88 if (cq
->ibcq
.event_handler
) {
91 ev
.device
= cq
->ibcq
.device
;
92 ev
.element
.cq
= &cq
->ibcq
;
93 ev
.event
= IB_EVENT_CQ_ERR
;
94 cq
->ibcq
.event_handler(&ev
, cq
->ibcq
.cq_context
);
98 trace_rvt_cq_enter(cq
, entry
, head
);
100 wc
->uqueue
[head
].wr_id
= entry
->wr_id
;
101 wc
->uqueue
[head
].status
= entry
->status
;
102 wc
->uqueue
[head
].opcode
= entry
->opcode
;
103 wc
->uqueue
[head
].vendor_err
= entry
->vendor_err
;
104 wc
->uqueue
[head
].byte_len
= entry
->byte_len
;
105 wc
->uqueue
[head
].ex
.imm_data
= entry
->ex
.imm_data
;
106 wc
->uqueue
[head
].qp_num
= entry
->qp
->qp_num
;
107 wc
->uqueue
[head
].src_qp
= entry
->src_qp
;
108 wc
->uqueue
[head
].wc_flags
= entry
->wc_flags
;
109 wc
->uqueue
[head
].pkey_index
= entry
->pkey_index
;
110 wc
->uqueue
[head
].slid
= ib_lid_cpu16(entry
->slid
);
111 wc
->uqueue
[head
].sl
= entry
->sl
;
112 wc
->uqueue
[head
].dlid_path_bits
= entry
->dlid_path_bits
;
113 wc
->uqueue
[head
].port_num
= entry
->port_num
;
114 /* Make sure entry is written before the head index. */
117 wc
->kqueue
[head
] = *entry
;
121 if (cq
->notify
== IB_CQ_NEXT_COMP
||
122 (cq
->notify
== IB_CQ_SOLICITED
&&
123 (solicited
|| entry
->status
!= IB_WC_SUCCESS
))) {
125 * This will cause send_complete() to be called in
128 cq
->notify
= RVT_CQ_NONE
;
130 queue_work_on(cq
->comp_vector_cpu
, comp_vector_wq
,
134 spin_unlock_irqrestore(&cq
->lock
, flags
);
136 EXPORT_SYMBOL(rvt_cq_enter
);
138 static void send_complete(struct work_struct
*work
)
140 struct rvt_cq
*cq
= container_of(work
, struct rvt_cq
, comptask
);
143 * The completion handler will most likely rearm the notification
144 * and poll for all pending entries. If a new completion entry
145 * is added while we are in this routine, queue_work()
146 * won't call us again until we return so we check triggered to
147 * see if we need to call the handler again.
150 u8 triggered
= cq
->triggered
;
153 * IPoIB connected mode assumes the callback is from a
154 * soft IRQ. We simulate this by blocking "bottom halves".
155 * See the implementation for ipoib_cm_handle_tx_wc(),
156 * netif_tx_lock_bh() and netif_tx_lock().
159 cq
->ibcq
.comp_handler(&cq
->ibcq
, cq
->ibcq
.cq_context
);
162 if (cq
->triggered
== triggered
)
168 * rvt_create_cq - create a completion queue
169 * @ibdev: the device this completion queue is attached to
170 * @attr: creation attributes
171 * @context: unused by the QLogic_IB driver
172 * @udata: user data for libibverbs.so
174 * Called by ib_create_cq() in the generic verbs code.
176 * Return: pointer to the completion queue or negative errno values
179 struct ib_cq
*rvt_create_cq(struct ib_device
*ibdev
,
180 const struct ib_cq_init_attr
*attr
,
181 struct ib_ucontext
*context
,
182 struct ib_udata
*udata
)
184 struct rvt_dev_info
*rdi
= ib_to_rvt(ibdev
);
186 struct rvt_cq_wc
*wc
;
189 unsigned int entries
= attr
->cqe
;
190 int comp_vector
= attr
->comp_vector
;
193 return ERR_PTR(-EINVAL
);
195 if (entries
< 1 || entries
> rdi
->dparms
.props
.max_cqe
)
196 return ERR_PTR(-EINVAL
);
201 comp_vector
= comp_vector
% rdi
->ibdev
.num_comp_vectors
;
203 /* Allocate the completion queue structure. */
204 cq
= kzalloc_node(sizeof(*cq
), GFP_KERNEL
, rdi
->dparms
.node
);
206 return ERR_PTR(-ENOMEM
);
209 * Allocate the completion queue entries and head/tail pointers.
210 * This is allocated separately so that it can be resized and
211 * also mapped into user space.
212 * We need to use vmalloc() in order to support mmap and large
213 * numbers of entries.
216 if (udata
&& udata
->outlen
>= sizeof(__u64
))
217 sz
+= sizeof(struct ib_uverbs_wc
) * (entries
+ 1);
219 sz
+= sizeof(struct ib_wc
) * (entries
+ 1);
222 vzalloc_node(sz
, rdi
->dparms
.node
);
224 ret
= ERR_PTR(-ENOMEM
);
229 * Return the address of the WC as the offset to mmap.
230 * See rvt_mmap() for details.
232 if (udata
&& udata
->outlen
>= sizeof(__u64
)) {
235 cq
->ip
= rvt_create_mmap_info(rdi
, sz
, context
, wc
);
237 ret
= ERR_PTR(-ENOMEM
);
241 err
= ib_copy_to_udata(udata
, &cq
->ip
->offset
,
242 sizeof(cq
->ip
->offset
));
249 spin_lock_irq(&rdi
->n_cqs_lock
);
250 if (rdi
->n_cqs_allocated
== rdi
->dparms
.props
.max_cq
) {
251 spin_unlock_irq(&rdi
->n_cqs_lock
);
252 ret
= ERR_PTR(-ENOMEM
);
256 rdi
->n_cqs_allocated
++;
257 spin_unlock_irq(&rdi
->n_cqs_lock
);
260 spin_lock_irq(&rdi
->pending_lock
);
261 list_add(&cq
->ip
->pending_mmaps
, &rdi
->pending_mmaps
);
262 spin_unlock_irq(&rdi
->pending_lock
);
266 * ib_create_cq() will initialize cq->ibcq except for cq->ibcq.cqe.
267 * The number of entries should be >= the number requested or return
271 if (rdi
->driver_f
.comp_vect_cpu_lookup
)
272 cq
->comp_vector_cpu
=
273 rdi
->driver_f
.comp_vect_cpu_lookup(rdi
, comp_vector
);
275 cq
->comp_vector_cpu
=
276 cpumask_first(cpumask_of_node(rdi
->dparms
.node
));
278 cq
->ibcq
.cqe
= entries
;
279 cq
->notify
= RVT_CQ_NONE
;
280 spin_lock_init(&cq
->lock
);
281 INIT_WORK(&cq
->comptask
, send_complete
);
286 trace_rvt_create_cq(cq
, attr
);
300 * rvt_destroy_cq - destroy a completion queue
301 * @ibcq: the completion queue to destroy.
303 * Called by ib_destroy_cq() in the generic verbs code.
307 int rvt_destroy_cq(struct ib_cq
*ibcq
)
309 struct rvt_cq
*cq
= ibcq_to_rvtcq(ibcq
);
310 struct rvt_dev_info
*rdi
= cq
->rdi
;
312 flush_work(&cq
->comptask
);
313 spin_lock_irq(&rdi
->n_cqs_lock
);
314 rdi
->n_cqs_allocated
--;
315 spin_unlock_irq(&rdi
->n_cqs_lock
);
317 kref_put(&cq
->ip
->ref
, rvt_release_mmap_info
);
326 * rvt_req_notify_cq - change the notification type for a completion queue
327 * @ibcq: the completion queue
328 * @notify_flags: the type of notification to request
330 * This may be called from interrupt context. Also called by
331 * ib_req_notify_cq() in the generic verbs code.
333 * Return: 0 for success.
335 int rvt_req_notify_cq(struct ib_cq
*ibcq
, enum ib_cq_notify_flags notify_flags
)
337 struct rvt_cq
*cq
= ibcq_to_rvtcq(ibcq
);
341 spin_lock_irqsave(&cq
->lock
, flags
);
343 * Don't change IB_CQ_NEXT_COMP to IB_CQ_SOLICITED but allow
344 * any other transitions (see C11-31 and C11-32 in ch. 11.4.2.2).
346 if (cq
->notify
!= IB_CQ_NEXT_COMP
)
347 cq
->notify
= notify_flags
& IB_CQ_SOLICITED_MASK
;
349 if ((notify_flags
& IB_CQ_REPORT_MISSED_EVENTS
) &&
350 cq
->queue
->head
!= cq
->queue
->tail
)
353 spin_unlock_irqrestore(&cq
->lock
, flags
);
359 * rvt_resize_cq - change the size of the CQ
360 * @ibcq: the completion queue
362 * Return: 0 for success.
364 int rvt_resize_cq(struct ib_cq
*ibcq
, int cqe
, struct ib_udata
*udata
)
366 struct rvt_cq
*cq
= ibcq_to_rvtcq(ibcq
);
367 struct rvt_cq_wc
*old_wc
;
368 struct rvt_cq_wc
*wc
;
372 struct rvt_dev_info
*rdi
= cq
->rdi
;
374 if (cqe
< 1 || cqe
> rdi
->dparms
.props
.max_cqe
)
378 * Need to use vmalloc() if we want to support large #s of entries.
381 if (udata
&& udata
->outlen
>= sizeof(__u64
))
382 sz
+= sizeof(struct ib_uverbs_wc
) * (cqe
+ 1);
384 sz
+= sizeof(struct ib_wc
) * (cqe
+ 1);
387 vzalloc_node(sz
, rdi
->dparms
.node
);
391 /* Check that we can write the offset to mmap. */
392 if (udata
&& udata
->outlen
>= sizeof(__u64
)) {
395 ret
= ib_copy_to_udata(udata
, &offset
, sizeof(offset
));
400 spin_lock_irq(&cq
->lock
);
402 * Make sure head and tail are sane since they
403 * might be user writable.
407 if (head
> (u32
)cq
->ibcq
.cqe
)
408 head
= (u32
)cq
->ibcq
.cqe
;
410 if (tail
> (u32
)cq
->ibcq
.cqe
)
411 tail
= (u32
)cq
->ibcq
.cqe
;
413 n
= cq
->ibcq
.cqe
+ 1 + head
- tail
;
416 if (unlikely((u32
)cqe
< n
)) {
420 for (n
= 0; tail
!= head
; n
++) {
422 wc
->uqueue
[n
] = old_wc
->uqueue
[tail
];
424 wc
->kqueue
[n
] = old_wc
->kqueue
[tail
];
425 if (tail
== (u32
)cq
->ibcq
.cqe
)
434 spin_unlock_irq(&cq
->lock
);
439 struct rvt_mmap_info
*ip
= cq
->ip
;
441 rvt_update_mmap_info(rdi
, ip
, sz
, wc
);
444 * Return the offset to mmap.
445 * See rvt_mmap() for details.
447 if (udata
&& udata
->outlen
>= sizeof(__u64
)) {
448 ret
= ib_copy_to_udata(udata
, &ip
->offset
,
454 spin_lock_irq(&rdi
->pending_lock
);
455 if (list_empty(&ip
->pending_mmaps
))
456 list_add(&ip
->pending_mmaps
, &rdi
->pending_mmaps
);
457 spin_unlock_irq(&rdi
->pending_lock
);
463 spin_unlock_irq(&cq
->lock
);
470 * rvt_poll_cq - poll for work completion entries
471 * @ibcq: the completion queue to poll
472 * @num_entries: the maximum number of entries to return
473 * @entry: pointer to array where work completions are placed
475 * This may be called from interrupt context. Also called by ib_poll_cq()
476 * in the generic verbs code.
478 * Return: the number of completion entries polled.
480 int rvt_poll_cq(struct ib_cq
*ibcq
, int num_entries
, struct ib_wc
*entry
)
482 struct rvt_cq
*cq
= ibcq_to_rvtcq(ibcq
);
483 struct rvt_cq_wc
*wc
;
488 /* The kernel can only poll a kernel completion queue */
492 spin_lock_irqsave(&cq
->lock
, flags
);
496 if (tail
> (u32
)cq
->ibcq
.cqe
)
497 tail
= (u32
)cq
->ibcq
.cqe
;
498 for (npolled
= 0; npolled
< num_entries
; ++npolled
, ++entry
) {
499 if (tail
== wc
->head
)
501 /* The kernel doesn't need a RMB since it has the lock. */
502 trace_rvt_cq_poll(cq
, &wc
->kqueue
[tail
], npolled
);
503 *entry
= wc
->kqueue
[tail
];
504 if (tail
>= cq
->ibcq
.cqe
)
511 spin_unlock_irqrestore(&cq
->lock
, flags
);
517 * rvt_driver_cq_init - Init cq resources on behalf of driver
518 * @rdi: rvt dev structure
520 * Return: 0 on success
522 int rvt_driver_cq_init(void)
524 comp_vector_wq
= alloc_workqueue("%s", WQ_HIGHPRI
| WQ_CPU_INTENSIVE
,
533 * rvt_cq_exit - tear down cq reources
534 * @rdi: rvt dev structure
536 void rvt_cq_exit(void)
538 destroy_workqueue(comp_vector_wq
);
539 comp_vector_wq
= NULL
;