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 <rdma/ib_mad.h>
36 #include <rdma/ib_user_verbs.h>
38 #include <linux/module.h>
39 #include <linux/utsname.h>
40 #include <linux/rculist.h>
42 #include <linux/random.h>
43 #include <linux/vmalloc.h>
44 #include <rdma/rdma_vt.h>
47 #include "qib_common.h"
49 static unsigned int ib_qib_qp_table_size = 256;
50 module_param_named(qp_table_size, ib_qib_qp_table_size, uint, S_IRUGO);
51 MODULE_PARM_DESC(qp_table_size, "QP table size");
53 unsigned int ib_qib_lkey_table_size = 16;
54 module_param_named(lkey_table_size, ib_qib_lkey_table_size, uint,
56 MODULE_PARM_DESC(lkey_table_size,
57 "LKEY table size in bits (2^n, 1 <= n <= 23)");
59 static unsigned int ib_qib_max_pds = 0xFFFF;
60 module_param_named(max_pds, ib_qib_max_pds, uint, S_IRUGO);
61 MODULE_PARM_DESC(max_pds,
62 "Maximum number of protection domains to support");
64 static unsigned int ib_qib_max_ahs = 0xFFFF;
65 module_param_named(max_ahs, ib_qib_max_ahs, uint, S_IRUGO);
66 MODULE_PARM_DESC(max_ahs, "Maximum number of address handles to support");
68 unsigned int ib_qib_max_cqes = 0x2FFFF;
69 module_param_named(max_cqes, ib_qib_max_cqes, uint, S_IRUGO);
70 MODULE_PARM_DESC(max_cqes,
71 "Maximum number of completion queue entries to support");
73 unsigned int ib_qib_max_cqs = 0x1FFFF;
74 module_param_named(max_cqs, ib_qib_max_cqs, uint, S_IRUGO);
75 MODULE_PARM_DESC(max_cqs, "Maximum number of completion queues to support");
77 unsigned int ib_qib_max_qp_wrs = 0x3FFF;
78 module_param_named(max_qp_wrs, ib_qib_max_qp_wrs, uint, S_IRUGO);
79 MODULE_PARM_DESC(max_qp_wrs, "Maximum number of QP WRs to support");
81 unsigned int ib_qib_max_qps = 16384;
82 module_param_named(max_qps, ib_qib_max_qps, uint, S_IRUGO);
83 MODULE_PARM_DESC(max_qps, "Maximum number of QPs to support");
85 unsigned int ib_qib_max_sges = 0x60;
86 module_param_named(max_sges, ib_qib_max_sges, uint, S_IRUGO);
87 MODULE_PARM_DESC(max_sges, "Maximum number of SGEs to support");
89 unsigned int ib_qib_max_mcast_grps = 16384;
90 module_param_named(max_mcast_grps, ib_qib_max_mcast_grps, uint, S_IRUGO);
91 MODULE_PARM_DESC(max_mcast_grps,
92 "Maximum number of multicast groups to support");
94 unsigned int ib_qib_max_mcast_qp_attached = 16;
95 module_param_named(max_mcast_qp_attached, ib_qib_max_mcast_qp_attached,
97 MODULE_PARM_DESC(max_mcast_qp_attached,
98 "Maximum number of attached QPs to support");
100 unsigned int ib_qib_max_srqs = 1024;
101 module_param_named(max_srqs, ib_qib_max_srqs, uint, S_IRUGO);
102 MODULE_PARM_DESC(max_srqs, "Maximum number of SRQs to support");
104 unsigned int ib_qib_max_srq_sges = 128;
105 module_param_named(max_srq_sges, ib_qib_max_srq_sges, uint, S_IRUGO);
106 MODULE_PARM_DESC(max_srq_sges, "Maximum number of SRQ SGEs to support");
108 unsigned int ib_qib_max_srq_wrs = 0x1FFFF;
109 module_param_named(max_srq_wrs, ib_qib_max_srq_wrs, uint, S_IRUGO);
110 MODULE_PARM_DESC(max_srq_wrs, "Maximum number of SRQ WRs support");
112 static unsigned int ib_qib_disable_sma;
113 module_param_named(disable_sma, ib_qib_disable_sma, uint, S_IWUSR | S_IRUGO);
114 MODULE_PARM_DESC(disable_sma, "Disable the SMA");
117 * Note that it is OK to post send work requests in the SQE and ERR
118 * states; qib_do_send() will process them and generate error
119 * completions as per IB 1.2 C10-96.
121 const int ib_qib_state_ops[IB_QPS_ERR + 1] = {
123 [IB_QPS_INIT] = QIB_POST_RECV_OK,
124 [IB_QPS_RTR] = QIB_POST_RECV_OK | QIB_PROCESS_RECV_OK,
125 [IB_QPS_RTS] = QIB_POST_RECV_OK | QIB_PROCESS_RECV_OK |
126 QIB_POST_SEND_OK | QIB_PROCESS_SEND_OK |
127 QIB_PROCESS_NEXT_SEND_OK,
128 [IB_QPS_SQD] = QIB_POST_RECV_OK | QIB_PROCESS_RECV_OK |
129 QIB_POST_SEND_OK | QIB_PROCESS_SEND_OK,
130 [IB_QPS_SQE] = QIB_POST_RECV_OK | QIB_PROCESS_RECV_OK |
131 QIB_POST_SEND_OK | QIB_FLUSH_SEND,
132 [IB_QPS_ERR] = QIB_POST_RECV_OK | QIB_FLUSH_RECV |
133 QIB_POST_SEND_OK | QIB_FLUSH_SEND,
136 struct qib_ucontext {
137 struct ib_ucontext ibucontext;
140 static inline struct qib_ucontext *to_iucontext(struct ib_ucontext
143 return container_of(ibucontext, struct qib_ucontext, ibucontext);
147 * Translate ib_wr_opcode into ib_wc_opcode.
149 const enum ib_wc_opcode ib_qib_wc_opcode[] = {
150 [IB_WR_RDMA_WRITE] = IB_WC_RDMA_WRITE,
151 [IB_WR_RDMA_WRITE_WITH_IMM] = IB_WC_RDMA_WRITE,
152 [IB_WR_SEND] = IB_WC_SEND,
153 [IB_WR_SEND_WITH_IMM] = IB_WC_SEND,
154 [IB_WR_RDMA_READ] = IB_WC_RDMA_READ,
155 [IB_WR_ATOMIC_CMP_AND_SWP] = IB_WC_COMP_SWAP,
156 [IB_WR_ATOMIC_FETCH_AND_ADD] = IB_WC_FETCH_ADD
162 __be64 ib_qib_sys_image_guid;
165 * qib_copy_sge - copy data to SGE memory
167 * @data: the data to copy
168 * @length: the length of the data
170 void qib_copy_sge(struct qib_sge_state *ss, void *data, u32 length, int release)
172 struct qib_sge *sge = &ss->sge;
175 u32 len = sge->length;
179 if (len > sge->sge_length)
180 len = sge->sge_length;
182 memcpy(sge->vaddr, data, len);
185 sge->sge_length -= len;
186 if (sge->sge_length == 0) {
190 *sge = *ss->sg_list++;
191 } else if (sge->length == 0 && sge->mr->lkey) {
192 if (++sge->n >= QIB_SEGSZ) {
193 if (++sge->m >= sge->mr->mapsz)
198 sge->mr->map[sge->m]->segs[sge->n].vaddr;
200 sge->mr->map[sge->m]->segs[sge->n].length;
208 * qib_skip_sge - skip over SGE memory - XXX almost dup of prev func
210 * @length: the number of bytes to skip
212 void qib_skip_sge(struct qib_sge_state *ss, u32 length, int release)
214 struct qib_sge *sge = &ss->sge;
217 u32 len = sge->length;
221 if (len > sge->sge_length)
222 len = sge->sge_length;
226 sge->sge_length -= len;
227 if (sge->sge_length == 0) {
231 *sge = *ss->sg_list++;
232 } else if (sge->length == 0 && sge->mr->lkey) {
233 if (++sge->n >= QIB_SEGSZ) {
234 if (++sge->m >= sge->mr->mapsz)
239 sge->mr->map[sge->m]->segs[sge->n].vaddr;
241 sge->mr->map[sge->m]->segs[sge->n].length;
248 * Count the number of DMA descriptors needed to send length bytes of data.
249 * Don't modify the qib_sge_state to get the count.
250 * Return zero if any of the segments is not aligned.
252 static u32 qib_count_sge(struct qib_sge_state *ss, u32 length)
254 struct qib_sge *sg_list = ss->sg_list;
255 struct qib_sge sge = ss->sge;
256 u8 num_sge = ss->num_sge;
257 u32 ndesc = 1; /* count the header */
260 u32 len = sge.length;
264 if (len > sge.sge_length)
265 len = sge.sge_length;
267 if (((long) sge.vaddr & (sizeof(u32) - 1)) ||
268 (len != length && (len & (sizeof(u32) - 1)))) {
275 sge.sge_length -= len;
276 if (sge.sge_length == 0) {
279 } else if (sge.length == 0 && sge.mr->lkey) {
280 if (++sge.n >= QIB_SEGSZ) {
281 if (++sge.m >= sge.mr->mapsz)
286 sge.mr->map[sge.m]->segs[sge.n].vaddr;
288 sge.mr->map[sge.m]->segs[sge.n].length;
296 * Copy from the SGEs to the data buffer.
298 static void qib_copy_from_sge(void *data, struct qib_sge_state *ss, u32 length)
300 struct qib_sge *sge = &ss->sge;
303 u32 len = sge->length;
307 if (len > sge->sge_length)
308 len = sge->sge_length;
310 memcpy(data, sge->vaddr, len);
313 sge->sge_length -= len;
314 if (sge->sge_length == 0) {
316 *sge = *ss->sg_list++;
317 } else if (sge->length == 0 && sge->mr->lkey) {
318 if (++sge->n >= QIB_SEGSZ) {
319 if (++sge->m >= sge->mr->mapsz)
324 sge->mr->map[sge->m]->segs[sge->n].vaddr;
326 sge->mr->map[sge->m]->segs[sge->n].length;
334 * qib_post_one_send - post one RC, UC, or UD send work request
335 * @qp: the QP to post on
336 * @wr: the work request to send
338 static int qib_post_one_send(struct qib_qp *qp, struct ib_send_wr *wr,
341 struct qib_swqe *wqe;
348 struct qib_lkey_table *rkt;
350 int avoid_schedule = 0;
352 spin_lock_irqsave(&qp->s_lock, flags);
354 /* Check that state is OK to post send. */
355 if (unlikely(!(ib_qib_state_ops[qp->state] & QIB_POST_SEND_OK)))
358 /* IB spec says that num_sge == 0 is OK. */
359 if (wr->num_sge > qp->s_max_sge)
363 * Don't allow RDMA reads or atomic operations on UC or
364 * undefined operations.
365 * Make sure buffer is large enough to hold the result for atomics.
367 if (wr->opcode == IB_WR_REG_MR) {
368 if (qib_reg_mr(qp, reg_wr(wr)))
370 } else if (qp->ibqp.qp_type == IB_QPT_UC) {
371 if ((unsigned) wr->opcode >= IB_WR_RDMA_READ)
373 } else if (qp->ibqp.qp_type != IB_QPT_RC) {
374 /* Check IB_QPT_SMI, IB_QPT_GSI, IB_QPT_UD opcode */
375 if (wr->opcode != IB_WR_SEND &&
376 wr->opcode != IB_WR_SEND_WITH_IMM)
378 /* Check UD destination address PD */
379 if (qp->ibqp.pd != ud_wr(wr)->ah->pd)
381 } else if ((unsigned) wr->opcode > IB_WR_ATOMIC_FETCH_AND_ADD)
383 else if (wr->opcode >= IB_WR_ATOMIC_CMP_AND_SWP &&
385 wr->sg_list[0].length < sizeof(u64) ||
386 wr->sg_list[0].addr & (sizeof(u64) - 1)))
388 else if (wr->opcode >= IB_WR_RDMA_READ && !qp->s_max_rd_atomic)
391 next = qp->s_head + 1;
392 if (next >= qp->s_size)
394 if (next == qp->s_last) {
399 rkt = &to_idev(qp->ibqp.device)->lk_table;
400 pd = ibpd_to_rvtpd(qp->ibqp.pd);
401 wqe = get_swqe_ptr(qp, qp->s_head);
403 if (qp->ibqp.qp_type != IB_QPT_UC &&
404 qp->ibqp.qp_type != IB_QPT_RC)
405 memcpy(&wqe->ud_wr, ud_wr(wr), sizeof(wqe->ud_wr));
406 else if (wr->opcode == IB_WR_REG_MR)
407 memcpy(&wqe->reg_wr, reg_wr(wr),
408 sizeof(wqe->reg_wr));
409 else if (wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM ||
410 wr->opcode == IB_WR_RDMA_WRITE ||
411 wr->opcode == IB_WR_RDMA_READ)
412 memcpy(&wqe->rdma_wr, rdma_wr(wr), sizeof(wqe->rdma_wr));
413 else if (wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP ||
414 wr->opcode == IB_WR_ATOMIC_FETCH_AND_ADD)
415 memcpy(&wqe->atomic_wr, atomic_wr(wr), sizeof(wqe->atomic_wr));
417 memcpy(&wqe->wr, wr, sizeof(wqe->wr));
422 acc = wr->opcode >= IB_WR_RDMA_READ ?
423 IB_ACCESS_LOCAL_WRITE : 0;
424 for (i = 0; i < wr->num_sge; i++) {
425 u32 length = wr->sg_list[i].length;
430 ok = qib_lkey_ok(rkt, pd, &wqe->sg_list[j],
431 &wr->sg_list[i], acc);
433 goto bail_inval_free;
434 wqe->length += length;
439 if (qp->ibqp.qp_type == IB_QPT_UC ||
440 qp->ibqp.qp_type == IB_QPT_RC) {
441 if (wqe->length > 0x80000000U)
442 goto bail_inval_free;
443 if (wqe->length <= qp->pmtu)
445 } else if (wqe->length > (dd_from_ibdev(qp->ibqp.device)->pport +
446 qp->port_num - 1)->ibmtu) {
447 goto bail_inval_free;
449 atomic_inc(&to_iah(ud_wr(wr)->ah)->refcount);
452 wqe->ssn = qp->s_ssn++;
460 struct qib_sge *sge = &wqe->sg_list[--j];
467 if (!ret && !wr->next && !avoid_schedule &&
469 dd_from_ibdev(qp->ibqp.device)->pport + qp->port_num - 1)) {
470 qib_schedule_send(qp);
473 spin_unlock_irqrestore(&qp->s_lock, flags);
478 * qib_post_send - post a send on a QP
479 * @ibqp: the QP to post the send on
480 * @wr: the list of work requests to post
481 * @bad_wr: the first bad WR is put here
483 * This may be called from interrupt context.
485 static int qib_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
486 struct ib_send_wr **bad_wr)
488 struct qib_qp *qp = to_iqp(ibqp);
489 struct qib_qp_priv *priv = qp->priv;
493 for (; wr; wr = wr->next) {
494 err = qib_post_one_send(qp, wr, &scheduled);
501 /* Try to do the send work in the caller's context. */
503 qib_do_send(&priv->s_work);
510 * qib_post_receive - post a receive on a QP
511 * @ibqp: the QP to post the receive on
512 * @wr: the WR to post
513 * @bad_wr: the first bad WR is put here
515 * This may be called from interrupt context.
517 static int qib_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
518 struct ib_recv_wr **bad_wr)
520 struct qib_qp *qp = to_iqp(ibqp);
521 struct qib_rwq *wq = qp->r_rq.wq;
525 /* Check that state is OK to post receive. */
526 if (!(ib_qib_state_ops[qp->state] & QIB_POST_RECV_OK) || !wq) {
532 for (; wr; wr = wr->next) {
533 struct qib_rwqe *wqe;
537 if ((unsigned) wr->num_sge > qp->r_rq.max_sge) {
543 spin_lock_irqsave(&qp->r_rq.lock, flags);
545 if (next >= qp->r_rq.size)
547 if (next == wq->tail) {
548 spin_unlock_irqrestore(&qp->r_rq.lock, flags);
554 wqe = get_rwqe_ptr(&qp->r_rq, wq->head);
555 wqe->wr_id = wr->wr_id;
556 wqe->num_sge = wr->num_sge;
557 for (i = 0; i < wr->num_sge; i++)
558 wqe->sg_list[i] = wr->sg_list[i];
559 /* Make sure queue entry is written before the head index. */
562 spin_unlock_irqrestore(&qp->r_rq.lock, flags);
571 * qib_qp_rcv - processing an incoming packet on a QP
572 * @rcd: the context pointer
573 * @hdr: the packet header
574 * @has_grh: true if the packet has a GRH
575 * @data: the packet data
576 * @tlen: the packet length
577 * @qp: the QP the packet came on
579 * This is called from qib_ib_rcv() to process an incoming packet
581 * Called at interrupt level.
583 static void qib_qp_rcv(struct qib_ctxtdata *rcd, struct qib_ib_header *hdr,
584 int has_grh, void *data, u32 tlen, struct qib_qp *qp)
586 struct qib_ibport *ibp = &rcd->ppd->ibport_data;
588 spin_lock(&qp->r_lock);
590 /* Check for valid receive state. */
591 if (!(ib_qib_state_ops[qp->state] & QIB_PROCESS_RECV_OK)) {
596 switch (qp->ibqp.qp_type) {
599 if (ib_qib_disable_sma)
603 qib_ud_rcv(ibp, hdr, has_grh, data, tlen, qp);
607 qib_rc_rcv(rcd, hdr, has_grh, data, tlen, qp);
611 qib_uc_rcv(ibp, hdr, has_grh, data, tlen, qp);
619 spin_unlock(&qp->r_lock);
623 * qib_ib_rcv - process an incoming packet
624 * @rcd: the context pointer
625 * @rhdr: the header of the packet
626 * @data: the packet payload
627 * @tlen: the packet length
629 * This is called from qib_kreceive() to process an incoming packet at
630 * interrupt level. Tlen is the length of the header + data + CRC in bytes.
632 void qib_ib_rcv(struct qib_ctxtdata *rcd, void *rhdr, void *data, u32 tlen)
634 struct qib_pportdata *ppd = rcd->ppd;
635 struct qib_ibport *ibp = &ppd->ibport_data;
636 struct qib_ib_header *hdr = rhdr;
637 struct qib_other_headers *ohdr;
644 /* 24 == LRH+BTH+CRC */
645 if (unlikely(tlen < 24))
648 /* Check for a valid destination LID (see ch. 7.11.1). */
649 lid = be16_to_cpu(hdr->lrh[1]);
650 if (lid < be16_to_cpu(IB_MULTICAST_LID_BASE)) {
651 lid &= ~((1 << ppd->lmc) - 1);
652 if (unlikely(lid != ppd->lid))
657 lnh = be16_to_cpu(hdr->lrh[0]) & 3;
658 if (lnh == QIB_LRH_BTH)
660 else if (lnh == QIB_LRH_GRH) {
663 ohdr = &hdr->u.l.oth;
664 if (hdr->u.l.grh.next_hdr != IB_GRH_NEXT_HDR)
666 vtf = be32_to_cpu(hdr->u.l.grh.version_tclass_flow);
667 if ((vtf >> IB_GRH_VERSION_SHIFT) != IB_GRH_VERSION)
672 opcode = (be32_to_cpu(ohdr->bth[0]) >> 24) & 0x7f;
673 #ifdef CONFIG_DEBUG_FS
674 rcd->opstats->stats[opcode].n_bytes += tlen;
675 rcd->opstats->stats[opcode].n_packets++;
678 /* Get the destination QP number. */
679 qp_num = be32_to_cpu(ohdr->bth[1]) & QIB_QPN_MASK;
680 if (qp_num == QIB_MULTICAST_QPN) {
681 struct qib_mcast *mcast;
682 struct qib_mcast_qp *p;
684 if (lnh != QIB_LRH_GRH)
686 mcast = qib_mcast_find(ibp, &hdr->u.l.grh.dgid);
689 this_cpu_inc(ibp->pmastats->n_multicast_rcv);
690 list_for_each_entry_rcu(p, &mcast->qp_list, list)
691 qib_qp_rcv(rcd, hdr, 1, data, tlen, p->qp);
693 * Notify qib_multicast_detach() if it is waiting for us
696 if (atomic_dec_return(&mcast->refcount) <= 1)
697 wake_up(&mcast->wait);
699 if (rcd->lookaside_qp) {
700 if (rcd->lookaside_qpn != qp_num) {
701 if (atomic_dec_and_test(
702 &rcd->lookaside_qp->refcount))
704 &rcd->lookaside_qp->wait);
705 rcd->lookaside_qp = NULL;
708 if (!rcd->lookaside_qp) {
709 qp = qib_lookup_qpn(ibp, qp_num);
712 rcd->lookaside_qp = qp;
713 rcd->lookaside_qpn = qp_num;
715 qp = rcd->lookaside_qp;
716 this_cpu_inc(ibp->pmastats->n_unicast_rcv);
717 qib_qp_rcv(rcd, hdr, lnh == QIB_LRH_GRH, data, tlen, qp);
726 * This is called from a timer to check for QPs
727 * which need kernel memory in order to send a packet.
729 static void mem_timer(unsigned long data)
731 struct qib_ibdev *dev = (struct qib_ibdev *) data;
732 struct list_head *list = &dev->memwait;
733 struct qib_qp *qp = NULL;
734 struct qib_qp_priv *priv = NULL;
737 spin_lock_irqsave(&dev->pending_lock, flags);
738 if (!list_empty(list)) {
739 priv = list_entry(list->next, struct qib_qp_priv, iowait);
741 list_del_init(&priv->iowait);
742 atomic_inc(&qp->refcount);
743 if (!list_empty(list))
744 mod_timer(&dev->mem_timer, jiffies + 1);
746 spin_unlock_irqrestore(&dev->pending_lock, flags);
749 spin_lock_irqsave(&qp->s_lock, flags);
750 if (qp->s_flags & QIB_S_WAIT_KMEM) {
751 qp->s_flags &= ~QIB_S_WAIT_KMEM;
752 qib_schedule_send(qp);
754 spin_unlock_irqrestore(&qp->s_lock, flags);
755 if (atomic_dec_and_test(&qp->refcount))
760 static void update_sge(struct qib_sge_state *ss, u32 length)
762 struct qib_sge *sge = &ss->sge;
764 sge->vaddr += length;
765 sge->length -= length;
766 sge->sge_length -= length;
767 if (sge->sge_length == 0) {
769 *sge = *ss->sg_list++;
770 } else if (sge->length == 0 && sge->mr->lkey) {
771 if (++sge->n >= QIB_SEGSZ) {
772 if (++sge->m >= sge->mr->mapsz)
776 sge->vaddr = sge->mr->map[sge->m]->segs[sge->n].vaddr;
777 sge->length = sge->mr->map[sge->m]->segs[sge->n].length;
781 #ifdef __LITTLE_ENDIAN
782 static inline u32 get_upper_bits(u32 data, u32 shift)
784 return data >> shift;
787 static inline u32 set_upper_bits(u32 data, u32 shift)
789 return data << shift;
792 static inline u32 clear_upper_bytes(u32 data, u32 n, u32 off)
794 data <<= ((sizeof(u32) - n) * BITS_PER_BYTE);
795 data >>= ((sizeof(u32) - n - off) * BITS_PER_BYTE);
799 static inline u32 get_upper_bits(u32 data, u32 shift)
801 return data << shift;
804 static inline u32 set_upper_bits(u32 data, u32 shift)
806 return data >> shift;
809 static inline u32 clear_upper_bytes(u32 data, u32 n, u32 off)
811 data >>= ((sizeof(u32) - n) * BITS_PER_BYTE);
812 data <<= ((sizeof(u32) - n - off) * BITS_PER_BYTE);
817 static void copy_io(u32 __iomem *piobuf, struct qib_sge_state *ss,
818 u32 length, unsigned flush_wc)
825 u32 len = ss->sge.length;
830 if (len > ss->sge.sge_length)
831 len = ss->sge.sge_length;
833 /* If the source address is not aligned, try to align it. */
834 off = (unsigned long)ss->sge.vaddr & (sizeof(u32) - 1);
836 u32 *addr = (u32 *)((unsigned long)ss->sge.vaddr &
838 u32 v = get_upper_bits(*addr, off * BITS_PER_BYTE);
841 y = sizeof(u32) - off;
844 if (len + extra >= sizeof(u32)) {
845 data |= set_upper_bits(v, extra *
847 len = sizeof(u32) - extra;
852 __raw_writel(data, piobuf);
857 /* Clear unused upper bytes */
858 data |= clear_upper_bytes(v, len, extra);
866 /* Source address is aligned. */
867 u32 *addr = (u32 *) ss->sge.vaddr;
868 int shift = extra * BITS_PER_BYTE;
869 int ushift = 32 - shift;
872 while (l >= sizeof(u32)) {
875 data |= set_upper_bits(v, shift);
876 __raw_writel(data, piobuf);
877 data = get_upper_bits(v, ushift);
883 * We still have 'extra' number of bytes leftover.
888 if (l + extra >= sizeof(u32)) {
889 data |= set_upper_bits(v, shift);
890 len -= l + extra - sizeof(u32);
895 __raw_writel(data, piobuf);
900 /* Clear unused upper bytes */
901 data |= clear_upper_bytes(v, l, extra);
908 } else if (len == length) {
912 } else if (len == length) {
916 * Need to round up for the last dword in the
920 qib_pio_copy(piobuf, ss->sge.vaddr, w - 1);
922 last = ((u32 *) ss->sge.vaddr)[w - 1];
927 qib_pio_copy(piobuf, ss->sge.vaddr, w);
930 extra = len & (sizeof(u32) - 1);
932 u32 v = ((u32 *) ss->sge.vaddr)[w];
934 /* Clear unused upper bytes */
935 data = clear_upper_bytes(v, extra, 0);
941 /* Update address before sending packet. */
942 update_sge(ss, length);
944 /* must flush early everything before trigger word */
946 __raw_writel(last, piobuf);
947 /* be sure trigger word is written */
950 __raw_writel(last, piobuf);
953 static noinline struct qib_verbs_txreq *__get_txreq(struct qib_ibdev *dev,
956 struct qib_qp_priv *priv = qp->priv;
957 struct qib_verbs_txreq *tx;
960 spin_lock_irqsave(&qp->s_lock, flags);
961 spin_lock(&dev->pending_lock);
963 if (!list_empty(&dev->txreq_free)) {
964 struct list_head *l = dev->txreq_free.next;
967 spin_unlock(&dev->pending_lock);
968 spin_unlock_irqrestore(&qp->s_lock, flags);
969 tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
971 if (ib_qib_state_ops[qp->state] & QIB_PROCESS_RECV_OK &&
972 list_empty(&priv->iowait)) {
974 qp->s_flags |= QIB_S_WAIT_TX;
975 list_add_tail(&priv->iowait, &dev->txwait);
977 qp->s_flags &= ~QIB_S_BUSY;
978 spin_unlock(&dev->pending_lock);
979 spin_unlock_irqrestore(&qp->s_lock, flags);
980 tx = ERR_PTR(-EBUSY);
985 static inline struct qib_verbs_txreq *get_txreq(struct qib_ibdev *dev,
988 struct qib_verbs_txreq *tx;
991 spin_lock_irqsave(&dev->pending_lock, flags);
992 /* assume the list non empty */
993 if (likely(!list_empty(&dev->txreq_free))) {
994 struct list_head *l = dev->txreq_free.next;
997 spin_unlock_irqrestore(&dev->pending_lock, flags);
998 tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
1000 /* call slow path to get the extra lock */
1001 spin_unlock_irqrestore(&dev->pending_lock, flags);
1002 tx = __get_txreq(dev, qp);
1007 void qib_put_txreq(struct qib_verbs_txreq *tx)
1009 struct qib_ibdev *dev;
1011 struct qib_qp_priv *priv;
1012 unsigned long flags;
1015 dev = to_idev(qp->ibqp.device);
1017 if (atomic_dec_and_test(&qp->refcount))
1023 if (tx->txreq.flags & QIB_SDMA_TXREQ_F_FREEBUF) {
1024 tx->txreq.flags &= ~QIB_SDMA_TXREQ_F_FREEBUF;
1025 dma_unmap_single(&dd_from_dev(dev)->pcidev->dev,
1026 tx->txreq.addr, tx->hdr_dwords << 2,
1028 kfree(tx->align_buf);
1031 spin_lock_irqsave(&dev->pending_lock, flags);
1033 /* Put struct back on free list */
1034 list_add(&tx->txreq.list, &dev->txreq_free);
1036 if (!list_empty(&dev->txwait)) {
1037 /* Wake up first QP wanting a free struct */
1038 priv = list_entry(dev->txwait.next, struct qib_qp_priv,
1041 list_del_init(&priv->iowait);
1042 atomic_inc(&qp->refcount);
1043 spin_unlock_irqrestore(&dev->pending_lock, flags);
1045 spin_lock_irqsave(&qp->s_lock, flags);
1046 if (qp->s_flags & QIB_S_WAIT_TX) {
1047 qp->s_flags &= ~QIB_S_WAIT_TX;
1048 qib_schedule_send(qp);
1050 spin_unlock_irqrestore(&qp->s_lock, flags);
1052 if (atomic_dec_and_test(&qp->refcount))
1055 spin_unlock_irqrestore(&dev->pending_lock, flags);
1059 * This is called when there are send DMA descriptors that might be
1062 * This is called with ppd->sdma_lock held.
1064 void qib_verbs_sdma_desc_avail(struct qib_pportdata *ppd, unsigned avail)
1066 struct qib_qp *qp, *nqp;
1067 struct qib_qp_priv *qpp, *nqpp;
1068 struct qib_qp *qps[20];
1069 struct qib_ibdev *dev;
1073 dev = &ppd->dd->verbs_dev;
1074 spin_lock(&dev->pending_lock);
1076 /* Search wait list for first QP wanting DMA descriptors. */
1077 list_for_each_entry_safe(qpp, nqpp, &dev->dmawait, iowait) {
1080 if (qp->port_num != ppd->port)
1082 if (n == ARRAY_SIZE(qps))
1084 if (qpp->s_tx->txreq.sg_count > avail)
1086 avail -= qpp->s_tx->txreq.sg_count;
1087 list_del_init(&qpp->iowait);
1088 atomic_inc(&qp->refcount);
1092 spin_unlock(&dev->pending_lock);
1094 for (i = 0; i < n; i++) {
1096 spin_lock(&qp->s_lock);
1097 if (qp->s_flags & QIB_S_WAIT_DMA_DESC) {
1098 qp->s_flags &= ~QIB_S_WAIT_DMA_DESC;
1099 qib_schedule_send(qp);
1101 spin_unlock(&qp->s_lock);
1102 if (atomic_dec_and_test(&qp->refcount))
1108 * This is called with ppd->sdma_lock held.
1110 static void sdma_complete(struct qib_sdma_txreq *cookie, int status)
1112 struct qib_verbs_txreq *tx =
1113 container_of(cookie, struct qib_verbs_txreq, txreq);
1114 struct qib_qp *qp = tx->qp;
1115 struct qib_qp_priv *priv = qp->priv;
1117 spin_lock(&qp->s_lock);
1119 qib_send_complete(qp, tx->wqe, IB_WC_SUCCESS);
1120 else if (qp->ibqp.qp_type == IB_QPT_RC) {
1121 struct qib_ib_header *hdr;
1123 if (tx->txreq.flags & QIB_SDMA_TXREQ_F_FREEBUF)
1124 hdr = &tx->align_buf->hdr;
1126 struct qib_ibdev *dev = to_idev(qp->ibqp.device);
1128 hdr = &dev->pio_hdrs[tx->hdr_inx].hdr;
1130 qib_rc_send_complete(qp, hdr);
1132 if (atomic_dec_and_test(&priv->s_dma_busy)) {
1133 if (qp->state == IB_QPS_RESET)
1134 wake_up(&priv->wait_dma);
1135 else if (qp->s_flags & QIB_S_WAIT_DMA) {
1136 qp->s_flags &= ~QIB_S_WAIT_DMA;
1137 qib_schedule_send(qp);
1140 spin_unlock(&qp->s_lock);
1145 static int wait_kmem(struct qib_ibdev *dev, struct qib_qp *qp)
1147 struct qib_qp_priv *priv = qp->priv;
1148 unsigned long flags;
1151 spin_lock_irqsave(&qp->s_lock, flags);
1152 if (ib_qib_state_ops[qp->state] & QIB_PROCESS_RECV_OK) {
1153 spin_lock(&dev->pending_lock);
1154 if (list_empty(&priv->iowait)) {
1155 if (list_empty(&dev->memwait))
1156 mod_timer(&dev->mem_timer, jiffies + 1);
1157 qp->s_flags |= QIB_S_WAIT_KMEM;
1158 list_add_tail(&priv->iowait, &dev->memwait);
1160 spin_unlock(&dev->pending_lock);
1161 qp->s_flags &= ~QIB_S_BUSY;
1164 spin_unlock_irqrestore(&qp->s_lock, flags);
1169 static int qib_verbs_send_dma(struct qib_qp *qp, struct qib_ib_header *hdr,
1170 u32 hdrwords, struct qib_sge_state *ss, u32 len,
1171 u32 plen, u32 dwords)
1173 struct qib_qp_priv *priv = qp->priv;
1174 struct qib_ibdev *dev = to_idev(qp->ibqp.device);
1175 struct qib_devdata *dd = dd_from_dev(dev);
1176 struct qib_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
1177 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1178 struct qib_verbs_txreq *tx;
1179 struct qib_pio_header *phdr;
1187 /* resend previously constructed packet */
1188 ret = qib_sdma_verbs_send(ppd, tx->ss, tx->dwords, tx);
1192 tx = get_txreq(dev, qp);
1196 control = dd->f_setpbc_control(ppd, plen, qp->s_srate,
1197 be16_to_cpu(hdr->lrh[0]) >> 12);
1199 atomic_inc(&qp->refcount);
1200 tx->wqe = qp->s_wqe;
1201 tx->mr = qp->s_rdma_mr;
1203 qp->s_rdma_mr = NULL;
1204 tx->txreq.callback = sdma_complete;
1205 if (dd->flags & QIB_HAS_SDMA_TIMEOUT)
1206 tx->txreq.flags = QIB_SDMA_TXREQ_F_HEADTOHOST;
1208 tx->txreq.flags = QIB_SDMA_TXREQ_F_INTREQ;
1209 if (plen + 1 > dd->piosize2kmax_dwords)
1210 tx->txreq.flags |= QIB_SDMA_TXREQ_F_USELARGEBUF;
1214 * Don't try to DMA if it takes more descriptors than
1217 ndesc = qib_count_sge(ss, len);
1218 if (ndesc >= ppd->sdma_descq_cnt)
1223 phdr = &dev->pio_hdrs[tx->hdr_inx];
1224 phdr->pbc[0] = cpu_to_le32(plen);
1225 phdr->pbc[1] = cpu_to_le32(control);
1226 memcpy(&phdr->hdr, hdr, hdrwords << 2);
1227 tx->txreq.flags |= QIB_SDMA_TXREQ_F_FREEDESC;
1228 tx->txreq.sg_count = ndesc;
1229 tx->txreq.addr = dev->pio_hdrs_phys +
1230 tx->hdr_inx * sizeof(struct qib_pio_header);
1231 tx->hdr_dwords = hdrwords + 2; /* add PBC length */
1232 ret = qib_sdma_verbs_send(ppd, ss, dwords, tx);
1236 /* Allocate a buffer and copy the header and payload to it. */
1237 tx->hdr_dwords = plen + 1;
1238 phdr = kmalloc(tx->hdr_dwords << 2, GFP_ATOMIC);
1241 phdr->pbc[0] = cpu_to_le32(plen);
1242 phdr->pbc[1] = cpu_to_le32(control);
1243 memcpy(&phdr->hdr, hdr, hdrwords << 2);
1244 qib_copy_from_sge((u32 *) &phdr->hdr + hdrwords, ss, len);
1246 tx->txreq.addr = dma_map_single(&dd->pcidev->dev, phdr,
1247 tx->hdr_dwords << 2, DMA_TO_DEVICE);
1248 if (dma_mapping_error(&dd->pcidev->dev, tx->txreq.addr))
1250 tx->align_buf = phdr;
1251 tx->txreq.flags |= QIB_SDMA_TXREQ_F_FREEBUF;
1252 tx->txreq.sg_count = 1;
1253 ret = qib_sdma_verbs_send(ppd, NULL, 0, tx);
1260 ret = wait_kmem(dev, qp);
1271 * If we are now in the error state, return zero to flush the
1272 * send work request.
1274 static int no_bufs_available(struct qib_qp *qp)
1276 struct qib_qp_priv *priv = qp->priv;
1277 struct qib_ibdev *dev = to_idev(qp->ibqp.device);
1278 struct qib_devdata *dd;
1279 unsigned long flags;
1283 * Note that as soon as want_buffer() is called and
1284 * possibly before it returns, qib_ib_piobufavail()
1285 * could be called. Therefore, put QP on the I/O wait list before
1286 * enabling the PIO avail interrupt.
1288 spin_lock_irqsave(&qp->s_lock, flags);
1289 if (ib_qib_state_ops[qp->state] & QIB_PROCESS_RECV_OK) {
1290 spin_lock(&dev->pending_lock);
1291 if (list_empty(&priv->iowait)) {
1293 qp->s_flags |= QIB_S_WAIT_PIO;
1294 list_add_tail(&priv->iowait, &dev->piowait);
1295 dd = dd_from_dev(dev);
1296 dd->f_wantpiobuf_intr(dd, 1);
1298 spin_unlock(&dev->pending_lock);
1299 qp->s_flags &= ~QIB_S_BUSY;
1302 spin_unlock_irqrestore(&qp->s_lock, flags);
1306 static int qib_verbs_send_pio(struct qib_qp *qp, struct qib_ib_header *ibhdr,
1307 u32 hdrwords, struct qib_sge_state *ss, u32 len,
1308 u32 plen, u32 dwords)
1310 struct qib_devdata *dd = dd_from_ibdev(qp->ibqp.device);
1311 struct qib_pportdata *ppd = dd->pport + qp->port_num - 1;
1312 u32 *hdr = (u32 *) ibhdr;
1313 u32 __iomem *piobuf_orig;
1314 u32 __iomem *piobuf;
1316 unsigned long flags;
1321 control = dd->f_setpbc_control(ppd, plen, qp->s_srate,
1322 be16_to_cpu(ibhdr->lrh[0]) >> 12);
1323 pbc = ((u64) control << 32) | plen;
1324 piobuf = dd->f_getsendbuf(ppd, pbc, &pbufn);
1325 if (unlikely(piobuf == NULL))
1326 return no_bufs_available(qp);
1330 * We have to flush after the PBC for correctness on some cpus
1331 * or WC buffer can be written out of order.
1333 writeq(pbc, piobuf);
1334 piobuf_orig = piobuf;
1337 flush_wc = dd->flags & QIB_PIO_FLUSH_WC;
1340 * If there is just the header portion, must flush before
1341 * writing last word of header for correctness, and after
1342 * the last header word (trigger word).
1346 qib_pio_copy(piobuf, hdr, hdrwords - 1);
1348 __raw_writel(hdr[hdrwords - 1], piobuf + hdrwords - 1);
1351 qib_pio_copy(piobuf, hdr, hdrwords);
1357 qib_pio_copy(piobuf, hdr, hdrwords);
1360 /* The common case is aligned and contained in one segment. */
1361 if (likely(ss->num_sge == 1 && len <= ss->sge.length &&
1362 !((unsigned long)ss->sge.vaddr & (sizeof(u32) - 1)))) {
1363 u32 *addr = (u32 *) ss->sge.vaddr;
1365 /* Update address before sending packet. */
1366 update_sge(ss, len);
1368 qib_pio_copy(piobuf, addr, dwords - 1);
1369 /* must flush early everything before trigger word */
1371 __raw_writel(addr[dwords - 1], piobuf + dwords - 1);
1372 /* be sure trigger word is written */
1375 qib_pio_copy(piobuf, addr, dwords);
1378 copy_io(piobuf, ss, len, flush_wc);
1380 if (dd->flags & QIB_USE_SPCL_TRIG) {
1381 u32 spcl_off = (pbufn >= dd->piobcnt2k) ? 2047 : 1023;
1384 __raw_writel(0xaebecede, piobuf_orig + spcl_off);
1386 qib_sendbuf_done(dd, pbufn);
1387 if (qp->s_rdma_mr) {
1388 qib_put_mr(qp->s_rdma_mr);
1389 qp->s_rdma_mr = NULL;
1392 spin_lock_irqsave(&qp->s_lock, flags);
1393 qib_send_complete(qp, qp->s_wqe, IB_WC_SUCCESS);
1394 spin_unlock_irqrestore(&qp->s_lock, flags);
1395 } else if (qp->ibqp.qp_type == IB_QPT_RC) {
1396 spin_lock_irqsave(&qp->s_lock, flags);
1397 qib_rc_send_complete(qp, ibhdr);
1398 spin_unlock_irqrestore(&qp->s_lock, flags);
1404 * qib_verbs_send - send a packet
1405 * @qp: the QP to send on
1406 * @hdr: the packet header
1407 * @hdrwords: the number of 32-bit words in the header
1408 * @ss: the SGE to send
1409 * @len: the length of the packet in bytes
1411 * Return zero if packet is sent or queued OK.
1412 * Return non-zero and clear qp->s_flags QIB_S_BUSY otherwise.
1414 int qib_verbs_send(struct qib_qp *qp, struct qib_ib_header *hdr,
1415 u32 hdrwords, struct qib_sge_state *ss, u32 len)
1417 struct qib_devdata *dd = dd_from_ibdev(qp->ibqp.device);
1420 u32 dwords = (len + 3) >> 2;
1423 * Calculate the send buffer trigger address.
1424 * The +1 counts for the pbc control dword following the pbc length.
1426 plen = hdrwords + dwords + 1;
1429 * VL15 packets (IB_QPT_SMI) will always use PIO, so we
1430 * can defer SDMA restart until link goes ACTIVE without
1431 * worrying about just how we got there.
1433 if (qp->ibqp.qp_type == IB_QPT_SMI ||
1434 !(dd->flags & QIB_HAS_SEND_DMA))
1435 ret = qib_verbs_send_pio(qp, hdr, hdrwords, ss, len,
1438 ret = qib_verbs_send_dma(qp, hdr, hdrwords, ss, len,
1444 int qib_snapshot_counters(struct qib_pportdata *ppd, u64 *swords,
1445 u64 *rwords, u64 *spkts, u64 *rpkts,
1449 struct qib_devdata *dd = ppd->dd;
1451 if (!(dd->flags & QIB_PRESENT)) {
1452 /* no hardware, freeze, etc. */
1456 *swords = dd->f_portcntr(ppd, QIBPORTCNTR_WORDSEND);
1457 *rwords = dd->f_portcntr(ppd, QIBPORTCNTR_WORDRCV);
1458 *spkts = dd->f_portcntr(ppd, QIBPORTCNTR_PKTSEND);
1459 *rpkts = dd->f_portcntr(ppd, QIBPORTCNTR_PKTRCV);
1460 *xmit_wait = dd->f_portcntr(ppd, QIBPORTCNTR_SENDSTALL);
1469 * qib_get_counters - get various chip counters
1470 * @dd: the qlogic_ib device
1471 * @cntrs: counters are placed here
1473 * Return the counters needed by recv_pma_get_portcounters().
1475 int qib_get_counters(struct qib_pportdata *ppd,
1476 struct qib_verbs_counters *cntrs)
1480 if (!(ppd->dd->flags & QIB_PRESENT)) {
1481 /* no hardware, freeze, etc. */
1485 cntrs->symbol_error_counter =
1486 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_IBSYMBOLERR);
1487 cntrs->link_error_recovery_counter =
1488 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_IBLINKERRRECOV);
1490 * The link downed counter counts when the other side downs the
1491 * connection. We add in the number of times we downed the link
1492 * due to local link integrity errors to compensate.
1494 cntrs->link_downed_counter =
1495 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_IBLINKDOWN);
1496 cntrs->port_rcv_errors =
1497 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RXDROPPKT) +
1498 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RCVOVFL) +
1499 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERR_RLEN) +
1500 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_INVALIDRLEN) +
1501 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRLINK) +
1502 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRICRC) +
1503 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRVCRC) +
1504 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRLPCRC) +
1505 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_BADFORMAT);
1506 cntrs->port_rcv_errors +=
1507 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RXLOCALPHYERR);
1508 cntrs->port_rcv_errors +=
1509 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RXVLERR);
1510 cntrs->port_rcv_remphys_errors =
1511 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RCVEBP);
1512 cntrs->port_xmit_discards =
1513 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_UNSUPVL);
1514 cntrs->port_xmit_data = ppd->dd->f_portcntr(ppd,
1515 QIBPORTCNTR_WORDSEND);
1516 cntrs->port_rcv_data = ppd->dd->f_portcntr(ppd,
1517 QIBPORTCNTR_WORDRCV);
1518 cntrs->port_xmit_packets = ppd->dd->f_portcntr(ppd,
1519 QIBPORTCNTR_PKTSEND);
1520 cntrs->port_rcv_packets = ppd->dd->f_portcntr(ppd,
1521 QIBPORTCNTR_PKTRCV);
1522 cntrs->local_link_integrity_errors =
1523 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_LLI);
1524 cntrs->excessive_buffer_overrun_errors =
1525 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_EXCESSBUFOVFL);
1526 cntrs->vl15_dropped =
1527 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_VL15PKTDROP);
1536 * qib_ib_piobufavail - callback when a PIO buffer is available
1537 * @dd: the device pointer
1539 * This is called from qib_intr() at interrupt level when a PIO buffer is
1540 * available after qib_verbs_send() returned an error that no buffers were
1541 * available. Disable the interrupt if there are no more QPs waiting.
1543 void qib_ib_piobufavail(struct qib_devdata *dd)
1545 struct qib_ibdev *dev = &dd->verbs_dev;
1546 struct list_head *list;
1547 struct qib_qp *qps[5];
1549 unsigned long flags;
1551 struct qib_qp_priv *priv;
1553 list = &dev->piowait;
1557 * Note: checking that the piowait list is empty and clearing
1558 * the buffer available interrupt needs to be atomic or we
1559 * could end up with QPs on the wait list with the interrupt
1562 spin_lock_irqsave(&dev->pending_lock, flags);
1563 while (!list_empty(list)) {
1564 if (n == ARRAY_SIZE(qps))
1566 priv = list_entry(list->next, struct qib_qp_priv, iowait);
1568 list_del_init(&priv->iowait);
1569 atomic_inc(&qp->refcount);
1572 dd->f_wantpiobuf_intr(dd, 0);
1574 spin_unlock_irqrestore(&dev->pending_lock, flags);
1576 for (i = 0; i < n; i++) {
1579 spin_lock_irqsave(&qp->s_lock, flags);
1580 if (qp->s_flags & QIB_S_WAIT_PIO) {
1581 qp->s_flags &= ~QIB_S_WAIT_PIO;
1582 qib_schedule_send(qp);
1584 spin_unlock_irqrestore(&qp->s_lock, flags);
1586 /* Notify qib_destroy_qp() if it is waiting. */
1587 if (atomic_dec_and_test(&qp->refcount))
1592 static int qib_query_device(struct ib_device *ibdev, struct ib_device_attr *props,
1593 struct ib_udata *uhw)
1595 struct qib_devdata *dd = dd_from_ibdev(ibdev);
1596 struct qib_ibdev *dev = to_idev(ibdev);
1598 if (uhw->inlen || uhw->outlen)
1600 memset(props, 0, sizeof(*props));
1602 props->device_cap_flags = IB_DEVICE_BAD_PKEY_CNTR |
1603 IB_DEVICE_BAD_QKEY_CNTR | IB_DEVICE_SHUTDOWN_PORT |
1604 IB_DEVICE_SYS_IMAGE_GUID | IB_DEVICE_RC_RNR_NAK_GEN |
1605 IB_DEVICE_PORT_ACTIVE_EVENT | IB_DEVICE_SRQ_RESIZE;
1606 props->page_size_cap = PAGE_SIZE;
1608 QIB_SRC_OUI_1 << 16 | QIB_SRC_OUI_2 << 8 | QIB_SRC_OUI_3;
1609 props->vendor_part_id = dd->deviceid;
1610 props->hw_ver = dd->minrev;
1611 props->sys_image_guid = ib_qib_sys_image_guid;
1612 props->max_mr_size = ~0ULL;
1613 props->max_qp = ib_qib_max_qps;
1614 props->max_qp_wr = ib_qib_max_qp_wrs;
1615 props->max_sge = ib_qib_max_sges;
1616 props->max_sge_rd = ib_qib_max_sges;
1617 props->max_cq = ib_qib_max_cqs;
1618 props->max_ah = ib_qib_max_ahs;
1619 props->max_cqe = ib_qib_max_cqes;
1620 props->max_mr = dev->lk_table.max;
1621 props->max_fmr = dev->lk_table.max;
1622 props->max_map_per_fmr = 32767;
1623 props->max_pd = dev->rdi.dparms.props.max_pd;
1624 props->max_qp_rd_atom = QIB_MAX_RDMA_ATOMIC;
1625 props->max_qp_init_rd_atom = 255;
1626 /* props->max_res_rd_atom */
1627 props->max_srq = ib_qib_max_srqs;
1628 props->max_srq_wr = ib_qib_max_srq_wrs;
1629 props->max_srq_sge = ib_qib_max_srq_sges;
1630 /* props->local_ca_ack_delay */
1631 props->atomic_cap = IB_ATOMIC_GLOB;
1632 props->max_pkeys = qib_get_npkeys(dd);
1633 props->max_mcast_grp = ib_qib_max_mcast_grps;
1634 props->max_mcast_qp_attach = ib_qib_max_mcast_qp_attached;
1635 props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
1636 props->max_mcast_grp;
1641 static int qib_query_port(struct ib_device *ibdev, u8 port,
1642 struct ib_port_attr *props)
1644 struct qib_devdata *dd = dd_from_ibdev(ibdev);
1645 struct qib_ibport *ibp = to_iport(ibdev, port);
1646 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1650 memset(props, 0, sizeof(*props));
1651 props->lid = lid ? lid : be16_to_cpu(IB_LID_PERMISSIVE);
1652 props->lmc = ppd->lmc;
1653 props->sm_lid = ibp->sm_lid;
1654 props->sm_sl = ibp->sm_sl;
1655 props->state = dd->f_iblink_state(ppd->lastibcstat);
1656 props->phys_state = dd->f_ibphys_portstate(ppd->lastibcstat);
1657 props->port_cap_flags = ibp->port_cap_flags;
1658 props->gid_tbl_len = QIB_GUIDS_PER_PORT;
1659 props->max_msg_sz = 0x80000000;
1660 props->pkey_tbl_len = qib_get_npkeys(dd);
1661 props->bad_pkey_cntr = ibp->pkey_violations;
1662 props->qkey_viol_cntr = ibp->qkey_violations;
1663 props->active_width = ppd->link_width_active;
1664 /* See rate_show() */
1665 props->active_speed = ppd->link_speed_active;
1666 props->max_vl_num = qib_num_vls(ppd->vls_supported);
1667 props->init_type_reply = 0;
1669 props->max_mtu = qib_ibmtu ? qib_ibmtu : IB_MTU_4096;
1670 switch (ppd->ibmtu) {
1689 props->active_mtu = mtu;
1690 props->subnet_timeout = ibp->subnet_timeout;
1695 static int qib_modify_device(struct ib_device *device,
1696 int device_modify_mask,
1697 struct ib_device_modify *device_modify)
1699 struct qib_devdata *dd = dd_from_ibdev(device);
1703 if (device_modify_mask & ~(IB_DEVICE_MODIFY_SYS_IMAGE_GUID |
1704 IB_DEVICE_MODIFY_NODE_DESC)) {
1709 if (device_modify_mask & IB_DEVICE_MODIFY_NODE_DESC) {
1710 memcpy(device->node_desc, device_modify->node_desc, 64);
1711 for (i = 0; i < dd->num_pports; i++) {
1712 struct qib_ibport *ibp = &dd->pport[i].ibport_data;
1714 qib_node_desc_chg(ibp);
1718 if (device_modify_mask & IB_DEVICE_MODIFY_SYS_IMAGE_GUID) {
1719 ib_qib_sys_image_guid =
1720 cpu_to_be64(device_modify->sys_image_guid);
1721 for (i = 0; i < dd->num_pports; i++) {
1722 struct qib_ibport *ibp = &dd->pport[i].ibport_data;
1724 qib_sys_guid_chg(ibp);
1734 static int qib_modify_port(struct ib_device *ibdev, u8 port,
1735 int port_modify_mask, struct ib_port_modify *props)
1737 struct qib_ibport *ibp = to_iport(ibdev, port);
1738 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1740 ibp->port_cap_flags |= props->set_port_cap_mask;
1741 ibp->port_cap_flags &= ~props->clr_port_cap_mask;
1742 if (props->set_port_cap_mask || props->clr_port_cap_mask)
1743 qib_cap_mask_chg(ibp);
1744 if (port_modify_mask & IB_PORT_SHUTDOWN)
1745 qib_set_linkstate(ppd, QIB_IB_LINKDOWN);
1746 if (port_modify_mask & IB_PORT_RESET_QKEY_CNTR)
1747 ibp->qkey_violations = 0;
1751 static int qib_query_gid(struct ib_device *ibdev, u8 port,
1752 int index, union ib_gid *gid)
1754 struct qib_devdata *dd = dd_from_ibdev(ibdev);
1757 if (!port || port > dd->num_pports)
1760 struct qib_ibport *ibp = to_iport(ibdev, port);
1761 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1763 gid->global.subnet_prefix = ibp->gid_prefix;
1765 gid->global.interface_id = ppd->guid;
1766 else if (index < QIB_GUIDS_PER_PORT)
1767 gid->global.interface_id = ibp->guids[index - 1];
1775 int qib_check_ah(struct ib_device *ibdev, struct ib_ah_attr *ah_attr)
1777 /* A multicast address requires a GRH (see ch. 8.4.1). */
1778 if (ah_attr->dlid >= be16_to_cpu(IB_MULTICAST_LID_BASE) &&
1779 ah_attr->dlid != be16_to_cpu(IB_LID_PERMISSIVE) &&
1780 !(ah_attr->ah_flags & IB_AH_GRH))
1782 if ((ah_attr->ah_flags & IB_AH_GRH) &&
1783 ah_attr->grh.sgid_index >= QIB_GUIDS_PER_PORT)
1785 if (ah_attr->dlid == 0)
1787 if (ah_attr->port_num < 1 ||
1788 ah_attr->port_num > ibdev->phys_port_cnt)
1790 if (ah_attr->static_rate != IB_RATE_PORT_CURRENT &&
1791 ib_rate_to_mult(ah_attr->static_rate) < 0)
1793 if (ah_attr->sl > 15)
1801 * qib_create_ah - create an address handle
1802 * @pd: the protection domain
1803 * @ah_attr: the attributes of the AH
1805 * This may be called from interrupt context.
1807 static struct ib_ah *qib_create_ah(struct ib_pd *pd,
1808 struct ib_ah_attr *ah_attr)
1812 struct qib_ibdev *dev = to_idev(pd->device);
1813 unsigned long flags;
1815 if (qib_check_ah(pd->device, ah_attr)) {
1816 ret = ERR_PTR(-EINVAL);
1820 ah = kmalloc(sizeof(*ah), GFP_ATOMIC);
1822 ret = ERR_PTR(-ENOMEM);
1826 spin_lock_irqsave(&dev->n_ahs_lock, flags);
1827 if (dev->n_ahs_allocated == ib_qib_max_ahs) {
1828 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
1830 ret = ERR_PTR(-ENOMEM);
1834 dev->n_ahs_allocated++;
1835 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
1837 /* ib_create_ah() will initialize ah->ibah. */
1838 ah->attr = *ah_attr;
1839 atomic_set(&ah->refcount, 0);
1847 struct ib_ah *qib_create_qp0_ah(struct qib_ibport *ibp, u16 dlid)
1849 struct ib_ah_attr attr;
1850 struct ib_ah *ah = ERR_PTR(-EINVAL);
1853 memset(&attr, 0, sizeof(attr));
1855 attr.port_num = ppd_from_ibp(ibp)->port;
1857 qp0 = rcu_dereference(ibp->qp0);
1859 ah = ib_create_ah(qp0->ibqp.pd, &attr);
1865 * qib_destroy_ah - destroy an address handle
1866 * @ibah: the AH to destroy
1868 * This may be called from interrupt context.
1870 static int qib_destroy_ah(struct ib_ah *ibah)
1872 struct qib_ibdev *dev = to_idev(ibah->device);
1873 struct qib_ah *ah = to_iah(ibah);
1874 unsigned long flags;
1876 if (atomic_read(&ah->refcount) != 0)
1879 spin_lock_irqsave(&dev->n_ahs_lock, flags);
1880 dev->n_ahs_allocated--;
1881 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
1888 static int qib_modify_ah(struct ib_ah *ibah, struct ib_ah_attr *ah_attr)
1890 struct qib_ah *ah = to_iah(ibah);
1892 if (qib_check_ah(ibah->device, ah_attr))
1895 ah->attr = *ah_attr;
1900 static int qib_query_ah(struct ib_ah *ibah, struct ib_ah_attr *ah_attr)
1902 struct qib_ah *ah = to_iah(ibah);
1904 *ah_attr = ah->attr;
1910 * qib_get_npkeys - return the size of the PKEY table for context 0
1911 * @dd: the qlogic_ib device
1913 unsigned qib_get_npkeys(struct qib_devdata *dd)
1915 return ARRAY_SIZE(dd->rcd[0]->pkeys);
1919 * Return the indexed PKEY from the port PKEY table.
1920 * No need to validate rcd[ctxt]; the port is setup if we are here.
1922 unsigned qib_get_pkey(struct qib_ibport *ibp, unsigned index)
1924 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1925 struct qib_devdata *dd = ppd->dd;
1926 unsigned ctxt = ppd->hw_pidx;
1929 /* dd->rcd null if mini_init or some init failures */
1930 if (!dd->rcd || index >= ARRAY_SIZE(dd->rcd[ctxt]->pkeys))
1933 ret = dd->rcd[ctxt]->pkeys[index];
1938 static int qib_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
1941 struct qib_devdata *dd = dd_from_ibdev(ibdev);
1944 if (index >= qib_get_npkeys(dd)) {
1949 *pkey = qib_get_pkey(to_iport(ibdev, port), index);
1957 * qib_alloc_ucontext - allocate a ucontest
1958 * @ibdev: the infiniband device
1959 * @udata: not used by the QLogic_IB driver
1962 static struct ib_ucontext *qib_alloc_ucontext(struct ib_device *ibdev,
1963 struct ib_udata *udata)
1965 struct qib_ucontext *context;
1966 struct ib_ucontext *ret;
1968 context = kmalloc(sizeof(*context), GFP_KERNEL);
1970 ret = ERR_PTR(-ENOMEM);
1974 ret = &context->ibucontext;
1980 static int qib_dealloc_ucontext(struct ib_ucontext *context)
1982 kfree(to_iucontext(context));
1986 static void init_ibport(struct qib_pportdata *ppd)
1988 struct qib_verbs_counters cntrs;
1989 struct qib_ibport *ibp = &ppd->ibport_data;
1991 spin_lock_init(&ibp->lock);
1992 /* Set the prefix to the default value (see ch. 4.1.1) */
1993 ibp->gid_prefix = IB_DEFAULT_GID_PREFIX;
1994 ibp->sm_lid = be16_to_cpu(IB_LID_PERMISSIVE);
1995 ibp->port_cap_flags = IB_PORT_SYS_IMAGE_GUID_SUP |
1996 IB_PORT_CLIENT_REG_SUP | IB_PORT_SL_MAP_SUP |
1997 IB_PORT_TRAP_SUP | IB_PORT_AUTO_MIGR_SUP |
1998 IB_PORT_DR_NOTICE_SUP | IB_PORT_CAP_MASK_NOTICE_SUP |
1999 IB_PORT_OTHER_LOCAL_CHANGES_SUP;
2000 if (ppd->dd->flags & QIB_HAS_LINK_LATENCY)
2001 ibp->port_cap_flags |= IB_PORT_LINK_LATENCY_SUP;
2002 ibp->pma_counter_select[0] = IB_PMA_PORT_XMIT_DATA;
2003 ibp->pma_counter_select[1] = IB_PMA_PORT_RCV_DATA;
2004 ibp->pma_counter_select[2] = IB_PMA_PORT_XMIT_PKTS;
2005 ibp->pma_counter_select[3] = IB_PMA_PORT_RCV_PKTS;
2006 ibp->pma_counter_select[4] = IB_PMA_PORT_XMIT_WAIT;
2008 /* Snapshot current HW counters to "clear" them. */
2009 qib_get_counters(ppd, &cntrs);
2010 ibp->z_symbol_error_counter = cntrs.symbol_error_counter;
2011 ibp->z_link_error_recovery_counter =
2012 cntrs.link_error_recovery_counter;
2013 ibp->z_link_downed_counter = cntrs.link_downed_counter;
2014 ibp->z_port_rcv_errors = cntrs.port_rcv_errors;
2015 ibp->z_port_rcv_remphys_errors = cntrs.port_rcv_remphys_errors;
2016 ibp->z_port_xmit_discards = cntrs.port_xmit_discards;
2017 ibp->z_port_xmit_data = cntrs.port_xmit_data;
2018 ibp->z_port_rcv_data = cntrs.port_rcv_data;
2019 ibp->z_port_xmit_packets = cntrs.port_xmit_packets;
2020 ibp->z_port_rcv_packets = cntrs.port_rcv_packets;
2021 ibp->z_local_link_integrity_errors =
2022 cntrs.local_link_integrity_errors;
2023 ibp->z_excessive_buffer_overrun_errors =
2024 cntrs.excessive_buffer_overrun_errors;
2025 ibp->z_vl15_dropped = cntrs.vl15_dropped;
2026 RCU_INIT_POINTER(ibp->qp0, NULL);
2027 RCU_INIT_POINTER(ibp->qp1, NULL);
2030 static int qib_port_immutable(struct ib_device *ibdev, u8 port_num,
2031 struct ib_port_immutable *immutable)
2033 struct ib_port_attr attr;
2036 err = qib_query_port(ibdev, port_num, &attr);
2040 immutable->pkey_tbl_len = attr.pkey_tbl_len;
2041 immutable->gid_tbl_len = attr.gid_tbl_len;
2042 immutable->core_cap_flags = RDMA_CORE_PORT_IBA_IB;
2043 immutable->max_mad_size = IB_MGMT_MAD_SIZE;
2049 * qib_register_ib_device - register our device with the infiniband core
2050 * @dd: the device data structure
2051 * Return the allocated qib_ibdev pointer or NULL on error.
2053 int qib_register_ib_device(struct qib_devdata *dd)
2055 struct qib_ibdev *dev = &dd->verbs_dev;
2056 struct ib_device *ibdev = &dev->rdi.ibdev;
2057 struct qib_pportdata *ppd = dd->pport;
2058 unsigned i, lk_tab_size;
2061 dev->qp_table_size = ib_qib_qp_table_size;
2062 get_random_bytes(&dev->qp_rnd, sizeof(dev->qp_rnd));
2063 dev->qp_table = kmalloc_array(
2065 sizeof(*dev->qp_table),
2067 if (!dev->qp_table) {
2071 for (i = 0; i < dev->qp_table_size; i++)
2072 RCU_INIT_POINTER(dev->qp_table[i], NULL);
2074 for (i = 0; i < dd->num_pports; i++)
2075 init_ibport(ppd + i);
2077 /* Only need to initialize non-zero fields. */
2078 spin_lock_init(&dev->qpt_lock);
2079 spin_lock_init(&dev->n_ahs_lock);
2080 spin_lock_init(&dev->n_cqs_lock);
2081 spin_lock_init(&dev->n_qps_lock);
2082 spin_lock_init(&dev->n_srqs_lock);
2083 spin_lock_init(&dev->n_mcast_grps_lock);
2084 init_timer(&dev->mem_timer);
2085 dev->mem_timer.function = mem_timer;
2086 dev->mem_timer.data = (unsigned long) dev;
2088 qib_init_qpn_table(dd, &dev->qpn_table);
2091 * The top ib_qib_lkey_table_size bits are used to index the
2092 * table. The lower 8 bits can be owned by the user (copied from
2093 * the LKEY). The remaining bits act as a generation number or tag.
2095 spin_lock_init(&dev->lk_table.lock);
2096 /* insure generation is at least 4 bits see keys.c */
2097 if (ib_qib_lkey_table_size > MAX_LKEY_TABLE_BITS) {
2098 qib_dev_warn(dd, "lkey bits %u too large, reduced to %u\n",
2099 ib_qib_lkey_table_size, MAX_LKEY_TABLE_BITS);
2100 ib_qib_lkey_table_size = MAX_LKEY_TABLE_BITS;
2102 dev->lk_table.max = 1 << ib_qib_lkey_table_size;
2103 lk_tab_size = dev->lk_table.max * sizeof(*dev->lk_table.table);
2104 dev->lk_table.table = (struct qib_mregion __rcu **)
2105 vmalloc(lk_tab_size);
2106 if (dev->lk_table.table == NULL) {
2110 RCU_INIT_POINTER(dev->dma_mr, NULL);
2111 for (i = 0; i < dev->lk_table.max; i++)
2112 RCU_INIT_POINTER(dev->lk_table.table[i], NULL);
2113 INIT_LIST_HEAD(&dev->pending_mmaps);
2114 spin_lock_init(&dev->pending_lock);
2115 dev->mmap_offset = PAGE_SIZE;
2116 spin_lock_init(&dev->mmap_offset_lock);
2117 INIT_LIST_HEAD(&dev->piowait);
2118 INIT_LIST_HEAD(&dev->dmawait);
2119 INIT_LIST_HEAD(&dev->txwait);
2120 INIT_LIST_HEAD(&dev->memwait);
2121 INIT_LIST_HEAD(&dev->txreq_free);
2123 if (ppd->sdma_descq_cnt) {
2124 dev->pio_hdrs = dma_alloc_coherent(&dd->pcidev->dev,
2125 ppd->sdma_descq_cnt *
2126 sizeof(struct qib_pio_header),
2127 &dev->pio_hdrs_phys,
2129 if (!dev->pio_hdrs) {
2135 for (i = 0; i < ppd->sdma_descq_cnt; i++) {
2136 struct qib_verbs_txreq *tx;
2138 tx = kzalloc(sizeof(*tx), GFP_KERNEL);
2144 list_add(&tx->txreq.list, &dev->txreq_free);
2148 * The system image GUID is supposed to be the same for all
2149 * IB HCAs in a single system but since there can be other
2150 * device types in the system, we can't be sure this is unique.
2152 if (!ib_qib_sys_image_guid)
2153 ib_qib_sys_image_guid = ppd->guid;
2155 strlcpy(ibdev->name, "qib%d", IB_DEVICE_NAME_MAX);
2156 ibdev->owner = THIS_MODULE;
2157 ibdev->node_guid = ppd->guid;
2158 ibdev->uverbs_abi_ver = QIB_UVERBS_ABI_VERSION;
2159 ibdev->uverbs_cmd_mask =
2160 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
2161 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
2162 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
2163 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
2164 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
2165 (1ull << IB_USER_VERBS_CMD_CREATE_AH) |
2166 (1ull << IB_USER_VERBS_CMD_MODIFY_AH) |
2167 (1ull << IB_USER_VERBS_CMD_QUERY_AH) |
2168 (1ull << IB_USER_VERBS_CMD_DESTROY_AH) |
2169 (1ull << IB_USER_VERBS_CMD_REG_MR) |
2170 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
2171 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
2172 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
2173 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
2174 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
2175 (1ull << IB_USER_VERBS_CMD_POLL_CQ) |
2176 (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) |
2177 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
2178 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
2179 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
2180 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
2181 (1ull << IB_USER_VERBS_CMD_POST_SEND) |
2182 (1ull << IB_USER_VERBS_CMD_POST_RECV) |
2183 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) |
2184 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST) |
2185 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
2186 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
2187 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
2188 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ) |
2189 (1ull << IB_USER_VERBS_CMD_POST_SRQ_RECV);
2190 ibdev->node_type = RDMA_NODE_IB_CA;
2191 ibdev->phys_port_cnt = dd->num_pports;
2192 ibdev->num_comp_vectors = 1;
2193 ibdev->dma_device = &dd->pcidev->dev;
2194 ibdev->query_device = qib_query_device;
2195 ibdev->modify_device = qib_modify_device;
2196 ibdev->query_port = qib_query_port;
2197 ibdev->modify_port = qib_modify_port;
2198 ibdev->query_pkey = qib_query_pkey;
2199 ibdev->query_gid = qib_query_gid;
2200 ibdev->alloc_ucontext = qib_alloc_ucontext;
2201 ibdev->dealloc_ucontext = qib_dealloc_ucontext;
2202 ibdev->alloc_pd = NULL;
2203 ibdev->dealloc_pd = NULL;
2204 ibdev->create_ah = qib_create_ah;
2205 ibdev->destroy_ah = qib_destroy_ah;
2206 ibdev->modify_ah = qib_modify_ah;
2207 ibdev->query_ah = qib_query_ah;
2208 ibdev->create_srq = qib_create_srq;
2209 ibdev->modify_srq = qib_modify_srq;
2210 ibdev->query_srq = qib_query_srq;
2211 ibdev->destroy_srq = qib_destroy_srq;
2212 ibdev->create_qp = qib_create_qp;
2213 ibdev->modify_qp = qib_modify_qp;
2214 ibdev->query_qp = qib_query_qp;
2215 ibdev->destroy_qp = qib_destroy_qp;
2216 ibdev->post_send = qib_post_send;
2217 ibdev->post_recv = qib_post_receive;
2218 ibdev->post_srq_recv = qib_post_srq_receive;
2219 ibdev->create_cq = qib_create_cq;
2220 ibdev->destroy_cq = qib_destroy_cq;
2221 ibdev->resize_cq = qib_resize_cq;
2222 ibdev->poll_cq = qib_poll_cq;
2223 ibdev->req_notify_cq = qib_req_notify_cq;
2224 ibdev->get_dma_mr = qib_get_dma_mr;
2225 ibdev->reg_user_mr = qib_reg_user_mr;
2226 ibdev->dereg_mr = qib_dereg_mr;
2227 ibdev->alloc_mr = qib_alloc_mr;
2228 ibdev->map_mr_sg = qib_map_mr_sg;
2229 ibdev->alloc_fmr = qib_alloc_fmr;
2230 ibdev->map_phys_fmr = qib_map_phys_fmr;
2231 ibdev->unmap_fmr = qib_unmap_fmr;
2232 ibdev->dealloc_fmr = qib_dealloc_fmr;
2233 ibdev->attach_mcast = qib_multicast_attach;
2234 ibdev->detach_mcast = qib_multicast_detach;
2235 ibdev->process_mad = qib_process_mad;
2236 ibdev->mmap = qib_mmap;
2237 ibdev->dma_ops = NULL;
2238 ibdev->get_port_immutable = qib_port_immutable;
2240 snprintf(ibdev->node_desc, sizeof(ibdev->node_desc),
2241 "Intel Infiniband HCA %s", init_utsname()->nodename);
2244 * Fill in rvt info object.
2246 dd->verbs_dev.rdi.driver_f.port_callback = qib_create_port_files;
2247 dd->verbs_dev.rdi.driver_f.get_card_name = qib_get_card_name;
2248 dd->verbs_dev.rdi.driver_f.get_pci_dev = qib_get_pci_dev;
2249 dd->verbs_dev.rdi.dparms.props.max_pd = ib_qib_max_pds;
2250 dd->verbs_dev.rdi.flags = (RVT_FLAG_MR_INIT_DRIVER |
2251 RVT_FLAG_QP_INIT_DRIVER |
2252 RVT_FLAG_CQ_INIT_DRIVER);
2255 ret = rvt_register_device(&dd->verbs_dev.rdi);
2259 ret = qib_create_agents(dev);
2263 ret = qib_verbs_register_sysfs(dd);
2270 qib_free_agents(dev);
2272 rvt_unregister_device(&dd->verbs_dev.rdi);
2275 while (!list_empty(&dev->txreq_free)) {
2276 struct list_head *l = dev->txreq_free.next;
2277 struct qib_verbs_txreq *tx;
2280 tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
2283 if (ppd->sdma_descq_cnt)
2284 dma_free_coherent(&dd->pcidev->dev,
2285 ppd->sdma_descq_cnt *
2286 sizeof(struct qib_pio_header),
2287 dev->pio_hdrs, dev->pio_hdrs_phys);
2289 vfree(dev->lk_table.table);
2291 kfree(dev->qp_table);
2293 qib_dev_err(dd, "cannot register verbs: %d!\n", -ret);
2298 void qib_unregister_ib_device(struct qib_devdata *dd)
2300 struct qib_ibdev *dev = &dd->verbs_dev;
2302 unsigned lk_tab_size;
2304 qib_verbs_unregister_sysfs(dd);
2306 qib_free_agents(dev);
2308 rvt_unregister_device(&dd->verbs_dev.rdi);
2310 if (!list_empty(&dev->piowait))
2311 qib_dev_err(dd, "piowait list not empty!\n");
2312 if (!list_empty(&dev->dmawait))
2313 qib_dev_err(dd, "dmawait list not empty!\n");
2314 if (!list_empty(&dev->txwait))
2315 qib_dev_err(dd, "txwait list not empty!\n");
2316 if (!list_empty(&dev->memwait))
2317 qib_dev_err(dd, "memwait list not empty!\n");
2319 qib_dev_err(dd, "DMA MR not NULL!\n");
2321 qps_inuse = qib_free_all_qps(dd);
2323 qib_dev_err(dd, "QP memory leak! %u still in use\n",
2326 del_timer_sync(&dev->mem_timer);
2327 qib_free_qpn_table(&dev->qpn_table);
2328 while (!list_empty(&dev->txreq_free)) {
2329 struct list_head *l = dev->txreq_free.next;
2330 struct qib_verbs_txreq *tx;
2333 tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
2336 if (dd->pport->sdma_descq_cnt)
2337 dma_free_coherent(&dd->pcidev->dev,
2338 dd->pport->sdma_descq_cnt *
2339 sizeof(struct qib_pio_header),
2340 dev->pio_hdrs, dev->pio_hdrs_phys);
2341 lk_tab_size = dev->lk_table.max * sizeof(*dev->lk_table.table);
2342 vfree(dev->lk_table.table);
2343 kfree(dev->qp_table);
2347 * This must be called with s_lock held.
2349 void qib_schedule_send(struct qib_qp *qp)
2351 struct qib_qp_priv *priv = qp->priv;
2352 if (qib_send_ok(qp)) {
2353 struct qib_ibport *ibp =
2354 to_iport(qp->ibqp.device, qp->port_num);
2355 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
2357 queue_work(ppd->qib_wq, &priv->s_work);