2 * Copyright (c) 2012, 2013 Intel Corporation. All rights reserved.
3 * Copyright (c) 2006 - 2012 QLogic Corporation. * All rights reserved.
4 * Copyright (c) 2005, 2006 PathScale, Inc. All rights reserved.
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
35 #include <linux/err.h>
36 #include <linux/vmalloc.h>
37 #include <rdma/rdma_vt.h>
38 #ifdef CONFIG_DEBUG_FS
39 #include <linux/seq_file.h>
45 * mask field which was present in now deleted qib_qpn_table
46 * is not present in rvt_qpn_table. Defining the same field
47 * as qpt_mask here instead of adding the mask field to
52 static inline unsigned mk_qpn(struct rvt_qpn_table
*qpt
,
53 struct rvt_qpn_map
*map
, unsigned off
)
55 return (map
- qpt
->map
) * RVT_BITS_PER_PAGE
+ off
;
58 static inline unsigned find_next_offset(struct rvt_qpn_table
*qpt
,
59 struct rvt_qpn_map
*map
, unsigned off
,
64 if (((off
& qpt_mask
) >> 1) >= n
)
65 off
= (off
| qpt_mask
) + 2;
67 off
= find_next_zero_bit(map
->page
, RVT_BITS_PER_PAGE
, off
);
73 * Convert the AETH credit code into the number of credits.
75 static u32 credit_table
[31] = {
109 static void get_map_page(struct rvt_qpn_table
*qpt
, struct rvt_qpn_map
*map
,
112 unsigned long page
= get_zeroed_page(gfp
);
115 * Free the page if someone raced with us installing it.
118 spin_lock(&qpt
->lock
);
122 map
->page
= (void *)page
;
123 spin_unlock(&qpt
->lock
);
127 * Allocate the next available QPN or
128 * zero/one for QP type IB_QPT_SMI/IB_QPT_GSI.
130 int qib_alloc_qpn(struct rvt_dev_info
*rdi
, struct rvt_qpn_table
*qpt
,
131 enum ib_qp_type type
, u8 port
, gfp_t gfp
)
133 u32 i
, offset
, max_scan
, qpn
;
134 struct rvt_qpn_map
*map
;
136 struct qib_ibdev
*verbs_dev
= container_of(rdi
, struct qib_ibdev
, rdi
);
137 struct qib_devdata
*dd
= container_of(verbs_dev
, struct qib_devdata
,
140 if (type
== IB_QPT_SMI
|| type
== IB_QPT_GSI
) {
143 ret
= type
== IB_QPT_GSI
;
144 n
= 1 << (ret
+ 2 * (port
- 1));
145 spin_lock(&qpt
->lock
);
150 spin_unlock(&qpt
->lock
);
155 if (qpn
>= RVT_QPN_MAX
)
157 if (qpt_mask
&& ((qpn
& qpt_mask
) >> 1) >= dd
->n_krcv_queues
)
158 qpn
= (qpn
| qpt_mask
) + 2;
159 offset
= qpn
& RVT_BITS_PER_PAGE_MASK
;
160 map
= &qpt
->map
[qpn
/ RVT_BITS_PER_PAGE
];
161 max_scan
= qpt
->nmaps
- !offset
;
163 if (unlikely(!map
->page
)) {
164 get_map_page(qpt
, map
, gfp
);
165 if (unlikely(!map
->page
))
169 if (!test_and_set_bit(offset
, map
->page
)) {
174 offset
= find_next_offset(qpt
, map
, offset
,
176 qpn
= mk_qpn(qpt
, map
, offset
);
178 * This test differs from alloc_pidmap().
179 * If find_next_offset() does find a zero
180 * bit, we don't need to check for QPN
181 * wrapping around past our starting QPN.
182 * We just need to be sure we don't loop
185 } while (offset
< RVT_BITS_PER_PAGE
&& qpn
< RVT_QPN_MAX
);
187 * In order to keep the number of pages allocated to a
188 * minimum, we scan the all existing pages before increasing
189 * the size of the bitmap table.
191 if (++i
> max_scan
) {
192 if (qpt
->nmaps
== RVT_QPNMAP_ENTRIES
)
194 map
= &qpt
->map
[qpt
->nmaps
++];
196 } else if (map
< &qpt
->map
[qpt
->nmaps
]) {
203 qpn
= mk_qpn(qpt
, map
, offset
);
213 * qib_free_all_qps - check for QPs still in use
215 unsigned qib_free_all_qps(struct rvt_dev_info
*rdi
)
217 struct qib_ibdev
*verbs_dev
= container_of(rdi
, struct qib_ibdev
, rdi
);
218 struct qib_devdata
*dd
= container_of(verbs_dev
, struct qib_devdata
,
220 unsigned n
, qp_inuse
= 0;
222 for (n
= 0; n
< dd
->num_pports
; n
++) {
223 struct qib_ibport
*ibp
= &dd
->pport
[n
].ibport_data
;
226 if (rcu_dereference(ibp
->rvp
.qp
[0]))
228 if (rcu_dereference(ibp
->rvp
.qp
[1]))
235 void qib_notify_qp_reset(struct rvt_qp
*qp
)
237 struct qib_qp_priv
*priv
= qp
->priv
;
239 atomic_set(&priv
->s_dma_busy
, 0);
242 void qib_notify_error_qp(struct rvt_qp
*qp
)
244 struct qib_qp_priv
*priv
= qp
->priv
;
245 struct qib_ibdev
*dev
= to_idev(qp
->ibqp
.device
);
247 spin_lock(&dev
->rdi
.pending_lock
);
248 if (!list_empty(&priv
->iowait
) && !(qp
->s_flags
& RVT_S_BUSY
)) {
249 qp
->s_flags
&= ~RVT_S_ANY_WAIT_IO
;
250 list_del_init(&priv
->iowait
);
252 spin_unlock(&dev
->rdi
.pending_lock
);
254 if (!(qp
->s_flags
& RVT_S_BUSY
)) {
257 rvt_put_mr(qp
->s_rdma_mr
);
258 qp
->s_rdma_mr
= NULL
;
261 qib_put_txreq(priv
->s_tx
);
267 static int mtu_to_enum(u32 mtu
)
273 enum_mtu
= IB_MTU_4096
;
276 enum_mtu
= IB_MTU_2048
;
279 enum_mtu
= IB_MTU_1024
;
282 enum_mtu
= IB_MTU_512
;
285 enum_mtu
= IB_MTU_256
;
288 enum_mtu
= IB_MTU_2048
;
293 int qib_get_pmtu_from_attr(struct rvt_dev_info
*rdi
, struct rvt_qp
*qp
,
294 struct ib_qp_attr
*attr
)
296 int mtu
, pmtu
, pidx
= qp
->port_num
- 1;
297 struct qib_ibdev
*verbs_dev
= container_of(rdi
, struct qib_ibdev
, rdi
);
298 struct qib_devdata
*dd
= container_of(verbs_dev
, struct qib_devdata
,
300 mtu
= ib_mtu_enum_to_int(attr
->path_mtu
);
304 if (mtu
> dd
->pport
[pidx
].ibmtu
)
305 pmtu
= mtu_to_enum(dd
->pport
[pidx
].ibmtu
);
307 pmtu
= attr
->path_mtu
;
311 int qib_mtu_to_path_mtu(u32 mtu
)
313 return mtu_to_enum(mtu
);
316 u32
qib_mtu_from_qp(struct rvt_dev_info
*rdi
, struct rvt_qp
*qp
, u32 pmtu
)
318 return ib_mtu_enum_to_int(pmtu
);
322 * qib_compute_aeth - compute the AETH (syndrome + MSN)
323 * @qp: the queue pair to compute the AETH for
327 __be32
qib_compute_aeth(struct rvt_qp
*qp
)
329 u32 aeth
= qp
->r_msn
& QIB_MSN_MASK
;
333 * Shared receive queues don't generate credits.
334 * Set the credit field to the invalid value.
336 aeth
|= QIB_AETH_CREDIT_INVAL
<< QIB_AETH_CREDIT_SHIFT
;
340 struct rvt_rwq
*wq
= qp
->r_rq
.wq
;
344 /* sanity check pointers before trusting them */
346 if (head
>= qp
->r_rq
.size
)
349 if (tail
>= qp
->r_rq
.size
)
352 * Compute the number of credits available (RWQEs).
353 * XXX Not holding the r_rq.lock here so there is a small
354 * chance that the pair of reads are not atomic.
356 credits
= head
- tail
;
357 if ((int)credits
< 0)
358 credits
+= qp
->r_rq
.size
;
360 * Binary search the credit table to find the code to
367 if (credit_table
[x
] == credits
)
369 if (credit_table
[x
] > credits
)
376 aeth
|= x
<< QIB_AETH_CREDIT_SHIFT
;
378 return cpu_to_be32(aeth
);
381 void *qib_qp_priv_alloc(struct rvt_dev_info
*rdi
, struct rvt_qp
*qp
, gfp_t gfp
)
383 struct qib_qp_priv
*priv
;
385 priv
= kzalloc(sizeof(*priv
), gfp
);
387 return ERR_PTR(-ENOMEM
);
390 priv
->s_hdr
= kzalloc(sizeof(*priv
->s_hdr
), gfp
);
393 return ERR_PTR(-ENOMEM
);
395 init_waitqueue_head(&priv
->wait_dma
);
396 INIT_WORK(&priv
->s_work
, _qib_do_send
);
397 INIT_LIST_HEAD(&priv
->iowait
);
402 void qib_qp_priv_free(struct rvt_dev_info
*rdi
, struct rvt_qp
*qp
)
404 struct qib_qp_priv
*priv
= qp
->priv
;
410 void qib_stop_send_queue(struct rvt_qp
*qp
)
412 struct qib_qp_priv
*priv
= qp
->priv
;
414 cancel_work_sync(&priv
->s_work
);
415 del_timer_sync(&qp
->s_timer
);
418 void qib_quiesce_qp(struct rvt_qp
*qp
)
420 struct qib_qp_priv
*priv
= qp
->priv
;
422 wait_event(priv
->wait_dma
, !atomic_read(&priv
->s_dma_busy
));
424 qib_put_txreq(priv
->s_tx
);
429 void qib_flush_qp_waiters(struct rvt_qp
*qp
)
431 struct qib_qp_priv
*priv
= qp
->priv
;
432 struct qib_ibdev
*dev
= to_idev(qp
->ibqp
.device
);
434 spin_lock(&dev
->rdi
.pending_lock
);
435 if (!list_empty(&priv
->iowait
))
436 list_del_init(&priv
->iowait
);
437 spin_unlock(&dev
->rdi
.pending_lock
);
441 * qib_get_credit - flush the send work queue of a QP
442 * @qp: the qp who's send work queue to flush
443 * @aeth: the Acknowledge Extended Transport Header
445 * The QP s_lock should be held.
447 void qib_get_credit(struct rvt_qp
*qp
, u32 aeth
)
449 u32 credit
= (aeth
>> QIB_AETH_CREDIT_SHIFT
) & QIB_AETH_CREDIT_MASK
;
452 * If the credit is invalid, we can send
453 * as many packets as we like. Otherwise, we have to
454 * honor the credit field.
456 if (credit
== QIB_AETH_CREDIT_INVAL
) {
457 if (!(qp
->s_flags
& RVT_S_UNLIMITED_CREDIT
)) {
458 qp
->s_flags
|= RVT_S_UNLIMITED_CREDIT
;
459 if (qp
->s_flags
& RVT_S_WAIT_SSN_CREDIT
) {
460 qp
->s_flags
&= ~RVT_S_WAIT_SSN_CREDIT
;
461 qib_schedule_send(qp
);
464 } else if (!(qp
->s_flags
& RVT_S_UNLIMITED_CREDIT
)) {
465 /* Compute new LSN (i.e., MSN + credit) */
466 credit
= (aeth
+ credit_table
[credit
]) & QIB_MSN_MASK
;
467 if (qib_cmp24(credit
, qp
->s_lsn
) > 0) {
469 if (qp
->s_flags
& RVT_S_WAIT_SSN_CREDIT
) {
470 qp
->s_flags
&= ~RVT_S_WAIT_SSN_CREDIT
;
471 qib_schedule_send(qp
);
478 * qib_check_send_wqe - validate wr/wqe
480 * @wqe - The built wqe
482 * validate wr/wqe. This is called
483 * prior to inserting the wqe into
484 * the ring but after the wqe has been
487 * Returns 1 to force direct progress, 0 otherwise, -EINVAL on failure
489 int qib_check_send_wqe(struct rvt_qp
*qp
,
490 struct rvt_swqe
*wqe
)
495 switch (qp
->ibqp
.qp_type
) {
498 if (wqe
->length
> 0x80000000U
)
504 ah
= ibah_to_rvtah(wqe
->ud_wr
.ah
);
505 if (wqe
->length
> (1 << ah
->log_pmtu
))
516 #ifdef CONFIG_DEBUG_FS
519 struct qib_ibdev
*dev
;
524 struct qib_qp_iter
*qib_qp_iter_init(struct qib_ibdev
*dev
)
526 struct qib_qp_iter
*iter
;
528 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
533 if (qib_qp_iter_next(iter
)) {
541 int qib_qp_iter_next(struct qib_qp_iter
*iter
)
543 struct qib_ibdev
*dev
= iter
->dev
;
546 struct rvt_qp
*pqp
= iter
->qp
;
549 for (; n
< dev
->rdi
.qp_dev
->qp_table_size
; n
++) {
551 qp
= rcu_dereference(pqp
->next
);
553 qp
= rcu_dereference(dev
->rdi
.qp_dev
->qp_table
[n
]);
564 static const char * const qp_type_str
[] = {
565 "SMI", "GSI", "RC", "UC", "UD",
568 void qib_qp_iter_print(struct seq_file
*s
, struct qib_qp_iter
*iter
)
570 struct rvt_swqe
*wqe
;
571 struct rvt_qp
*qp
= iter
->qp
;
572 struct qib_qp_priv
*priv
= qp
->priv
;
574 wqe
= rvt_get_swqe_ptr(qp
, qp
->s_last
);
576 "N %d QP%u %s %u %u %u f=%x %u %u %u %u %u PSN %x %x %x %x %x (%u %u %u %u %u %u) QP%u LID %x\n",
579 qp_type_str
[qp
->ibqp
.qp_type
],
584 atomic_read(&priv
->s_dma_busy
),
585 !list_empty(&priv
->iowait
),
590 qp
->s_psn
, qp
->s_next_psn
,
591 qp
->s_sending_psn
, qp
->s_sending_hpsn
,
592 qp
->s_last
, qp
->s_acked
, qp
->s_cur
,
593 qp
->s_tail
, qp
->s_head
, qp
->s_size
,
595 qp
->remote_ah_attr
.dlid
);