2 * Copyright (c) 2006, 2007, 2008, 2009, 2010 QLogic Corporation.
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/utsname.h>
39 #include <linux/rculist.h>
43 #include "qib_common.h"
45 static unsigned int ib_qib_qp_table_size
= 251;
46 module_param_named(qp_table_size
, ib_qib_qp_table_size
, uint
, S_IRUGO
);
47 MODULE_PARM_DESC(qp_table_size
, "QP table size");
49 unsigned int ib_qib_lkey_table_size
= 16;
50 module_param_named(lkey_table_size
, ib_qib_lkey_table_size
, uint
,
52 MODULE_PARM_DESC(lkey_table_size
,
53 "LKEY table size in bits (2^n, 1 <= n <= 23)");
55 static unsigned int ib_qib_max_pds
= 0xFFFF;
56 module_param_named(max_pds
, ib_qib_max_pds
, uint
, S_IRUGO
);
57 MODULE_PARM_DESC(max_pds
,
58 "Maximum number of protection domains to support");
60 static unsigned int ib_qib_max_ahs
= 0xFFFF;
61 module_param_named(max_ahs
, ib_qib_max_ahs
, uint
, S_IRUGO
);
62 MODULE_PARM_DESC(max_ahs
, "Maximum number of address handles to support");
64 unsigned int ib_qib_max_cqes
= 0x2FFFF;
65 module_param_named(max_cqes
, ib_qib_max_cqes
, uint
, S_IRUGO
);
66 MODULE_PARM_DESC(max_cqes
,
67 "Maximum number of completion queue entries to support");
69 unsigned int ib_qib_max_cqs
= 0x1FFFF;
70 module_param_named(max_cqs
, ib_qib_max_cqs
, uint
, S_IRUGO
);
71 MODULE_PARM_DESC(max_cqs
, "Maximum number of completion queues to support");
73 unsigned int ib_qib_max_qp_wrs
= 0x3FFF;
74 module_param_named(max_qp_wrs
, ib_qib_max_qp_wrs
, uint
, S_IRUGO
);
75 MODULE_PARM_DESC(max_qp_wrs
, "Maximum number of QP WRs to support");
77 unsigned int ib_qib_max_qps
= 16384;
78 module_param_named(max_qps
, ib_qib_max_qps
, uint
, S_IRUGO
);
79 MODULE_PARM_DESC(max_qps
, "Maximum number of QPs to support");
81 unsigned int ib_qib_max_sges
= 0x60;
82 module_param_named(max_sges
, ib_qib_max_sges
, uint
, S_IRUGO
);
83 MODULE_PARM_DESC(max_sges
, "Maximum number of SGEs to support");
85 unsigned int ib_qib_max_mcast_grps
= 16384;
86 module_param_named(max_mcast_grps
, ib_qib_max_mcast_grps
, uint
, S_IRUGO
);
87 MODULE_PARM_DESC(max_mcast_grps
,
88 "Maximum number of multicast groups to support");
90 unsigned int ib_qib_max_mcast_qp_attached
= 16;
91 module_param_named(max_mcast_qp_attached
, ib_qib_max_mcast_qp_attached
,
93 MODULE_PARM_DESC(max_mcast_qp_attached
,
94 "Maximum number of attached QPs to support");
96 unsigned int ib_qib_max_srqs
= 1024;
97 module_param_named(max_srqs
, ib_qib_max_srqs
, uint
, S_IRUGO
);
98 MODULE_PARM_DESC(max_srqs
, "Maximum number of SRQs to support");
100 unsigned int ib_qib_max_srq_sges
= 128;
101 module_param_named(max_srq_sges
, ib_qib_max_srq_sges
, uint
, S_IRUGO
);
102 MODULE_PARM_DESC(max_srq_sges
, "Maximum number of SRQ SGEs to support");
104 unsigned int ib_qib_max_srq_wrs
= 0x1FFFF;
105 module_param_named(max_srq_wrs
, ib_qib_max_srq_wrs
, uint
, S_IRUGO
);
106 MODULE_PARM_DESC(max_srq_wrs
, "Maximum number of SRQ WRs support");
108 static unsigned int ib_qib_disable_sma
;
109 module_param_named(disable_sma
, ib_qib_disable_sma
, uint
, S_IWUSR
| S_IRUGO
);
110 MODULE_PARM_DESC(disable_sma
, "Disable the SMA");
113 * Note that it is OK to post send work requests in the SQE and ERR
114 * states; qib_do_send() will process them and generate error
115 * completions as per IB 1.2 C10-96.
117 const int ib_qib_state_ops
[IB_QPS_ERR
+ 1] = {
119 [IB_QPS_INIT
] = QIB_POST_RECV_OK
,
120 [IB_QPS_RTR
] = QIB_POST_RECV_OK
| QIB_PROCESS_RECV_OK
,
121 [IB_QPS_RTS
] = QIB_POST_RECV_OK
| QIB_PROCESS_RECV_OK
|
122 QIB_POST_SEND_OK
| QIB_PROCESS_SEND_OK
|
123 QIB_PROCESS_NEXT_SEND_OK
,
124 [IB_QPS_SQD
] = QIB_POST_RECV_OK
| QIB_PROCESS_RECV_OK
|
125 QIB_POST_SEND_OK
| QIB_PROCESS_SEND_OK
,
126 [IB_QPS_SQE
] = QIB_POST_RECV_OK
| QIB_PROCESS_RECV_OK
|
127 QIB_POST_SEND_OK
| QIB_FLUSH_SEND
,
128 [IB_QPS_ERR
] = QIB_POST_RECV_OK
| QIB_FLUSH_RECV
|
129 QIB_POST_SEND_OK
| QIB_FLUSH_SEND
,
132 struct qib_ucontext
{
133 struct ib_ucontext ibucontext
;
136 static inline struct qib_ucontext
*to_iucontext(struct ib_ucontext
139 return container_of(ibucontext
, struct qib_ucontext
, ibucontext
);
143 * Translate ib_wr_opcode into ib_wc_opcode.
145 const enum ib_wc_opcode ib_qib_wc_opcode
[] = {
146 [IB_WR_RDMA_WRITE
] = IB_WC_RDMA_WRITE
,
147 [IB_WR_RDMA_WRITE_WITH_IMM
] = IB_WC_RDMA_WRITE
,
148 [IB_WR_SEND
] = IB_WC_SEND
,
149 [IB_WR_SEND_WITH_IMM
] = IB_WC_SEND
,
150 [IB_WR_RDMA_READ
] = IB_WC_RDMA_READ
,
151 [IB_WR_ATOMIC_CMP_AND_SWP
] = IB_WC_COMP_SWAP
,
152 [IB_WR_ATOMIC_FETCH_AND_ADD
] = IB_WC_FETCH_ADD
158 __be64 ib_qib_sys_image_guid
;
161 * qib_copy_sge - copy data to SGE memory
163 * @data: the data to copy
164 * @length: the length of the data
166 void qib_copy_sge(struct qib_sge_state
*ss
, void *data
, u32 length
, int release
)
168 struct qib_sge
*sge
= &ss
->sge
;
171 u32 len
= sge
->length
;
175 if (len
> sge
->sge_length
)
176 len
= sge
->sge_length
;
178 memcpy(sge
->vaddr
, data
, len
);
181 sge
->sge_length
-= len
;
182 if (sge
->sge_length
== 0) {
184 atomic_dec(&sge
->mr
->refcount
);
186 *sge
= *ss
->sg_list
++;
187 } else if (sge
->length
== 0 && sge
->mr
->lkey
) {
188 if (++sge
->n
>= QIB_SEGSZ
) {
189 if (++sge
->m
>= sge
->mr
->mapsz
)
194 sge
->mr
->map
[sge
->m
]->segs
[sge
->n
].vaddr
;
196 sge
->mr
->map
[sge
->m
]->segs
[sge
->n
].length
;
204 * qib_skip_sge - skip over SGE memory - XXX almost dup of prev func
206 * @length: the number of bytes to skip
208 void qib_skip_sge(struct qib_sge_state
*ss
, u32 length
, int release
)
210 struct qib_sge
*sge
= &ss
->sge
;
213 u32 len
= sge
->length
;
217 if (len
> sge
->sge_length
)
218 len
= sge
->sge_length
;
222 sge
->sge_length
-= len
;
223 if (sge
->sge_length
== 0) {
225 atomic_dec(&sge
->mr
->refcount
);
227 *sge
= *ss
->sg_list
++;
228 } else if (sge
->length
== 0 && sge
->mr
->lkey
) {
229 if (++sge
->n
>= QIB_SEGSZ
) {
230 if (++sge
->m
>= sge
->mr
->mapsz
)
235 sge
->mr
->map
[sge
->m
]->segs
[sge
->n
].vaddr
;
237 sge
->mr
->map
[sge
->m
]->segs
[sge
->n
].length
;
244 * Count the number of DMA descriptors needed to send length bytes of data.
245 * Don't modify the qib_sge_state to get the count.
246 * Return zero if any of the segments is not aligned.
248 static u32
qib_count_sge(struct qib_sge_state
*ss
, u32 length
)
250 struct qib_sge
*sg_list
= ss
->sg_list
;
251 struct qib_sge sge
= ss
->sge
;
252 u8 num_sge
= ss
->num_sge
;
253 u32 ndesc
= 1; /* count the header */
256 u32 len
= sge
.length
;
260 if (len
> sge
.sge_length
)
261 len
= sge
.sge_length
;
263 if (((long) sge
.vaddr
& (sizeof(u32
) - 1)) ||
264 (len
!= length
&& (len
& (sizeof(u32
) - 1)))) {
271 sge
.sge_length
-= len
;
272 if (sge
.sge_length
== 0) {
275 } else if (sge
.length
== 0 && sge
.mr
->lkey
) {
276 if (++sge
.n
>= QIB_SEGSZ
) {
277 if (++sge
.m
>= sge
.mr
->mapsz
)
282 sge
.mr
->map
[sge
.m
]->segs
[sge
.n
].vaddr
;
284 sge
.mr
->map
[sge
.m
]->segs
[sge
.n
].length
;
292 * Copy from the SGEs to the data buffer.
294 static void qib_copy_from_sge(void *data
, struct qib_sge_state
*ss
, u32 length
)
296 struct qib_sge
*sge
= &ss
->sge
;
299 u32 len
= sge
->length
;
303 if (len
> sge
->sge_length
)
304 len
= sge
->sge_length
;
306 memcpy(data
, sge
->vaddr
, len
);
309 sge
->sge_length
-= len
;
310 if (sge
->sge_length
== 0) {
312 *sge
= *ss
->sg_list
++;
313 } else if (sge
->length
== 0 && sge
->mr
->lkey
) {
314 if (++sge
->n
>= QIB_SEGSZ
) {
315 if (++sge
->m
>= sge
->mr
->mapsz
)
320 sge
->mr
->map
[sge
->m
]->segs
[sge
->n
].vaddr
;
322 sge
->mr
->map
[sge
->m
]->segs
[sge
->n
].length
;
330 * qib_post_one_send - post one RC, UC, or UD send work request
331 * @qp: the QP to post on
332 * @wr: the work request to send
334 static int qib_post_one_send(struct qib_qp
*qp
, struct ib_send_wr
*wr
)
336 struct qib_swqe
*wqe
;
343 struct qib_lkey_table
*rkt
;
346 spin_lock_irqsave(&qp
->s_lock
, flags
);
348 /* Check that state is OK to post send. */
349 if (unlikely(!(ib_qib_state_ops
[qp
->state
] & QIB_POST_SEND_OK
)))
352 /* IB spec says that num_sge == 0 is OK. */
353 if (wr
->num_sge
> qp
->s_max_sge
)
357 * Don't allow RDMA reads or atomic operations on UC or
358 * undefined operations.
359 * Make sure buffer is large enough to hold the result for atomics.
361 if (wr
->opcode
== IB_WR_FAST_REG_MR
) {
362 if (qib_fast_reg_mr(qp
, wr
))
364 } else if (qp
->ibqp
.qp_type
== IB_QPT_UC
) {
365 if ((unsigned) wr
->opcode
>= IB_WR_RDMA_READ
)
367 } else if (qp
->ibqp
.qp_type
!= IB_QPT_RC
) {
368 /* Check IB_QPT_SMI, IB_QPT_GSI, IB_QPT_UD opcode */
369 if (wr
->opcode
!= IB_WR_SEND
&&
370 wr
->opcode
!= IB_WR_SEND_WITH_IMM
)
372 /* Check UD destination address PD */
373 if (qp
->ibqp
.pd
!= wr
->wr
.ud
.ah
->pd
)
375 } else if ((unsigned) wr
->opcode
> IB_WR_ATOMIC_FETCH_AND_ADD
)
377 else if (wr
->opcode
>= IB_WR_ATOMIC_CMP_AND_SWP
&&
379 wr
->sg_list
[0].length
< sizeof(u64
) ||
380 wr
->sg_list
[0].addr
& (sizeof(u64
) - 1)))
382 else if (wr
->opcode
>= IB_WR_RDMA_READ
&& !qp
->s_max_rd_atomic
)
385 next
= qp
->s_head
+ 1;
386 if (next
>= qp
->s_size
)
388 if (next
== qp
->s_last
) {
393 rkt
= &to_idev(qp
->ibqp
.device
)->lk_table
;
394 pd
= to_ipd(qp
->ibqp
.pd
);
395 wqe
= get_swqe_ptr(qp
, qp
->s_head
);
400 acc
= wr
->opcode
>= IB_WR_RDMA_READ
?
401 IB_ACCESS_LOCAL_WRITE
: 0;
402 for (i
= 0; i
< wr
->num_sge
; i
++) {
403 u32 length
= wr
->sg_list
[i
].length
;
408 ok
= qib_lkey_ok(rkt
, pd
, &wqe
->sg_list
[j
],
409 &wr
->sg_list
[i
], acc
);
411 goto bail_inval_free
;
412 wqe
->length
+= length
;
417 if (qp
->ibqp
.qp_type
== IB_QPT_UC
||
418 qp
->ibqp
.qp_type
== IB_QPT_RC
) {
419 if (wqe
->length
> 0x80000000U
)
420 goto bail_inval_free
;
421 } else if (wqe
->length
> (dd_from_ibdev(qp
->ibqp
.device
)->pport
+
422 qp
->port_num
- 1)->ibmtu
)
423 goto bail_inval_free
;
425 atomic_inc(&to_iah(wr
->wr
.ud
.ah
)->refcount
);
426 wqe
->ssn
= qp
->s_ssn
++;
434 struct qib_sge
*sge
= &wqe
->sg_list
[--j
];
436 atomic_dec(&sge
->mr
->refcount
);
441 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
446 * qib_post_send - post a send on a QP
447 * @ibqp: the QP to post the send on
448 * @wr: the list of work requests to post
449 * @bad_wr: the first bad WR is put here
451 * This may be called from interrupt context.
453 static int qib_post_send(struct ib_qp
*ibqp
, struct ib_send_wr
*wr
,
454 struct ib_send_wr
**bad_wr
)
456 struct qib_qp
*qp
= to_iqp(ibqp
);
459 for (; wr
; wr
= wr
->next
) {
460 err
= qib_post_one_send(qp
, wr
);
467 /* Try to do the send work in the caller's context. */
468 qib_do_send(&qp
->s_work
);
475 * qib_post_receive - post a receive on a QP
476 * @ibqp: the QP to post the receive on
477 * @wr: the WR to post
478 * @bad_wr: the first bad WR is put here
480 * This may be called from interrupt context.
482 static int qib_post_receive(struct ib_qp
*ibqp
, struct ib_recv_wr
*wr
,
483 struct ib_recv_wr
**bad_wr
)
485 struct qib_qp
*qp
= to_iqp(ibqp
);
486 struct qib_rwq
*wq
= qp
->r_rq
.wq
;
490 /* Check that state is OK to post receive. */
491 if (!(ib_qib_state_ops
[qp
->state
] & QIB_POST_RECV_OK
) || !wq
) {
497 for (; wr
; wr
= wr
->next
) {
498 struct qib_rwqe
*wqe
;
502 if ((unsigned) wr
->num_sge
> qp
->r_rq
.max_sge
) {
508 spin_lock_irqsave(&qp
->r_rq
.lock
, flags
);
510 if (next
>= qp
->r_rq
.size
)
512 if (next
== wq
->tail
) {
513 spin_unlock_irqrestore(&qp
->r_rq
.lock
, flags
);
519 wqe
= get_rwqe_ptr(&qp
->r_rq
, wq
->head
);
520 wqe
->wr_id
= wr
->wr_id
;
521 wqe
->num_sge
= wr
->num_sge
;
522 for (i
= 0; i
< wr
->num_sge
; i
++)
523 wqe
->sg_list
[i
] = wr
->sg_list
[i
];
524 /* Make sure queue entry is written before the head index. */
527 spin_unlock_irqrestore(&qp
->r_rq
.lock
, flags
);
536 * qib_qp_rcv - processing an incoming packet on a QP
537 * @rcd: the context pointer
538 * @hdr: the packet header
539 * @has_grh: true if the packet has a GRH
540 * @data: the packet data
541 * @tlen: the packet length
542 * @qp: the QP the packet came on
544 * This is called from qib_ib_rcv() to process an incoming packet
546 * Called at interrupt level.
548 static void qib_qp_rcv(struct qib_ctxtdata
*rcd
, struct qib_ib_header
*hdr
,
549 int has_grh
, void *data
, u32 tlen
, struct qib_qp
*qp
)
551 struct qib_ibport
*ibp
= &rcd
->ppd
->ibport_data
;
553 spin_lock(&qp
->r_lock
);
555 /* Check for valid receive state. */
556 if (!(ib_qib_state_ops
[qp
->state
] & QIB_PROCESS_RECV_OK
)) {
561 switch (qp
->ibqp
.qp_type
) {
564 if (ib_qib_disable_sma
)
568 qib_ud_rcv(ibp
, hdr
, has_grh
, data
, tlen
, qp
);
572 qib_rc_rcv(rcd
, hdr
, has_grh
, data
, tlen
, qp
);
576 qib_uc_rcv(ibp
, hdr
, has_grh
, data
, tlen
, qp
);
584 spin_unlock(&qp
->r_lock
);
588 * qib_ib_rcv - process an incoming packet
589 * @rcd: the context pointer
590 * @rhdr: the header of the packet
591 * @data: the packet payload
592 * @tlen: the packet length
594 * This is called from qib_kreceive() to process an incoming packet at
595 * interrupt level. Tlen is the length of the header + data + CRC in bytes.
597 void qib_ib_rcv(struct qib_ctxtdata
*rcd
, void *rhdr
, void *data
, u32 tlen
)
599 struct qib_pportdata
*ppd
= rcd
->ppd
;
600 struct qib_ibport
*ibp
= &ppd
->ibport_data
;
601 struct qib_ib_header
*hdr
= rhdr
;
602 struct qib_other_headers
*ohdr
;
609 /* 24 == LRH+BTH+CRC */
610 if (unlikely(tlen
< 24))
613 /* Check for a valid destination LID (see ch. 7.11.1). */
614 lid
= be16_to_cpu(hdr
->lrh
[1]);
615 if (lid
< QIB_MULTICAST_LID_BASE
) {
616 lid
&= ~((1 << ppd
->lmc
) - 1);
617 if (unlikely(lid
!= ppd
->lid
))
622 lnh
= be16_to_cpu(hdr
->lrh
[0]) & 3;
623 if (lnh
== QIB_LRH_BTH
)
625 else if (lnh
== QIB_LRH_GRH
) {
628 ohdr
= &hdr
->u
.l
.oth
;
629 if (hdr
->u
.l
.grh
.next_hdr
!= IB_GRH_NEXT_HDR
)
631 vtf
= be32_to_cpu(hdr
->u
.l
.grh
.version_tclass_flow
);
632 if ((vtf
>> IB_GRH_VERSION_SHIFT
) != IB_GRH_VERSION
)
637 opcode
= be32_to_cpu(ohdr
->bth
[0]) >> 24;
638 ibp
->opstats
[opcode
& 0x7f].n_bytes
+= tlen
;
639 ibp
->opstats
[opcode
& 0x7f].n_packets
++;
641 /* Get the destination QP number. */
642 qp_num
= be32_to_cpu(ohdr
->bth
[1]) & QIB_QPN_MASK
;
643 if (qp_num
== QIB_MULTICAST_QPN
) {
644 struct qib_mcast
*mcast
;
645 struct qib_mcast_qp
*p
;
647 if (lnh
!= QIB_LRH_GRH
)
649 mcast
= qib_mcast_find(ibp
, &hdr
->u
.l
.grh
.dgid
);
652 ibp
->n_multicast_rcv
++;
653 list_for_each_entry_rcu(p
, &mcast
->qp_list
, list
)
654 qib_qp_rcv(rcd
, hdr
, 1, data
, tlen
, p
->qp
);
656 * Notify qib_multicast_detach() if it is waiting for us
659 if (atomic_dec_return(&mcast
->refcount
) <= 1)
660 wake_up(&mcast
->wait
);
662 qp
= qib_lookup_qpn(ibp
, qp_num
);
665 ibp
->n_unicast_rcv
++;
666 qib_qp_rcv(rcd
, hdr
, lnh
== QIB_LRH_GRH
, data
, tlen
, qp
);
668 * Notify qib_destroy_qp() if it is waiting
671 if (atomic_dec_and_test(&qp
->refcount
))
681 * This is called from a timer to check for QPs
682 * which need kernel memory in order to send a packet.
684 static void mem_timer(unsigned long data
)
686 struct qib_ibdev
*dev
= (struct qib_ibdev
*) data
;
687 struct list_head
*list
= &dev
->memwait
;
688 struct qib_qp
*qp
= NULL
;
691 spin_lock_irqsave(&dev
->pending_lock
, flags
);
692 if (!list_empty(list
)) {
693 qp
= list_entry(list
->next
, struct qib_qp
, iowait
);
694 list_del_init(&qp
->iowait
);
695 atomic_inc(&qp
->refcount
);
696 if (!list_empty(list
))
697 mod_timer(&dev
->mem_timer
, jiffies
+ 1);
699 spin_unlock_irqrestore(&dev
->pending_lock
, flags
);
702 spin_lock_irqsave(&qp
->s_lock
, flags
);
703 if (qp
->s_flags
& QIB_S_WAIT_KMEM
) {
704 qp
->s_flags
&= ~QIB_S_WAIT_KMEM
;
705 qib_schedule_send(qp
);
707 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
708 if (atomic_dec_and_test(&qp
->refcount
))
713 static void update_sge(struct qib_sge_state
*ss
, u32 length
)
715 struct qib_sge
*sge
= &ss
->sge
;
717 sge
->vaddr
+= length
;
718 sge
->length
-= length
;
719 sge
->sge_length
-= length
;
720 if (sge
->sge_length
== 0) {
722 *sge
= *ss
->sg_list
++;
723 } else if (sge
->length
== 0 && sge
->mr
->lkey
) {
724 if (++sge
->n
>= QIB_SEGSZ
) {
725 if (++sge
->m
>= sge
->mr
->mapsz
)
729 sge
->vaddr
= sge
->mr
->map
[sge
->m
]->segs
[sge
->n
].vaddr
;
730 sge
->length
= sge
->mr
->map
[sge
->m
]->segs
[sge
->n
].length
;
734 #ifdef __LITTLE_ENDIAN
735 static inline u32
get_upper_bits(u32 data
, u32 shift
)
737 return data
>> shift
;
740 static inline u32
set_upper_bits(u32 data
, u32 shift
)
742 return data
<< shift
;
745 static inline u32
clear_upper_bytes(u32 data
, u32 n
, u32 off
)
747 data
<<= ((sizeof(u32
) - n
) * BITS_PER_BYTE
);
748 data
>>= ((sizeof(u32
) - n
- off
) * BITS_PER_BYTE
);
752 static inline u32
get_upper_bits(u32 data
, u32 shift
)
754 return data
<< shift
;
757 static inline u32
set_upper_bits(u32 data
, u32 shift
)
759 return data
>> shift
;
762 static inline u32
clear_upper_bytes(u32 data
, u32 n
, u32 off
)
764 data
>>= ((sizeof(u32
) - n
) * BITS_PER_BYTE
);
765 data
<<= ((sizeof(u32
) - n
- off
) * BITS_PER_BYTE
);
770 static void copy_io(u32 __iomem
*piobuf
, struct qib_sge_state
*ss
,
771 u32 length
, unsigned flush_wc
)
778 u32 len
= ss
->sge
.length
;
783 if (len
> ss
->sge
.sge_length
)
784 len
= ss
->sge
.sge_length
;
786 /* If the source address is not aligned, try to align it. */
787 off
= (unsigned long)ss
->sge
.vaddr
& (sizeof(u32
) - 1);
789 u32
*addr
= (u32
*)((unsigned long)ss
->sge
.vaddr
&
791 u32 v
= get_upper_bits(*addr
, off
* BITS_PER_BYTE
);
794 y
= sizeof(u32
) - off
;
797 if (len
+ extra
>= sizeof(u32
)) {
798 data
|= set_upper_bits(v
, extra
*
800 len
= sizeof(u32
) - extra
;
805 __raw_writel(data
, piobuf
);
810 /* Clear unused upper bytes */
811 data
|= clear_upper_bytes(v
, len
, extra
);
819 /* Source address is aligned. */
820 u32
*addr
= (u32
*) ss
->sge
.vaddr
;
821 int shift
= extra
* BITS_PER_BYTE
;
822 int ushift
= 32 - shift
;
825 while (l
>= sizeof(u32
)) {
828 data
|= set_upper_bits(v
, shift
);
829 __raw_writel(data
, piobuf
);
830 data
= get_upper_bits(v
, ushift
);
836 * We still have 'extra' number of bytes leftover.
841 if (l
+ extra
>= sizeof(u32
)) {
842 data
|= set_upper_bits(v
, shift
);
843 len
-= l
+ extra
- sizeof(u32
);
848 __raw_writel(data
, piobuf
);
853 /* Clear unused upper bytes */
854 data
|= clear_upper_bytes(v
, l
, extra
);
861 } else if (len
== length
) {
865 } else if (len
== length
) {
869 * Need to round up for the last dword in the
873 qib_pio_copy(piobuf
, ss
->sge
.vaddr
, w
- 1);
875 last
= ((u32
*) ss
->sge
.vaddr
)[w
- 1];
880 qib_pio_copy(piobuf
, ss
->sge
.vaddr
, w
);
883 extra
= len
& (sizeof(u32
) - 1);
885 u32 v
= ((u32
*) ss
->sge
.vaddr
)[w
];
887 /* Clear unused upper bytes */
888 data
= clear_upper_bytes(v
, extra
, 0);
894 /* Update address before sending packet. */
895 update_sge(ss
, length
);
897 /* must flush early everything before trigger word */
899 __raw_writel(last
, piobuf
);
900 /* be sure trigger word is written */
903 __raw_writel(last
, piobuf
);
906 static struct qib_verbs_txreq
*get_txreq(struct qib_ibdev
*dev
,
907 struct qib_qp
*qp
, int *retp
)
909 struct qib_verbs_txreq
*tx
;
912 spin_lock_irqsave(&qp
->s_lock
, flags
);
913 spin_lock(&dev
->pending_lock
);
915 if (!list_empty(&dev
->txreq_free
)) {
916 struct list_head
*l
= dev
->txreq_free
.next
;
919 tx
= list_entry(l
, struct qib_verbs_txreq
, txreq
.list
);
922 if (ib_qib_state_ops
[qp
->state
] & QIB_PROCESS_RECV_OK
&&
923 list_empty(&qp
->iowait
)) {
925 qp
->s_flags
|= QIB_S_WAIT_TX
;
926 list_add_tail(&qp
->iowait
, &dev
->txwait
);
929 qp
->s_flags
&= ~QIB_S_BUSY
;
933 spin_unlock(&dev
->pending_lock
);
934 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
939 void qib_put_txreq(struct qib_verbs_txreq
*tx
)
941 struct qib_ibdev
*dev
;
946 dev
= to_idev(qp
->ibqp
.device
);
948 if (atomic_dec_and_test(&qp
->refcount
))
951 atomic_dec(&tx
->mr
->refcount
);
954 if (tx
->txreq
.flags
& QIB_SDMA_TXREQ_F_FREEBUF
) {
955 tx
->txreq
.flags
&= ~QIB_SDMA_TXREQ_F_FREEBUF
;
956 dma_unmap_single(&dd_from_dev(dev
)->pcidev
->dev
,
957 tx
->txreq
.addr
, tx
->hdr_dwords
<< 2,
959 kfree(tx
->align_buf
);
962 spin_lock_irqsave(&dev
->pending_lock
, flags
);
964 /* Put struct back on free list */
965 list_add(&tx
->txreq
.list
, &dev
->txreq_free
);
967 if (!list_empty(&dev
->txwait
)) {
968 /* Wake up first QP wanting a free struct */
969 qp
= list_entry(dev
->txwait
.next
, struct qib_qp
, iowait
);
970 list_del_init(&qp
->iowait
);
971 atomic_inc(&qp
->refcount
);
972 spin_unlock_irqrestore(&dev
->pending_lock
, flags
);
974 spin_lock_irqsave(&qp
->s_lock
, flags
);
975 if (qp
->s_flags
& QIB_S_WAIT_TX
) {
976 qp
->s_flags
&= ~QIB_S_WAIT_TX
;
977 qib_schedule_send(qp
);
979 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
981 if (atomic_dec_and_test(&qp
->refcount
))
984 spin_unlock_irqrestore(&dev
->pending_lock
, flags
);
988 * This is called when there are send DMA descriptors that might be
991 * This is called with ppd->sdma_lock held.
993 void qib_verbs_sdma_desc_avail(struct qib_pportdata
*ppd
, unsigned avail
)
995 struct qib_qp
*qp
, *nqp
;
996 struct qib_qp
*qps
[20];
997 struct qib_ibdev
*dev
;
1001 dev
= &ppd
->dd
->verbs_dev
;
1002 spin_lock(&dev
->pending_lock
);
1004 /* Search wait list for first QP wanting DMA descriptors. */
1005 list_for_each_entry_safe(qp
, nqp
, &dev
->dmawait
, iowait
) {
1006 if (qp
->port_num
!= ppd
->port
)
1008 if (n
== ARRAY_SIZE(qps
))
1010 if (qp
->s_tx
->txreq
.sg_count
> avail
)
1012 avail
-= qp
->s_tx
->txreq
.sg_count
;
1013 list_del_init(&qp
->iowait
);
1014 atomic_inc(&qp
->refcount
);
1018 spin_unlock(&dev
->pending_lock
);
1020 for (i
= 0; i
< n
; i
++) {
1022 spin_lock(&qp
->s_lock
);
1023 if (qp
->s_flags
& QIB_S_WAIT_DMA_DESC
) {
1024 qp
->s_flags
&= ~QIB_S_WAIT_DMA_DESC
;
1025 qib_schedule_send(qp
);
1027 spin_unlock(&qp
->s_lock
);
1028 if (atomic_dec_and_test(&qp
->refcount
))
1034 * This is called with ppd->sdma_lock held.
1036 static void sdma_complete(struct qib_sdma_txreq
*cookie
, int status
)
1038 struct qib_verbs_txreq
*tx
=
1039 container_of(cookie
, struct qib_verbs_txreq
, txreq
);
1040 struct qib_qp
*qp
= tx
->qp
;
1042 spin_lock(&qp
->s_lock
);
1044 qib_send_complete(qp
, tx
->wqe
, IB_WC_SUCCESS
);
1045 else if (qp
->ibqp
.qp_type
== IB_QPT_RC
) {
1046 struct qib_ib_header
*hdr
;
1048 if (tx
->txreq
.flags
& QIB_SDMA_TXREQ_F_FREEBUF
)
1049 hdr
= &tx
->align_buf
->hdr
;
1051 struct qib_ibdev
*dev
= to_idev(qp
->ibqp
.device
);
1053 hdr
= &dev
->pio_hdrs
[tx
->hdr_inx
].hdr
;
1055 qib_rc_send_complete(qp
, hdr
);
1057 if (atomic_dec_and_test(&qp
->s_dma_busy
)) {
1058 if (qp
->state
== IB_QPS_RESET
)
1059 wake_up(&qp
->wait_dma
);
1060 else if (qp
->s_flags
& QIB_S_WAIT_DMA
) {
1061 qp
->s_flags
&= ~QIB_S_WAIT_DMA
;
1062 qib_schedule_send(qp
);
1065 spin_unlock(&qp
->s_lock
);
1070 static int wait_kmem(struct qib_ibdev
*dev
, struct qib_qp
*qp
)
1072 unsigned long flags
;
1075 spin_lock_irqsave(&qp
->s_lock
, flags
);
1076 if (ib_qib_state_ops
[qp
->state
] & QIB_PROCESS_RECV_OK
) {
1077 spin_lock(&dev
->pending_lock
);
1078 if (list_empty(&qp
->iowait
)) {
1079 if (list_empty(&dev
->memwait
))
1080 mod_timer(&dev
->mem_timer
, jiffies
+ 1);
1081 qp
->s_flags
|= QIB_S_WAIT_KMEM
;
1082 list_add_tail(&qp
->iowait
, &dev
->memwait
);
1084 spin_unlock(&dev
->pending_lock
);
1085 qp
->s_flags
&= ~QIB_S_BUSY
;
1088 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1093 static int qib_verbs_send_dma(struct qib_qp
*qp
, struct qib_ib_header
*hdr
,
1094 u32 hdrwords
, struct qib_sge_state
*ss
, u32 len
,
1095 u32 plen
, u32 dwords
)
1097 struct qib_ibdev
*dev
= to_idev(qp
->ibqp
.device
);
1098 struct qib_devdata
*dd
= dd_from_dev(dev
);
1099 struct qib_ibport
*ibp
= to_iport(qp
->ibqp
.device
, qp
->port_num
);
1100 struct qib_pportdata
*ppd
= ppd_from_ibp(ibp
);
1101 struct qib_verbs_txreq
*tx
;
1102 struct qib_pio_header
*phdr
;
1110 /* resend previously constructed packet */
1111 ret
= qib_sdma_verbs_send(ppd
, tx
->ss
, tx
->dwords
, tx
);
1115 tx
= get_txreq(dev
, qp
, &ret
);
1119 control
= dd
->f_setpbc_control(ppd
, plen
, qp
->s_srate
,
1120 be16_to_cpu(hdr
->lrh
[0]) >> 12);
1122 atomic_inc(&qp
->refcount
);
1123 tx
->wqe
= qp
->s_wqe
;
1124 tx
->mr
= qp
->s_rdma_mr
;
1126 qp
->s_rdma_mr
= NULL
;
1127 tx
->txreq
.callback
= sdma_complete
;
1128 if (dd
->flags
& QIB_HAS_SDMA_TIMEOUT
)
1129 tx
->txreq
.flags
= QIB_SDMA_TXREQ_F_HEADTOHOST
;
1131 tx
->txreq
.flags
= QIB_SDMA_TXREQ_F_INTREQ
;
1132 if (plen
+ 1 > dd
->piosize2kmax_dwords
)
1133 tx
->txreq
.flags
|= QIB_SDMA_TXREQ_F_USELARGEBUF
;
1137 * Don't try to DMA if it takes more descriptors than
1140 ndesc
= qib_count_sge(ss
, len
);
1141 if (ndesc
>= ppd
->sdma_descq_cnt
)
1146 phdr
= &dev
->pio_hdrs
[tx
->hdr_inx
];
1147 phdr
->pbc
[0] = cpu_to_le32(plen
);
1148 phdr
->pbc
[1] = cpu_to_le32(control
);
1149 memcpy(&phdr
->hdr
, hdr
, hdrwords
<< 2);
1150 tx
->txreq
.flags
|= QIB_SDMA_TXREQ_F_FREEDESC
;
1151 tx
->txreq
.sg_count
= ndesc
;
1152 tx
->txreq
.addr
= dev
->pio_hdrs_phys
+
1153 tx
->hdr_inx
* sizeof(struct qib_pio_header
);
1154 tx
->hdr_dwords
= hdrwords
+ 2; /* add PBC length */
1155 ret
= qib_sdma_verbs_send(ppd
, ss
, dwords
, tx
);
1159 /* Allocate a buffer and copy the header and payload to it. */
1160 tx
->hdr_dwords
= plen
+ 1;
1161 phdr
= kmalloc(tx
->hdr_dwords
<< 2, GFP_ATOMIC
);
1164 phdr
->pbc
[0] = cpu_to_le32(plen
);
1165 phdr
->pbc
[1] = cpu_to_le32(control
);
1166 memcpy(&phdr
->hdr
, hdr
, hdrwords
<< 2);
1167 qib_copy_from_sge((u32
*) &phdr
->hdr
+ hdrwords
, ss
, len
);
1169 tx
->txreq
.addr
= dma_map_single(&dd
->pcidev
->dev
, phdr
,
1170 tx
->hdr_dwords
<< 2, DMA_TO_DEVICE
);
1171 if (dma_mapping_error(&dd
->pcidev
->dev
, tx
->txreq
.addr
))
1173 tx
->align_buf
= phdr
;
1174 tx
->txreq
.flags
|= QIB_SDMA_TXREQ_F_FREEBUF
;
1175 tx
->txreq
.sg_count
= 1;
1176 ret
= qib_sdma_verbs_send(ppd
, NULL
, 0, tx
);
1183 ret
= wait_kmem(dev
, qp
);
1191 * If we are now in the error state, return zero to flush the
1192 * send work request.
1194 static int no_bufs_available(struct qib_qp
*qp
)
1196 struct qib_ibdev
*dev
= to_idev(qp
->ibqp
.device
);
1197 struct qib_devdata
*dd
;
1198 unsigned long flags
;
1202 * Note that as soon as want_buffer() is called and
1203 * possibly before it returns, qib_ib_piobufavail()
1204 * could be called. Therefore, put QP on the I/O wait list before
1205 * enabling the PIO avail interrupt.
1207 spin_lock_irqsave(&qp
->s_lock
, flags
);
1208 if (ib_qib_state_ops
[qp
->state
] & QIB_PROCESS_RECV_OK
) {
1209 spin_lock(&dev
->pending_lock
);
1210 if (list_empty(&qp
->iowait
)) {
1212 qp
->s_flags
|= QIB_S_WAIT_PIO
;
1213 list_add_tail(&qp
->iowait
, &dev
->piowait
);
1214 dd
= dd_from_dev(dev
);
1215 dd
->f_wantpiobuf_intr(dd
, 1);
1217 spin_unlock(&dev
->pending_lock
);
1218 qp
->s_flags
&= ~QIB_S_BUSY
;
1221 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1225 static int qib_verbs_send_pio(struct qib_qp
*qp
, struct qib_ib_header
*ibhdr
,
1226 u32 hdrwords
, struct qib_sge_state
*ss
, u32 len
,
1227 u32 plen
, u32 dwords
)
1229 struct qib_devdata
*dd
= dd_from_ibdev(qp
->ibqp
.device
);
1230 struct qib_pportdata
*ppd
= dd
->pport
+ qp
->port_num
- 1;
1231 u32
*hdr
= (u32
*) ibhdr
;
1232 u32 __iomem
*piobuf_orig
;
1233 u32 __iomem
*piobuf
;
1235 unsigned long flags
;
1240 control
= dd
->f_setpbc_control(ppd
, plen
, qp
->s_srate
,
1241 be16_to_cpu(ibhdr
->lrh
[0]) >> 12);
1242 pbc
= ((u64
) control
<< 32) | plen
;
1243 piobuf
= dd
->f_getsendbuf(ppd
, pbc
, &pbufn
);
1244 if (unlikely(piobuf
== NULL
))
1245 return no_bufs_available(qp
);
1249 * We have to flush after the PBC for correctness on some cpus
1250 * or WC buffer can be written out of order.
1252 writeq(pbc
, piobuf
);
1253 piobuf_orig
= piobuf
;
1256 flush_wc
= dd
->flags
& QIB_PIO_FLUSH_WC
;
1259 * If there is just the header portion, must flush before
1260 * writing last word of header for correctness, and after
1261 * the last header word (trigger word).
1265 qib_pio_copy(piobuf
, hdr
, hdrwords
- 1);
1267 __raw_writel(hdr
[hdrwords
- 1], piobuf
+ hdrwords
- 1);
1270 qib_pio_copy(piobuf
, hdr
, hdrwords
);
1276 qib_pio_copy(piobuf
, hdr
, hdrwords
);
1279 /* The common case is aligned and contained in one segment. */
1280 if (likely(ss
->num_sge
== 1 && len
<= ss
->sge
.length
&&
1281 !((unsigned long)ss
->sge
.vaddr
& (sizeof(u32
) - 1)))) {
1282 u32
*addr
= (u32
*) ss
->sge
.vaddr
;
1284 /* Update address before sending packet. */
1285 update_sge(ss
, len
);
1287 qib_pio_copy(piobuf
, addr
, dwords
- 1);
1288 /* must flush early everything before trigger word */
1290 __raw_writel(addr
[dwords
- 1], piobuf
+ dwords
- 1);
1291 /* be sure trigger word is written */
1294 qib_pio_copy(piobuf
, addr
, dwords
);
1297 copy_io(piobuf
, ss
, len
, flush_wc
);
1299 if (dd
->flags
& QIB_USE_SPCL_TRIG
) {
1300 u32 spcl_off
= (pbufn
>= dd
->piobcnt2k
) ? 2047 : 1023;
1302 __raw_writel(0xaebecede, piobuf_orig
+ spcl_off
);
1304 qib_sendbuf_done(dd
, pbufn
);
1305 if (qp
->s_rdma_mr
) {
1306 atomic_dec(&qp
->s_rdma_mr
->refcount
);
1307 qp
->s_rdma_mr
= NULL
;
1310 spin_lock_irqsave(&qp
->s_lock
, flags
);
1311 qib_send_complete(qp
, qp
->s_wqe
, IB_WC_SUCCESS
);
1312 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1313 } else if (qp
->ibqp
.qp_type
== IB_QPT_RC
) {
1314 spin_lock_irqsave(&qp
->s_lock
, flags
);
1315 qib_rc_send_complete(qp
, ibhdr
);
1316 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1322 * qib_verbs_send - send a packet
1323 * @qp: the QP to send on
1324 * @hdr: the packet header
1325 * @hdrwords: the number of 32-bit words in the header
1326 * @ss: the SGE to send
1327 * @len: the length of the packet in bytes
1329 * Return zero if packet is sent or queued OK.
1330 * Return non-zero and clear qp->s_flags QIB_S_BUSY otherwise.
1332 int qib_verbs_send(struct qib_qp
*qp
, struct qib_ib_header
*hdr
,
1333 u32 hdrwords
, struct qib_sge_state
*ss
, u32 len
)
1335 struct qib_devdata
*dd
= dd_from_ibdev(qp
->ibqp
.device
);
1338 u32 dwords
= (len
+ 3) >> 2;
1341 * Calculate the send buffer trigger address.
1342 * The +1 counts for the pbc control dword following the pbc length.
1344 plen
= hdrwords
+ dwords
+ 1;
1347 * VL15 packets (IB_QPT_SMI) will always use PIO, so we
1348 * can defer SDMA restart until link goes ACTIVE without
1349 * worrying about just how we got there.
1351 if (qp
->ibqp
.qp_type
== IB_QPT_SMI
||
1352 !(dd
->flags
& QIB_HAS_SEND_DMA
))
1353 ret
= qib_verbs_send_pio(qp
, hdr
, hdrwords
, ss
, len
,
1356 ret
= qib_verbs_send_dma(qp
, hdr
, hdrwords
, ss
, len
,
1362 int qib_snapshot_counters(struct qib_pportdata
*ppd
, u64
*swords
,
1363 u64
*rwords
, u64
*spkts
, u64
*rpkts
,
1367 struct qib_devdata
*dd
= ppd
->dd
;
1369 if (!(dd
->flags
& QIB_PRESENT
)) {
1370 /* no hardware, freeze, etc. */
1374 *swords
= dd
->f_portcntr(ppd
, QIBPORTCNTR_WORDSEND
);
1375 *rwords
= dd
->f_portcntr(ppd
, QIBPORTCNTR_WORDRCV
);
1376 *spkts
= dd
->f_portcntr(ppd
, QIBPORTCNTR_PKTSEND
);
1377 *rpkts
= dd
->f_portcntr(ppd
, QIBPORTCNTR_PKTRCV
);
1378 *xmit_wait
= dd
->f_portcntr(ppd
, QIBPORTCNTR_SENDSTALL
);
1387 * qib_get_counters - get various chip counters
1388 * @dd: the qlogic_ib device
1389 * @cntrs: counters are placed here
1391 * Return the counters needed by recv_pma_get_portcounters().
1393 int qib_get_counters(struct qib_pportdata
*ppd
,
1394 struct qib_verbs_counters
*cntrs
)
1398 if (!(ppd
->dd
->flags
& QIB_PRESENT
)) {
1399 /* no hardware, freeze, etc. */
1403 cntrs
->symbol_error_counter
=
1404 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_IBSYMBOLERR
);
1405 cntrs
->link_error_recovery_counter
=
1406 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_IBLINKERRRECOV
);
1408 * The link downed counter counts when the other side downs the
1409 * connection. We add in the number of times we downed the link
1410 * due to local link integrity errors to compensate.
1412 cntrs
->link_downed_counter
=
1413 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_IBLINKDOWN
);
1414 cntrs
->port_rcv_errors
=
1415 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_RXDROPPKT
) +
1416 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_RCVOVFL
) +
1417 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_ERR_RLEN
) +
1418 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_INVALIDRLEN
) +
1419 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_ERRLINK
) +
1420 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_ERRICRC
) +
1421 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_ERRVCRC
) +
1422 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_ERRLPCRC
) +
1423 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_BADFORMAT
);
1424 cntrs
->port_rcv_errors
+=
1425 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_RXLOCALPHYERR
);
1426 cntrs
->port_rcv_errors
+=
1427 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_RXVLERR
);
1428 cntrs
->port_rcv_remphys_errors
=
1429 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_RCVEBP
);
1430 cntrs
->port_xmit_discards
=
1431 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_UNSUPVL
);
1432 cntrs
->port_xmit_data
= ppd
->dd
->f_portcntr(ppd
,
1433 QIBPORTCNTR_WORDSEND
);
1434 cntrs
->port_rcv_data
= ppd
->dd
->f_portcntr(ppd
,
1435 QIBPORTCNTR_WORDRCV
);
1436 cntrs
->port_xmit_packets
= ppd
->dd
->f_portcntr(ppd
,
1437 QIBPORTCNTR_PKTSEND
);
1438 cntrs
->port_rcv_packets
= ppd
->dd
->f_portcntr(ppd
,
1439 QIBPORTCNTR_PKTRCV
);
1440 cntrs
->local_link_integrity_errors
=
1441 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_LLI
);
1442 cntrs
->excessive_buffer_overrun_errors
=
1443 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_EXCESSBUFOVFL
);
1444 cntrs
->vl15_dropped
=
1445 ppd
->dd
->f_portcntr(ppd
, QIBPORTCNTR_VL15PKTDROP
);
1454 * qib_ib_piobufavail - callback when a PIO buffer is available
1455 * @dd: the device pointer
1457 * This is called from qib_intr() at interrupt level when a PIO buffer is
1458 * available after qib_verbs_send() returned an error that no buffers were
1459 * available. Disable the interrupt if there are no more QPs waiting.
1461 void qib_ib_piobufavail(struct qib_devdata
*dd
)
1463 struct qib_ibdev
*dev
= &dd
->verbs_dev
;
1464 struct list_head
*list
;
1465 struct qib_qp
*qps
[5];
1467 unsigned long flags
;
1470 list
= &dev
->piowait
;
1474 * Note: checking that the piowait list is empty and clearing
1475 * the buffer available interrupt needs to be atomic or we
1476 * could end up with QPs on the wait list with the interrupt
1479 spin_lock_irqsave(&dev
->pending_lock
, flags
);
1480 while (!list_empty(list
)) {
1481 if (n
== ARRAY_SIZE(qps
))
1483 qp
= list_entry(list
->next
, struct qib_qp
, iowait
);
1484 list_del_init(&qp
->iowait
);
1485 atomic_inc(&qp
->refcount
);
1488 dd
->f_wantpiobuf_intr(dd
, 0);
1490 spin_unlock_irqrestore(&dev
->pending_lock
, flags
);
1492 for (i
= 0; i
< n
; i
++) {
1495 spin_lock_irqsave(&qp
->s_lock
, flags
);
1496 if (qp
->s_flags
& QIB_S_WAIT_PIO
) {
1497 qp
->s_flags
&= ~QIB_S_WAIT_PIO
;
1498 qib_schedule_send(qp
);
1500 spin_unlock_irqrestore(&qp
->s_lock
, flags
);
1502 /* Notify qib_destroy_qp() if it is waiting. */
1503 if (atomic_dec_and_test(&qp
->refcount
))
1508 static int qib_query_device(struct ib_device
*ibdev
,
1509 struct ib_device_attr
*props
)
1511 struct qib_devdata
*dd
= dd_from_ibdev(ibdev
);
1512 struct qib_ibdev
*dev
= to_idev(ibdev
);
1514 memset(props
, 0, sizeof(*props
));
1516 props
->device_cap_flags
= IB_DEVICE_BAD_PKEY_CNTR
|
1517 IB_DEVICE_BAD_QKEY_CNTR
| IB_DEVICE_SHUTDOWN_PORT
|
1518 IB_DEVICE_SYS_IMAGE_GUID
| IB_DEVICE_RC_RNR_NAK_GEN
|
1519 IB_DEVICE_PORT_ACTIVE_EVENT
| IB_DEVICE_SRQ_RESIZE
;
1520 props
->page_size_cap
= PAGE_SIZE
;
1522 QIB_SRC_OUI_1
<< 16 | QIB_SRC_OUI_2
<< 8 | QIB_SRC_OUI_3
;
1523 props
->vendor_part_id
= dd
->deviceid
;
1524 props
->hw_ver
= dd
->minrev
;
1525 props
->sys_image_guid
= ib_qib_sys_image_guid
;
1526 props
->max_mr_size
= ~0ULL;
1527 props
->max_qp
= ib_qib_max_qps
;
1528 props
->max_qp_wr
= ib_qib_max_qp_wrs
;
1529 props
->max_sge
= ib_qib_max_sges
;
1530 props
->max_cq
= ib_qib_max_cqs
;
1531 props
->max_ah
= ib_qib_max_ahs
;
1532 props
->max_cqe
= ib_qib_max_cqes
;
1533 props
->max_mr
= dev
->lk_table
.max
;
1534 props
->max_fmr
= dev
->lk_table
.max
;
1535 props
->max_map_per_fmr
= 32767;
1536 props
->max_pd
= ib_qib_max_pds
;
1537 props
->max_qp_rd_atom
= QIB_MAX_RDMA_ATOMIC
;
1538 props
->max_qp_init_rd_atom
= 255;
1539 /* props->max_res_rd_atom */
1540 props
->max_srq
= ib_qib_max_srqs
;
1541 props
->max_srq_wr
= ib_qib_max_srq_wrs
;
1542 props
->max_srq_sge
= ib_qib_max_srq_sges
;
1543 /* props->local_ca_ack_delay */
1544 props
->atomic_cap
= IB_ATOMIC_GLOB
;
1545 props
->max_pkeys
= qib_get_npkeys(dd
);
1546 props
->max_mcast_grp
= ib_qib_max_mcast_grps
;
1547 props
->max_mcast_qp_attach
= ib_qib_max_mcast_qp_attached
;
1548 props
->max_total_mcast_qp_attach
= props
->max_mcast_qp_attach
*
1549 props
->max_mcast_grp
;
1554 static int qib_query_port(struct ib_device
*ibdev
, u8 port
,
1555 struct ib_port_attr
*props
)
1557 struct qib_devdata
*dd
= dd_from_ibdev(ibdev
);
1558 struct qib_ibport
*ibp
= to_iport(ibdev
, port
);
1559 struct qib_pportdata
*ppd
= ppd_from_ibp(ibp
);
1563 memset(props
, 0, sizeof(*props
));
1564 props
->lid
= lid
? lid
: be16_to_cpu(IB_LID_PERMISSIVE
);
1565 props
->lmc
= ppd
->lmc
;
1566 props
->sm_lid
= ibp
->sm_lid
;
1567 props
->sm_sl
= ibp
->sm_sl
;
1568 props
->state
= dd
->f_iblink_state(ppd
->lastibcstat
);
1569 props
->phys_state
= dd
->f_ibphys_portstate(ppd
->lastibcstat
);
1570 props
->port_cap_flags
= ibp
->port_cap_flags
;
1571 props
->gid_tbl_len
= QIB_GUIDS_PER_PORT
;
1572 props
->max_msg_sz
= 0x80000000;
1573 props
->pkey_tbl_len
= qib_get_npkeys(dd
);
1574 props
->bad_pkey_cntr
= ibp
->pkey_violations
;
1575 props
->qkey_viol_cntr
= ibp
->qkey_violations
;
1576 props
->active_width
= ppd
->link_width_active
;
1577 /* See rate_show() */
1578 props
->active_speed
= ppd
->link_speed_active
;
1579 props
->max_vl_num
= qib_num_vls(ppd
->vls_supported
);
1580 props
->init_type_reply
= 0;
1582 props
->max_mtu
= qib_ibmtu
? qib_ibmtu
: IB_MTU_4096
;
1583 switch (ppd
->ibmtu
) {
1602 props
->active_mtu
= mtu
;
1603 props
->subnet_timeout
= ibp
->subnet_timeout
;
1608 static int qib_modify_device(struct ib_device
*device
,
1609 int device_modify_mask
,
1610 struct ib_device_modify
*device_modify
)
1612 struct qib_devdata
*dd
= dd_from_ibdev(device
);
1616 if (device_modify_mask
& ~(IB_DEVICE_MODIFY_SYS_IMAGE_GUID
|
1617 IB_DEVICE_MODIFY_NODE_DESC
)) {
1622 if (device_modify_mask
& IB_DEVICE_MODIFY_NODE_DESC
) {
1623 memcpy(device
->node_desc
, device_modify
->node_desc
, 64);
1624 for (i
= 0; i
< dd
->num_pports
; i
++) {
1625 struct qib_ibport
*ibp
= &dd
->pport
[i
].ibport_data
;
1627 qib_node_desc_chg(ibp
);
1631 if (device_modify_mask
& IB_DEVICE_MODIFY_SYS_IMAGE_GUID
) {
1632 ib_qib_sys_image_guid
=
1633 cpu_to_be64(device_modify
->sys_image_guid
);
1634 for (i
= 0; i
< dd
->num_pports
; i
++) {
1635 struct qib_ibport
*ibp
= &dd
->pport
[i
].ibport_data
;
1637 qib_sys_guid_chg(ibp
);
1647 static int qib_modify_port(struct ib_device
*ibdev
, u8 port
,
1648 int port_modify_mask
, struct ib_port_modify
*props
)
1650 struct qib_ibport
*ibp
= to_iport(ibdev
, port
);
1651 struct qib_pportdata
*ppd
= ppd_from_ibp(ibp
);
1653 ibp
->port_cap_flags
|= props
->set_port_cap_mask
;
1654 ibp
->port_cap_flags
&= ~props
->clr_port_cap_mask
;
1655 if (props
->set_port_cap_mask
|| props
->clr_port_cap_mask
)
1656 qib_cap_mask_chg(ibp
);
1657 if (port_modify_mask
& IB_PORT_SHUTDOWN
)
1658 qib_set_linkstate(ppd
, QIB_IB_LINKDOWN
);
1659 if (port_modify_mask
& IB_PORT_RESET_QKEY_CNTR
)
1660 ibp
->qkey_violations
= 0;
1664 static int qib_query_gid(struct ib_device
*ibdev
, u8 port
,
1665 int index
, union ib_gid
*gid
)
1667 struct qib_devdata
*dd
= dd_from_ibdev(ibdev
);
1670 if (!port
|| port
> dd
->num_pports
)
1673 struct qib_ibport
*ibp
= to_iport(ibdev
, port
);
1674 struct qib_pportdata
*ppd
= ppd_from_ibp(ibp
);
1676 gid
->global
.subnet_prefix
= ibp
->gid_prefix
;
1678 gid
->global
.interface_id
= ppd
->guid
;
1679 else if (index
< QIB_GUIDS_PER_PORT
)
1680 gid
->global
.interface_id
= ibp
->guids
[index
- 1];
1688 static struct ib_pd
*qib_alloc_pd(struct ib_device
*ibdev
,
1689 struct ib_ucontext
*context
,
1690 struct ib_udata
*udata
)
1692 struct qib_ibdev
*dev
= to_idev(ibdev
);
1697 * This is actually totally arbitrary. Some correctness tests
1698 * assume there's a maximum number of PDs that can be allocated.
1699 * We don't actually have this limit, but we fail the test if
1700 * we allow allocations of more than we report for this value.
1703 pd
= kmalloc(sizeof *pd
, GFP_KERNEL
);
1705 ret
= ERR_PTR(-ENOMEM
);
1709 spin_lock(&dev
->n_pds_lock
);
1710 if (dev
->n_pds_allocated
== ib_qib_max_pds
) {
1711 spin_unlock(&dev
->n_pds_lock
);
1713 ret
= ERR_PTR(-ENOMEM
);
1717 dev
->n_pds_allocated
++;
1718 spin_unlock(&dev
->n_pds_lock
);
1720 /* ib_alloc_pd() will initialize pd->ibpd. */
1721 pd
->user
= udata
!= NULL
;
1729 static int qib_dealloc_pd(struct ib_pd
*ibpd
)
1731 struct qib_pd
*pd
= to_ipd(ibpd
);
1732 struct qib_ibdev
*dev
= to_idev(ibpd
->device
);
1734 spin_lock(&dev
->n_pds_lock
);
1735 dev
->n_pds_allocated
--;
1736 spin_unlock(&dev
->n_pds_lock
);
1743 int qib_check_ah(struct ib_device
*ibdev
, struct ib_ah_attr
*ah_attr
)
1745 /* A multicast address requires a GRH (see ch. 8.4.1). */
1746 if (ah_attr
->dlid
>= QIB_MULTICAST_LID_BASE
&&
1747 ah_attr
->dlid
!= QIB_PERMISSIVE_LID
&&
1748 !(ah_attr
->ah_flags
& IB_AH_GRH
))
1750 if ((ah_attr
->ah_flags
& IB_AH_GRH
) &&
1751 ah_attr
->grh
.sgid_index
>= QIB_GUIDS_PER_PORT
)
1753 if (ah_attr
->dlid
== 0)
1755 if (ah_attr
->port_num
< 1 ||
1756 ah_attr
->port_num
> ibdev
->phys_port_cnt
)
1758 if (ah_attr
->static_rate
!= IB_RATE_PORT_CURRENT
&&
1759 ib_rate_to_mult(ah_attr
->static_rate
) < 0)
1761 if (ah_attr
->sl
> 15)
1769 * qib_create_ah - create an address handle
1770 * @pd: the protection domain
1771 * @ah_attr: the attributes of the AH
1773 * This may be called from interrupt context.
1775 static struct ib_ah
*qib_create_ah(struct ib_pd
*pd
,
1776 struct ib_ah_attr
*ah_attr
)
1780 struct qib_ibdev
*dev
= to_idev(pd
->device
);
1781 unsigned long flags
;
1783 if (qib_check_ah(pd
->device
, ah_attr
)) {
1784 ret
= ERR_PTR(-EINVAL
);
1788 ah
= kmalloc(sizeof *ah
, GFP_ATOMIC
);
1790 ret
= ERR_PTR(-ENOMEM
);
1794 spin_lock_irqsave(&dev
->n_ahs_lock
, flags
);
1795 if (dev
->n_ahs_allocated
== ib_qib_max_ahs
) {
1796 spin_unlock_irqrestore(&dev
->n_ahs_lock
, flags
);
1798 ret
= ERR_PTR(-ENOMEM
);
1802 dev
->n_ahs_allocated
++;
1803 spin_unlock_irqrestore(&dev
->n_ahs_lock
, flags
);
1805 /* ib_create_ah() will initialize ah->ibah. */
1806 ah
->attr
= *ah_attr
;
1807 atomic_set(&ah
->refcount
, 0);
1816 * qib_destroy_ah - destroy an address handle
1817 * @ibah: the AH to destroy
1819 * This may be called from interrupt context.
1821 static int qib_destroy_ah(struct ib_ah
*ibah
)
1823 struct qib_ibdev
*dev
= to_idev(ibah
->device
);
1824 struct qib_ah
*ah
= to_iah(ibah
);
1825 unsigned long flags
;
1827 if (atomic_read(&ah
->refcount
) != 0)
1830 spin_lock_irqsave(&dev
->n_ahs_lock
, flags
);
1831 dev
->n_ahs_allocated
--;
1832 spin_unlock_irqrestore(&dev
->n_ahs_lock
, flags
);
1839 static int qib_modify_ah(struct ib_ah
*ibah
, struct ib_ah_attr
*ah_attr
)
1841 struct qib_ah
*ah
= to_iah(ibah
);
1843 if (qib_check_ah(ibah
->device
, ah_attr
))
1846 ah
->attr
= *ah_attr
;
1851 static int qib_query_ah(struct ib_ah
*ibah
, struct ib_ah_attr
*ah_attr
)
1853 struct qib_ah
*ah
= to_iah(ibah
);
1855 *ah_attr
= ah
->attr
;
1861 * qib_get_npkeys - return the size of the PKEY table for context 0
1862 * @dd: the qlogic_ib device
1864 unsigned qib_get_npkeys(struct qib_devdata
*dd
)
1866 return ARRAY_SIZE(dd
->rcd
[0]->pkeys
);
1870 * Return the indexed PKEY from the port PKEY table.
1871 * No need to validate rcd[ctxt]; the port is setup if we are here.
1873 unsigned qib_get_pkey(struct qib_ibport
*ibp
, unsigned index
)
1875 struct qib_pportdata
*ppd
= ppd_from_ibp(ibp
);
1876 struct qib_devdata
*dd
= ppd
->dd
;
1877 unsigned ctxt
= ppd
->hw_pidx
;
1880 /* dd->rcd null if mini_init or some init failures */
1881 if (!dd
->rcd
|| index
>= ARRAY_SIZE(dd
->rcd
[ctxt
]->pkeys
))
1884 ret
= dd
->rcd
[ctxt
]->pkeys
[index
];
1889 static int qib_query_pkey(struct ib_device
*ibdev
, u8 port
, u16 index
,
1892 struct qib_devdata
*dd
= dd_from_ibdev(ibdev
);
1895 if (index
>= qib_get_npkeys(dd
)) {
1900 *pkey
= qib_get_pkey(to_iport(ibdev
, port
), index
);
1908 * qib_alloc_ucontext - allocate a ucontest
1909 * @ibdev: the infiniband device
1910 * @udata: not used by the QLogic_IB driver
1913 static struct ib_ucontext
*qib_alloc_ucontext(struct ib_device
*ibdev
,
1914 struct ib_udata
*udata
)
1916 struct qib_ucontext
*context
;
1917 struct ib_ucontext
*ret
;
1919 context
= kmalloc(sizeof *context
, GFP_KERNEL
);
1921 ret
= ERR_PTR(-ENOMEM
);
1925 ret
= &context
->ibucontext
;
1931 static int qib_dealloc_ucontext(struct ib_ucontext
*context
)
1933 kfree(to_iucontext(context
));
1937 static void init_ibport(struct qib_pportdata
*ppd
)
1939 struct qib_verbs_counters cntrs
;
1940 struct qib_ibport
*ibp
= &ppd
->ibport_data
;
1942 spin_lock_init(&ibp
->lock
);
1943 /* Set the prefix to the default value (see ch. 4.1.1) */
1944 ibp
->gid_prefix
= IB_DEFAULT_GID_PREFIX
;
1945 ibp
->sm_lid
= be16_to_cpu(IB_LID_PERMISSIVE
);
1946 ibp
->port_cap_flags
= IB_PORT_SYS_IMAGE_GUID_SUP
|
1947 IB_PORT_CLIENT_REG_SUP
| IB_PORT_SL_MAP_SUP
|
1948 IB_PORT_TRAP_SUP
| IB_PORT_AUTO_MIGR_SUP
|
1949 IB_PORT_DR_NOTICE_SUP
| IB_PORT_CAP_MASK_NOTICE_SUP
|
1950 IB_PORT_OTHER_LOCAL_CHANGES_SUP
;
1951 if (ppd
->dd
->flags
& QIB_HAS_LINK_LATENCY
)
1952 ibp
->port_cap_flags
|= IB_PORT_LINK_LATENCY_SUP
;
1953 ibp
->pma_counter_select
[0] = IB_PMA_PORT_XMIT_DATA
;
1954 ibp
->pma_counter_select
[1] = IB_PMA_PORT_RCV_DATA
;
1955 ibp
->pma_counter_select
[2] = IB_PMA_PORT_XMIT_PKTS
;
1956 ibp
->pma_counter_select
[3] = IB_PMA_PORT_RCV_PKTS
;
1957 ibp
->pma_counter_select
[4] = IB_PMA_PORT_XMIT_WAIT
;
1959 /* Snapshot current HW counters to "clear" them. */
1960 qib_get_counters(ppd
, &cntrs
);
1961 ibp
->z_symbol_error_counter
= cntrs
.symbol_error_counter
;
1962 ibp
->z_link_error_recovery_counter
=
1963 cntrs
.link_error_recovery_counter
;
1964 ibp
->z_link_downed_counter
= cntrs
.link_downed_counter
;
1965 ibp
->z_port_rcv_errors
= cntrs
.port_rcv_errors
;
1966 ibp
->z_port_rcv_remphys_errors
= cntrs
.port_rcv_remphys_errors
;
1967 ibp
->z_port_xmit_discards
= cntrs
.port_xmit_discards
;
1968 ibp
->z_port_xmit_data
= cntrs
.port_xmit_data
;
1969 ibp
->z_port_rcv_data
= cntrs
.port_rcv_data
;
1970 ibp
->z_port_xmit_packets
= cntrs
.port_xmit_packets
;
1971 ibp
->z_port_rcv_packets
= cntrs
.port_rcv_packets
;
1972 ibp
->z_local_link_integrity_errors
=
1973 cntrs
.local_link_integrity_errors
;
1974 ibp
->z_excessive_buffer_overrun_errors
=
1975 cntrs
.excessive_buffer_overrun_errors
;
1976 ibp
->z_vl15_dropped
= cntrs
.vl15_dropped
;
1980 * qib_register_ib_device - register our device with the infiniband core
1981 * @dd: the device data structure
1982 * Return the allocated qib_ibdev pointer or NULL on error.
1984 int qib_register_ib_device(struct qib_devdata
*dd
)
1986 struct qib_ibdev
*dev
= &dd
->verbs_dev
;
1987 struct ib_device
*ibdev
= &dev
->ibdev
;
1988 struct qib_pportdata
*ppd
= dd
->pport
;
1989 unsigned i
, lk_tab_size
;
1992 dev
->qp_table_size
= ib_qib_qp_table_size
;
1993 dev
->qp_table
= kzalloc(dev
->qp_table_size
* sizeof *dev
->qp_table
,
1995 if (!dev
->qp_table
) {
2000 for (i
= 0; i
< dd
->num_pports
; i
++)
2001 init_ibport(ppd
+ i
);
2003 /* Only need to initialize non-zero fields. */
2004 spin_lock_init(&dev
->qpt_lock
);
2005 spin_lock_init(&dev
->n_pds_lock
);
2006 spin_lock_init(&dev
->n_ahs_lock
);
2007 spin_lock_init(&dev
->n_cqs_lock
);
2008 spin_lock_init(&dev
->n_qps_lock
);
2009 spin_lock_init(&dev
->n_srqs_lock
);
2010 spin_lock_init(&dev
->n_mcast_grps_lock
);
2011 init_timer(&dev
->mem_timer
);
2012 dev
->mem_timer
.function
= mem_timer
;
2013 dev
->mem_timer
.data
= (unsigned long) dev
;
2015 qib_init_qpn_table(dd
, &dev
->qpn_table
);
2018 * The top ib_qib_lkey_table_size bits are used to index the
2019 * table. The lower 8 bits can be owned by the user (copied from
2020 * the LKEY). The remaining bits act as a generation number or tag.
2022 spin_lock_init(&dev
->lk_table
.lock
);
2023 dev
->lk_table
.max
= 1 << ib_qib_lkey_table_size
;
2024 lk_tab_size
= dev
->lk_table
.max
* sizeof(*dev
->lk_table
.table
);
2025 dev
->lk_table
.table
= (struct qib_mregion
**)
2026 __get_free_pages(GFP_KERNEL
, get_order(lk_tab_size
));
2027 if (dev
->lk_table
.table
== NULL
) {
2031 memset(dev
->lk_table
.table
, 0, lk_tab_size
);
2032 INIT_LIST_HEAD(&dev
->pending_mmaps
);
2033 spin_lock_init(&dev
->pending_lock
);
2034 dev
->mmap_offset
= PAGE_SIZE
;
2035 spin_lock_init(&dev
->mmap_offset_lock
);
2036 INIT_LIST_HEAD(&dev
->piowait
);
2037 INIT_LIST_HEAD(&dev
->dmawait
);
2038 INIT_LIST_HEAD(&dev
->txwait
);
2039 INIT_LIST_HEAD(&dev
->memwait
);
2040 INIT_LIST_HEAD(&dev
->txreq_free
);
2042 if (ppd
->sdma_descq_cnt
) {
2043 dev
->pio_hdrs
= dma_alloc_coherent(&dd
->pcidev
->dev
,
2044 ppd
->sdma_descq_cnt
*
2045 sizeof(struct qib_pio_header
),
2046 &dev
->pio_hdrs_phys
,
2048 if (!dev
->pio_hdrs
) {
2054 for (i
= 0; i
< ppd
->sdma_descq_cnt
; i
++) {
2055 struct qib_verbs_txreq
*tx
;
2057 tx
= kzalloc(sizeof *tx
, GFP_KERNEL
);
2063 list_add(&tx
->txreq
.list
, &dev
->txreq_free
);
2067 * The system image GUID is supposed to be the same for all
2068 * IB HCAs in a single system but since there can be other
2069 * device types in the system, we can't be sure this is unique.
2071 if (!ib_qib_sys_image_guid
)
2072 ib_qib_sys_image_guid
= ppd
->guid
;
2074 strlcpy(ibdev
->name
, "qib%d", IB_DEVICE_NAME_MAX
);
2075 ibdev
->owner
= THIS_MODULE
;
2076 ibdev
->node_guid
= ppd
->guid
;
2077 ibdev
->uverbs_abi_ver
= QIB_UVERBS_ABI_VERSION
;
2078 ibdev
->uverbs_cmd_mask
=
2079 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT
) |
2080 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE
) |
2081 (1ull << IB_USER_VERBS_CMD_QUERY_PORT
) |
2082 (1ull << IB_USER_VERBS_CMD_ALLOC_PD
) |
2083 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD
) |
2084 (1ull << IB_USER_VERBS_CMD_CREATE_AH
) |
2085 (1ull << IB_USER_VERBS_CMD_MODIFY_AH
) |
2086 (1ull << IB_USER_VERBS_CMD_QUERY_AH
) |
2087 (1ull << IB_USER_VERBS_CMD_DESTROY_AH
) |
2088 (1ull << IB_USER_VERBS_CMD_REG_MR
) |
2089 (1ull << IB_USER_VERBS_CMD_DEREG_MR
) |
2090 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL
) |
2091 (1ull << IB_USER_VERBS_CMD_CREATE_CQ
) |
2092 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ
) |
2093 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ
) |
2094 (1ull << IB_USER_VERBS_CMD_POLL_CQ
) |
2095 (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ
) |
2096 (1ull << IB_USER_VERBS_CMD_CREATE_QP
) |
2097 (1ull << IB_USER_VERBS_CMD_QUERY_QP
) |
2098 (1ull << IB_USER_VERBS_CMD_MODIFY_QP
) |
2099 (1ull << IB_USER_VERBS_CMD_DESTROY_QP
) |
2100 (1ull << IB_USER_VERBS_CMD_POST_SEND
) |
2101 (1ull << IB_USER_VERBS_CMD_POST_RECV
) |
2102 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST
) |
2103 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST
) |
2104 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ
) |
2105 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ
) |
2106 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ
) |
2107 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ
) |
2108 (1ull << IB_USER_VERBS_CMD_POST_SRQ_RECV
);
2109 ibdev
->node_type
= RDMA_NODE_IB_CA
;
2110 ibdev
->phys_port_cnt
= dd
->num_pports
;
2111 ibdev
->num_comp_vectors
= 1;
2112 ibdev
->dma_device
= &dd
->pcidev
->dev
;
2113 ibdev
->query_device
= qib_query_device
;
2114 ibdev
->modify_device
= qib_modify_device
;
2115 ibdev
->query_port
= qib_query_port
;
2116 ibdev
->modify_port
= qib_modify_port
;
2117 ibdev
->query_pkey
= qib_query_pkey
;
2118 ibdev
->query_gid
= qib_query_gid
;
2119 ibdev
->alloc_ucontext
= qib_alloc_ucontext
;
2120 ibdev
->dealloc_ucontext
= qib_dealloc_ucontext
;
2121 ibdev
->alloc_pd
= qib_alloc_pd
;
2122 ibdev
->dealloc_pd
= qib_dealloc_pd
;
2123 ibdev
->create_ah
= qib_create_ah
;
2124 ibdev
->destroy_ah
= qib_destroy_ah
;
2125 ibdev
->modify_ah
= qib_modify_ah
;
2126 ibdev
->query_ah
= qib_query_ah
;
2127 ibdev
->create_srq
= qib_create_srq
;
2128 ibdev
->modify_srq
= qib_modify_srq
;
2129 ibdev
->query_srq
= qib_query_srq
;
2130 ibdev
->destroy_srq
= qib_destroy_srq
;
2131 ibdev
->create_qp
= qib_create_qp
;
2132 ibdev
->modify_qp
= qib_modify_qp
;
2133 ibdev
->query_qp
= qib_query_qp
;
2134 ibdev
->destroy_qp
= qib_destroy_qp
;
2135 ibdev
->post_send
= qib_post_send
;
2136 ibdev
->post_recv
= qib_post_receive
;
2137 ibdev
->post_srq_recv
= qib_post_srq_receive
;
2138 ibdev
->create_cq
= qib_create_cq
;
2139 ibdev
->destroy_cq
= qib_destroy_cq
;
2140 ibdev
->resize_cq
= qib_resize_cq
;
2141 ibdev
->poll_cq
= qib_poll_cq
;
2142 ibdev
->req_notify_cq
= qib_req_notify_cq
;
2143 ibdev
->get_dma_mr
= qib_get_dma_mr
;
2144 ibdev
->reg_phys_mr
= qib_reg_phys_mr
;
2145 ibdev
->reg_user_mr
= qib_reg_user_mr
;
2146 ibdev
->dereg_mr
= qib_dereg_mr
;
2147 ibdev
->alloc_fast_reg_mr
= qib_alloc_fast_reg_mr
;
2148 ibdev
->alloc_fast_reg_page_list
= qib_alloc_fast_reg_page_list
;
2149 ibdev
->free_fast_reg_page_list
= qib_free_fast_reg_page_list
;
2150 ibdev
->alloc_fmr
= qib_alloc_fmr
;
2151 ibdev
->map_phys_fmr
= qib_map_phys_fmr
;
2152 ibdev
->unmap_fmr
= qib_unmap_fmr
;
2153 ibdev
->dealloc_fmr
= qib_dealloc_fmr
;
2154 ibdev
->attach_mcast
= qib_multicast_attach
;
2155 ibdev
->detach_mcast
= qib_multicast_detach
;
2156 ibdev
->process_mad
= qib_process_mad
;
2157 ibdev
->mmap
= qib_mmap
;
2158 ibdev
->dma_ops
= &qib_dma_mapping_ops
;
2160 snprintf(ibdev
->node_desc
, sizeof(ibdev
->node_desc
),
2161 QIB_IDSTR
" %s", init_utsname()->nodename
);
2163 ret
= ib_register_device(ibdev
, qib_create_port_files
);
2167 ret
= qib_create_agents(dev
);
2171 if (qib_verbs_register_sysfs(dd
))
2177 qib_free_agents(dev
);
2179 ib_unregister_device(ibdev
);
2182 while (!list_empty(&dev
->txreq_free
)) {
2183 struct list_head
*l
= dev
->txreq_free
.next
;
2184 struct qib_verbs_txreq
*tx
;
2187 tx
= list_entry(l
, struct qib_verbs_txreq
, txreq
.list
);
2190 if (ppd
->sdma_descq_cnt
)
2191 dma_free_coherent(&dd
->pcidev
->dev
,
2192 ppd
->sdma_descq_cnt
*
2193 sizeof(struct qib_pio_header
),
2194 dev
->pio_hdrs
, dev
->pio_hdrs_phys
);
2196 free_pages((unsigned long) dev
->lk_table
.table
, get_order(lk_tab_size
));
2198 kfree(dev
->qp_table
);
2200 qib_dev_err(dd
, "cannot register verbs: %d!\n", -ret
);
2205 void qib_unregister_ib_device(struct qib_devdata
*dd
)
2207 struct qib_ibdev
*dev
= &dd
->verbs_dev
;
2208 struct ib_device
*ibdev
= &dev
->ibdev
;
2210 unsigned lk_tab_size
;
2212 qib_verbs_unregister_sysfs(dd
);
2214 qib_free_agents(dev
);
2216 ib_unregister_device(ibdev
);
2218 if (!list_empty(&dev
->piowait
))
2219 qib_dev_err(dd
, "piowait list not empty!\n");
2220 if (!list_empty(&dev
->dmawait
))
2221 qib_dev_err(dd
, "dmawait list not empty!\n");
2222 if (!list_empty(&dev
->txwait
))
2223 qib_dev_err(dd
, "txwait list not empty!\n");
2224 if (!list_empty(&dev
->memwait
))
2225 qib_dev_err(dd
, "memwait list not empty!\n");
2227 qib_dev_err(dd
, "DMA MR not NULL!\n");
2229 qps_inuse
= qib_free_all_qps(dd
);
2231 qib_dev_err(dd
, "QP memory leak! %u still in use\n",
2234 del_timer_sync(&dev
->mem_timer
);
2235 qib_free_qpn_table(&dev
->qpn_table
);
2236 while (!list_empty(&dev
->txreq_free
)) {
2237 struct list_head
*l
= dev
->txreq_free
.next
;
2238 struct qib_verbs_txreq
*tx
;
2241 tx
= list_entry(l
, struct qib_verbs_txreq
, txreq
.list
);
2244 if (dd
->pport
->sdma_descq_cnt
)
2245 dma_free_coherent(&dd
->pcidev
->dev
,
2246 dd
->pport
->sdma_descq_cnt
*
2247 sizeof(struct qib_pio_header
),
2248 dev
->pio_hdrs
, dev
->pio_hdrs_phys
);
2249 lk_tab_size
= dev
->lk_table
.max
* sizeof(*dev
->lk_table
.table
);
2250 free_pages((unsigned long) dev
->lk_table
.table
,
2251 get_order(lk_tab_size
));
2252 kfree(dev
->qp_table
);