1 /*
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.
5 *
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:
11 *
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
15 *
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
19 *
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.
24 *
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
32 * SOFTWARE.
33 */
34
35 #include <rdma/ib_mad.h>
36 #include <rdma/ib_user_verbs.h>
37 #include <linux/io.h>
38 #include <linux/module.h>
39 #include <linux/utsname.h>
40 #include <linux/rculist.h>
41 #include <linux/mm.h>
42 #include <linux/random.h>
43 #include <linux/vmalloc.h>
44
45 #include "qib.h"
46 #include "qib_common.h"
47
48 static unsigned int ib_qib_qp_table_size = 256;
49 module_param_named(qp_table_size, ib_qib_qp_table_size, uint, S_IRUGO);
50 MODULE_PARM_DESC(qp_table_size, "QP table size");
51
52 unsigned int ib_qib_lkey_table_size = 16;
53 module_param_named(lkey_table_size, ib_qib_lkey_table_size, uint,
54 S_IRUGO);
55 MODULE_PARM_DESC(lkey_table_size,
56 "LKEY table size in bits (2^n, 1 <= n <= 23)");
57
58 static unsigned int ib_qib_max_pds = 0xFFFF;
59 module_param_named(max_pds, ib_qib_max_pds, uint, S_IRUGO);
60 MODULE_PARM_DESC(max_pds,
61 "Maximum number of protection domains to support");
62
63 static unsigned int ib_qib_max_ahs = 0xFFFF;
64 module_param_named(max_ahs, ib_qib_max_ahs, uint, S_IRUGO);
65 MODULE_PARM_DESC(max_ahs, "Maximum number of address handles to support");
66
67 unsigned int ib_qib_max_cqes = 0x2FFFF;
68 module_param_named(max_cqes, ib_qib_max_cqes, uint, S_IRUGO);
69 MODULE_PARM_DESC(max_cqes,
70 "Maximum number of completion queue entries to support");
71
72 unsigned int ib_qib_max_cqs = 0x1FFFF;
73 module_param_named(max_cqs, ib_qib_max_cqs, uint, S_IRUGO);
74 MODULE_PARM_DESC(max_cqs, "Maximum number of completion queues to support");
75
76 unsigned int ib_qib_max_qp_wrs = 0x3FFF;
77 module_param_named(max_qp_wrs, ib_qib_max_qp_wrs, uint, S_IRUGO);
78 MODULE_PARM_DESC(max_qp_wrs, "Maximum number of QP WRs to support");
79
80 unsigned int ib_qib_max_qps = 16384;
81 module_param_named(max_qps, ib_qib_max_qps, uint, S_IRUGO);
82 MODULE_PARM_DESC(max_qps, "Maximum number of QPs to support");
83
84 unsigned int ib_qib_max_sges = 0x60;
85 module_param_named(max_sges, ib_qib_max_sges, uint, S_IRUGO);
86 MODULE_PARM_DESC(max_sges, "Maximum number of SGEs to support");
87
88 unsigned int ib_qib_max_mcast_grps = 16384;
89 module_param_named(max_mcast_grps, ib_qib_max_mcast_grps, uint, S_IRUGO);
90 MODULE_PARM_DESC(max_mcast_grps,
91 "Maximum number of multicast groups to support");
92
93 unsigned int ib_qib_max_mcast_qp_attached = 16;
94 module_param_named(max_mcast_qp_attached, ib_qib_max_mcast_qp_attached,
95 uint, S_IRUGO);
96 MODULE_PARM_DESC(max_mcast_qp_attached,
97 "Maximum number of attached QPs to support");
98
99 unsigned int ib_qib_max_srqs = 1024;
100 module_param_named(max_srqs, ib_qib_max_srqs, uint, S_IRUGO);
101 MODULE_PARM_DESC(max_srqs, "Maximum number of SRQs to support");
102
103 unsigned int ib_qib_max_srq_sges = 128;
104 module_param_named(max_srq_sges, ib_qib_max_srq_sges, uint, S_IRUGO);
105 MODULE_PARM_DESC(max_srq_sges, "Maximum number of SRQ SGEs to support");
106
107 unsigned int ib_qib_max_srq_wrs = 0x1FFFF;
108 module_param_named(max_srq_wrs, ib_qib_max_srq_wrs, uint, S_IRUGO);
109 MODULE_PARM_DESC(max_srq_wrs, "Maximum number of SRQ WRs support");
110
111 static unsigned int ib_qib_disable_sma;
112 module_param_named(disable_sma, ib_qib_disable_sma, uint, S_IWUSR | S_IRUGO);
113 MODULE_PARM_DESC(disable_sma, "Disable the SMA");
114
115 /*
116 * Note that it is OK to post send work requests in the SQE and ERR
117 * states; qib_do_send() will process them and generate error
118 * completions as per IB 1.2 C10-96.
119 */
120 const int ib_qib_state_ops[IB_QPS_ERR + 1] = {
121 [IB_QPS_RESET] = 0,
122 [IB_QPS_INIT] = QIB_POST_RECV_OK,
123 [IB_QPS_RTR] = QIB_POST_RECV_OK | QIB_PROCESS_RECV_OK,
124 [IB_QPS_RTS] = QIB_POST_RECV_OK | QIB_PROCESS_RECV_OK |
125 QIB_POST_SEND_OK | QIB_PROCESS_SEND_OK |
126 QIB_PROCESS_NEXT_SEND_OK,
127 [IB_QPS_SQD] = QIB_POST_RECV_OK | QIB_PROCESS_RECV_OK |
128 QIB_POST_SEND_OK | QIB_PROCESS_SEND_OK,
129 [IB_QPS_SQE] = QIB_POST_RECV_OK | QIB_PROCESS_RECV_OK |
130 QIB_POST_SEND_OK | QIB_FLUSH_SEND,
131 [IB_QPS_ERR] = QIB_POST_RECV_OK | QIB_FLUSH_RECV |
132 QIB_POST_SEND_OK | QIB_FLUSH_SEND,
133 };
134
135 struct qib_ucontext {
136 struct ib_ucontext ibucontext;
137 };
138
to_iucontext(struct ib_ucontext * ibucontext)139 static inline struct qib_ucontext *to_iucontext(struct ib_ucontext
140 *ibucontext)
141 {
142 return container_of(ibucontext, struct qib_ucontext, ibucontext);
143 }
144
145 /*
146 * Translate ib_wr_opcode into ib_wc_opcode.
147 */
148 const enum ib_wc_opcode ib_qib_wc_opcode[] = {
149 [IB_WR_RDMA_WRITE] = IB_WC_RDMA_WRITE,
150 [IB_WR_RDMA_WRITE_WITH_IMM] = IB_WC_RDMA_WRITE,
151 [IB_WR_SEND] = IB_WC_SEND,
152 [IB_WR_SEND_WITH_IMM] = IB_WC_SEND,
153 [IB_WR_RDMA_READ] = IB_WC_RDMA_READ,
154 [IB_WR_ATOMIC_CMP_AND_SWP] = IB_WC_COMP_SWAP,
155 [IB_WR_ATOMIC_FETCH_AND_ADD] = IB_WC_FETCH_ADD
156 };
157
158 /*
159 * System image GUID.
160 */
161 __be64 ib_qib_sys_image_guid;
162
163 /**
164 * qib_copy_sge - copy data to SGE memory
165 * @ss: the SGE state
166 * @data: the data to copy
167 * @length: the length of the data
168 */
qib_copy_sge(struct qib_sge_state * ss,void * data,u32 length,int release)169 void qib_copy_sge(struct qib_sge_state *ss, void *data, u32 length, int release)
170 {
171 struct qib_sge *sge = &ss->sge;
172
173 while (length) {
174 u32 len = sge->length;
175
176 if (len > length)
177 len = length;
178 if (len > sge->sge_length)
179 len = sge->sge_length;
180 BUG_ON(len == 0);
181 memcpy(sge->vaddr, data, len);
182 sge->vaddr += len;
183 sge->length -= len;
184 sge->sge_length -= len;
185 if (sge->sge_length == 0) {
186 if (release)
187 qib_put_mr(sge->mr);
188 if (--ss->num_sge)
189 *sge = *ss->sg_list++;
190 } else if (sge->length == 0 && sge->mr->lkey) {
191 if (++sge->n >= QIB_SEGSZ) {
192 if (++sge->m >= sge->mr->mapsz)
193 break;
194 sge->n = 0;
195 }
196 sge->vaddr =
197 sge->mr->map[sge->m]->segs[sge->n].vaddr;
198 sge->length =
199 sge->mr->map[sge->m]->segs[sge->n].length;
200 }
201 data += len;
202 length -= len;
203 }
204 }
205
206 /**
207 * qib_skip_sge - skip over SGE memory - XXX almost dup of prev func
208 * @ss: the SGE state
209 * @length: the number of bytes to skip
210 */
qib_skip_sge(struct qib_sge_state * ss,u32 length,int release)211 void qib_skip_sge(struct qib_sge_state *ss, u32 length, int release)
212 {
213 struct qib_sge *sge = &ss->sge;
214
215 while (length) {
216 u32 len = sge->length;
217
218 if (len > length)
219 len = length;
220 if (len > sge->sge_length)
221 len = sge->sge_length;
222 BUG_ON(len == 0);
223 sge->vaddr += len;
224 sge->length -= len;
225 sge->sge_length -= len;
226 if (sge->sge_length == 0) {
227 if (release)
228 qib_put_mr(sge->mr);
229 if (--ss->num_sge)
230 *sge = *ss->sg_list++;
231 } else if (sge->length == 0 && sge->mr->lkey) {
232 if (++sge->n >= QIB_SEGSZ) {
233 if (++sge->m >= sge->mr->mapsz)
234 break;
235 sge->n = 0;
236 }
237 sge->vaddr =
238 sge->mr->map[sge->m]->segs[sge->n].vaddr;
239 sge->length =
240 sge->mr->map[sge->m]->segs[sge->n].length;
241 }
242 length -= len;
243 }
244 }
245
246 /*
247 * Count the number of DMA descriptors needed to send length bytes of data.
248 * Don't modify the qib_sge_state to get the count.
249 * Return zero if any of the segments is not aligned.
250 */
qib_count_sge(struct qib_sge_state * ss,u32 length)251 static u32 qib_count_sge(struct qib_sge_state *ss, u32 length)
252 {
253 struct qib_sge *sg_list = ss->sg_list;
254 struct qib_sge sge = ss->sge;
255 u8 num_sge = ss->num_sge;
256 u32 ndesc = 1; /* count the header */
257
258 while (length) {
259 u32 len = sge.length;
260
261 if (len > length)
262 len = length;
263 if (len > sge.sge_length)
264 len = sge.sge_length;
265 BUG_ON(len == 0);
266 if (((long) sge.vaddr & (sizeof(u32) - 1)) ||
267 (len != length && (len & (sizeof(u32) - 1)))) {
268 ndesc = 0;
269 break;
270 }
271 ndesc++;
272 sge.vaddr += len;
273 sge.length -= len;
274 sge.sge_length -= len;
275 if (sge.sge_length == 0) {
276 if (--num_sge)
277 sge = *sg_list++;
278 } else if (sge.length == 0 && sge.mr->lkey) {
279 if (++sge.n >= QIB_SEGSZ) {
280 if (++sge.m >= sge.mr->mapsz)
281 break;
282 sge.n = 0;
283 }
284 sge.vaddr =
285 sge.mr->map[sge.m]->segs[sge.n].vaddr;
286 sge.length =
287 sge.mr->map[sge.m]->segs[sge.n].length;
288 }
289 length -= len;
290 }
291 return ndesc;
292 }
293
294 /*
295 * Copy from the SGEs to the data buffer.
296 */
qib_copy_from_sge(void * data,struct qib_sge_state * ss,u32 length)297 static void qib_copy_from_sge(void *data, struct qib_sge_state *ss, u32 length)
298 {
299 struct qib_sge *sge = &ss->sge;
300
301 while (length) {
302 u32 len = sge->length;
303
304 if (len > length)
305 len = length;
306 if (len > sge->sge_length)
307 len = sge->sge_length;
308 BUG_ON(len == 0);
309 memcpy(data, sge->vaddr, len);
310 sge->vaddr += len;
311 sge->length -= len;
312 sge->sge_length -= len;
313 if (sge->sge_length == 0) {
314 if (--ss->num_sge)
315 *sge = *ss->sg_list++;
316 } else if (sge->length == 0 && sge->mr->lkey) {
317 if (++sge->n >= QIB_SEGSZ) {
318 if (++sge->m >= sge->mr->mapsz)
319 break;
320 sge->n = 0;
321 }
322 sge->vaddr =
323 sge->mr->map[sge->m]->segs[sge->n].vaddr;
324 sge->length =
325 sge->mr->map[sge->m]->segs[sge->n].length;
326 }
327 data += len;
328 length -= len;
329 }
330 }
331
332 /**
333 * qib_post_one_send - post one RC, UC, or UD send work request
334 * @qp: the QP to post on
335 * @wr: the work request to send
336 */
qib_post_one_send(struct qib_qp * qp,struct ib_send_wr * wr,int * scheduled)337 static int qib_post_one_send(struct qib_qp *qp, struct ib_send_wr *wr,
338 int *scheduled)
339 {
340 struct qib_swqe *wqe;
341 u32 next;
342 int i;
343 int j;
344 int acc;
345 int ret;
346 unsigned long flags;
347 struct qib_lkey_table *rkt;
348 struct qib_pd *pd;
349
350 spin_lock_irqsave(&qp->s_lock, flags);
351
352 /* Check that state is OK to post send. */
353 if (unlikely(!(ib_qib_state_ops[qp->state] & QIB_POST_SEND_OK)))
354 goto bail_inval;
355
356 /* IB spec says that num_sge == 0 is OK. */
357 if (wr->num_sge > qp->s_max_sge)
358 goto bail_inval;
359
360 /*
361 * Don't allow RDMA reads or atomic operations on UC or
362 * undefined operations.
363 * Make sure buffer is large enough to hold the result for atomics.
364 */
365 if (wr->opcode == IB_WR_FAST_REG_MR) {
366 if (qib_fast_reg_mr(qp, wr))
367 goto bail_inval;
368 } else if (qp->ibqp.qp_type == IB_QPT_UC) {
369 if ((unsigned) wr->opcode >= IB_WR_RDMA_READ)
370 goto bail_inval;
371 } else if (qp->ibqp.qp_type != IB_QPT_RC) {
372 /* Check IB_QPT_SMI, IB_QPT_GSI, IB_QPT_UD opcode */
373 if (wr->opcode != IB_WR_SEND &&
374 wr->opcode != IB_WR_SEND_WITH_IMM)
375 goto bail_inval;
376 /* Check UD destination address PD */
377 if (qp->ibqp.pd != wr->wr.ud.ah->pd)
378 goto bail_inval;
379 } else if ((unsigned) wr->opcode > IB_WR_ATOMIC_FETCH_AND_ADD)
380 goto bail_inval;
381 else if (wr->opcode >= IB_WR_ATOMIC_CMP_AND_SWP &&
382 (wr->num_sge == 0 ||
383 wr->sg_list[0].length < sizeof(u64) ||
384 wr->sg_list[0].addr & (sizeof(u64) - 1)))
385 goto bail_inval;
386 else if (wr->opcode >= IB_WR_RDMA_READ && !qp->s_max_rd_atomic)
387 goto bail_inval;
388
389 next = qp->s_head + 1;
390 if (next >= qp->s_size)
391 next = 0;
392 if (next == qp->s_last) {
393 ret = -ENOMEM;
394 goto bail;
395 }
396
397 rkt = &to_idev(qp->ibqp.device)->lk_table;
398 pd = to_ipd(qp->ibqp.pd);
399 wqe = get_swqe_ptr(qp, qp->s_head);
400 wqe->wr = *wr;
401 wqe->length = 0;
402 j = 0;
403 if (wr->num_sge) {
404 acc = wr->opcode >= IB_WR_RDMA_READ ?
405 IB_ACCESS_LOCAL_WRITE : 0;
406 for (i = 0; i < wr->num_sge; i++) {
407 u32 length = wr->sg_list[i].length;
408 int ok;
409
410 if (length == 0)
411 continue;
412 ok = qib_lkey_ok(rkt, pd, &wqe->sg_list[j],
413 &wr->sg_list[i], acc);
414 if (!ok)
415 goto bail_inval_free;
416 wqe->length += length;
417 j++;
418 }
419 wqe->wr.num_sge = j;
420 }
421 if (qp->ibqp.qp_type == IB_QPT_UC ||
422 qp->ibqp.qp_type == IB_QPT_RC) {
423 if (wqe->length > 0x80000000U)
424 goto bail_inval_free;
425 } else if (wqe->length > (dd_from_ibdev(qp->ibqp.device)->pport +
426 qp->port_num - 1)->ibmtu)
427 goto bail_inval_free;
428 else
429 atomic_inc(&to_iah(wr->wr.ud.ah)->refcount);
430 wqe->ssn = qp->s_ssn++;
431 qp->s_head = next;
432
433 ret = 0;
434 goto bail;
435
436 bail_inval_free:
437 while (j) {
438 struct qib_sge *sge = &wqe->sg_list[--j];
439
440 qib_put_mr(sge->mr);
441 }
442 bail_inval:
443 ret = -EINVAL;
444 bail:
445 if (!ret && !wr->next &&
446 !qib_sdma_empty(
447 dd_from_ibdev(qp->ibqp.device)->pport + qp->port_num - 1)) {
448 qib_schedule_send(qp);
449 *scheduled = 1;
450 }
451 spin_unlock_irqrestore(&qp->s_lock, flags);
452 return ret;
453 }
454
455 /**
456 * qib_post_send - post a send on a QP
457 * @ibqp: the QP to post the send on
458 * @wr: the list of work requests to post
459 * @bad_wr: the first bad WR is put here
460 *
461 * This may be called from interrupt context.
462 */
qib_post_send(struct ib_qp * ibqp,struct ib_send_wr * wr,struct ib_send_wr ** bad_wr)463 static int qib_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
464 struct ib_send_wr **bad_wr)
465 {
466 struct qib_qp *qp = to_iqp(ibqp);
467 int err = 0;
468 int scheduled = 0;
469
470 for (; wr; wr = wr->next) {
471 err = qib_post_one_send(qp, wr, &scheduled);
472 if (err) {
473 *bad_wr = wr;
474 goto bail;
475 }
476 }
477
478 /* Try to do the send work in the caller's context. */
479 if (!scheduled)
480 qib_do_send(&qp->s_work);
481
482 bail:
483 return err;
484 }
485
486 /**
487 * qib_post_receive - post a receive on a QP
488 * @ibqp: the QP to post the receive on
489 * @wr: the WR to post
490 * @bad_wr: the first bad WR is put here
491 *
492 * This may be called from interrupt context.
493 */
qib_post_receive(struct ib_qp * ibqp,struct ib_recv_wr * wr,struct ib_recv_wr ** bad_wr)494 static int qib_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
495 struct ib_recv_wr **bad_wr)
496 {
497 struct qib_qp *qp = to_iqp(ibqp);
498 struct qib_rwq *wq = qp->r_rq.wq;
499 unsigned long flags;
500 int ret;
501
502 /* Check that state is OK to post receive. */
503 if (!(ib_qib_state_ops[qp->state] & QIB_POST_RECV_OK) || !wq) {
504 *bad_wr = wr;
505 ret = -EINVAL;
506 goto bail;
507 }
508
509 for (; wr; wr = wr->next) {
510 struct qib_rwqe *wqe;
511 u32 next;
512 int i;
513
514 if ((unsigned) wr->num_sge > qp->r_rq.max_sge) {
515 *bad_wr = wr;
516 ret = -EINVAL;
517 goto bail;
518 }
519
520 spin_lock_irqsave(&qp->r_rq.lock, flags);
521 next = wq->head + 1;
522 if (next >= qp->r_rq.size)
523 next = 0;
524 if (next == wq->tail) {
525 spin_unlock_irqrestore(&qp->r_rq.lock, flags);
526 *bad_wr = wr;
527 ret = -ENOMEM;
528 goto bail;
529 }
530
531 wqe = get_rwqe_ptr(&qp->r_rq, wq->head);
532 wqe->wr_id = wr->wr_id;
533 wqe->num_sge = wr->num_sge;
534 for (i = 0; i < wr->num_sge; i++)
535 wqe->sg_list[i] = wr->sg_list[i];
536 /* Make sure queue entry is written before the head index. */
537 smp_wmb();
538 wq->head = next;
539 spin_unlock_irqrestore(&qp->r_rq.lock, flags);
540 }
541 ret = 0;
542
543 bail:
544 return ret;
545 }
546
547 /**
548 * qib_qp_rcv - processing an incoming packet on a QP
549 * @rcd: the context pointer
550 * @hdr: the packet header
551 * @has_grh: true if the packet has a GRH
552 * @data: the packet data
553 * @tlen: the packet length
554 * @qp: the QP the packet came on
555 *
556 * This is called from qib_ib_rcv() to process an incoming packet
557 * for the given QP.
558 * Called at interrupt level.
559 */
qib_qp_rcv(struct qib_ctxtdata * rcd,struct qib_ib_header * hdr,int has_grh,void * data,u32 tlen,struct qib_qp * qp)560 static void qib_qp_rcv(struct qib_ctxtdata *rcd, struct qib_ib_header *hdr,
561 int has_grh, void *data, u32 tlen, struct qib_qp *qp)
562 {
563 struct qib_ibport *ibp = &rcd->ppd->ibport_data;
564
565 spin_lock(&qp->r_lock);
566
567 /* Check for valid receive state. */
568 if (!(ib_qib_state_ops[qp->state] & QIB_PROCESS_RECV_OK)) {
569 ibp->n_pkt_drops++;
570 goto unlock;
571 }
572
573 switch (qp->ibqp.qp_type) {
574 case IB_QPT_SMI:
575 case IB_QPT_GSI:
576 if (ib_qib_disable_sma)
577 break;
578 /* FALLTHROUGH */
579 case IB_QPT_UD:
580 qib_ud_rcv(ibp, hdr, has_grh, data, tlen, qp);
581 break;
582
583 case IB_QPT_RC:
584 qib_rc_rcv(rcd, hdr, has_grh, data, tlen, qp);
585 break;
586
587 case IB_QPT_UC:
588 qib_uc_rcv(ibp, hdr, has_grh, data, tlen, qp);
589 break;
590
591 default:
592 break;
593 }
594
595 unlock:
596 spin_unlock(&qp->r_lock);
597 }
598
599 /**
600 * qib_ib_rcv - process an incoming packet
601 * @rcd: the context pointer
602 * @rhdr: the header of the packet
603 * @data: the packet payload
604 * @tlen: the packet length
605 *
606 * This is called from qib_kreceive() to process an incoming packet at
607 * interrupt level. Tlen is the length of the header + data + CRC in bytes.
608 */
qib_ib_rcv(struct qib_ctxtdata * rcd,void * rhdr,void * data,u32 tlen)609 void qib_ib_rcv(struct qib_ctxtdata *rcd, void *rhdr, void *data, u32 tlen)
610 {
611 struct qib_pportdata *ppd = rcd->ppd;
612 struct qib_ibport *ibp = &ppd->ibport_data;
613 struct qib_ib_header *hdr = rhdr;
614 struct qib_other_headers *ohdr;
615 struct qib_qp *qp;
616 u32 qp_num;
617 int lnh;
618 u8 opcode;
619 u16 lid;
620
621 /* 24 == LRH+BTH+CRC */
622 if (unlikely(tlen < 24))
623 goto drop;
624
625 /* Check for a valid destination LID (see ch. 7.11.1). */
626 lid = be16_to_cpu(hdr->lrh[1]);
627 if (lid < QIB_MULTICAST_LID_BASE) {
628 lid &= ~((1 << ppd->lmc) - 1);
629 if (unlikely(lid != ppd->lid))
630 goto drop;
631 }
632
633 /* Check for GRH */
634 lnh = be16_to_cpu(hdr->lrh[0]) & 3;
635 if (lnh == QIB_LRH_BTH)
636 ohdr = &hdr->u.oth;
637 else if (lnh == QIB_LRH_GRH) {
638 u32 vtf;
639
640 ohdr = &hdr->u.l.oth;
641 if (hdr->u.l.grh.next_hdr != IB_GRH_NEXT_HDR)
642 goto drop;
643 vtf = be32_to_cpu(hdr->u.l.grh.version_tclass_flow);
644 if ((vtf >> IB_GRH_VERSION_SHIFT) != IB_GRH_VERSION)
645 goto drop;
646 } else
647 goto drop;
648
649 opcode = (be32_to_cpu(ohdr->bth[0]) >> 24) & 0x7f;
650 #ifdef CONFIG_DEBUG_FS
651 rcd->opstats->stats[opcode].n_bytes += tlen;
652 rcd->opstats->stats[opcode].n_packets++;
653 #endif
654
655 /* Get the destination QP number. */
656 qp_num = be32_to_cpu(ohdr->bth[1]) & QIB_QPN_MASK;
657 if (qp_num == QIB_MULTICAST_QPN) {
658 struct qib_mcast *mcast;
659 struct qib_mcast_qp *p;
660
661 if (lnh != QIB_LRH_GRH)
662 goto drop;
663 mcast = qib_mcast_find(ibp, &hdr->u.l.grh.dgid);
664 if (mcast == NULL)
665 goto drop;
666 this_cpu_inc(ibp->pmastats->n_multicast_rcv);
667 list_for_each_entry_rcu(p, &mcast->qp_list, list)
668 qib_qp_rcv(rcd, hdr, 1, data, tlen, p->qp);
669 /*
670 * Notify qib_multicast_detach() if it is waiting for us
671 * to finish.
672 */
673 if (atomic_dec_return(&mcast->refcount) <= 1)
674 wake_up(&mcast->wait);
675 } else {
676 if (rcd->lookaside_qp) {
677 if (rcd->lookaside_qpn != qp_num) {
678 if (atomic_dec_and_test(
679 &rcd->lookaside_qp->refcount))
680 wake_up(
681 &rcd->lookaside_qp->wait);
682 rcd->lookaside_qp = NULL;
683 }
684 }
685 if (!rcd->lookaside_qp) {
686 qp = qib_lookup_qpn(ibp, qp_num);
687 if (!qp)
688 goto drop;
689 rcd->lookaside_qp = qp;
690 rcd->lookaside_qpn = qp_num;
691 } else
692 qp = rcd->lookaside_qp;
693 this_cpu_inc(ibp->pmastats->n_unicast_rcv);
694 qib_qp_rcv(rcd, hdr, lnh == QIB_LRH_GRH, data, tlen, qp);
695 }
696 return;
697
698 drop:
699 ibp->n_pkt_drops++;
700 }
701
702 /*
703 * This is called from a timer to check for QPs
704 * which need kernel memory in order to send a packet.
705 */
mem_timer(unsigned long data)706 static void mem_timer(unsigned long data)
707 {
708 struct qib_ibdev *dev = (struct qib_ibdev *) data;
709 struct list_head *list = &dev->memwait;
710 struct qib_qp *qp = NULL;
711 unsigned long flags;
712
713 spin_lock_irqsave(&dev->pending_lock, flags);
714 if (!list_empty(list)) {
715 qp = list_entry(list->next, struct qib_qp, iowait);
716 list_del_init(&qp->iowait);
717 atomic_inc(&qp->refcount);
718 if (!list_empty(list))
719 mod_timer(&dev->mem_timer, jiffies + 1);
720 }
721 spin_unlock_irqrestore(&dev->pending_lock, flags);
722
723 if (qp) {
724 spin_lock_irqsave(&qp->s_lock, flags);
725 if (qp->s_flags & QIB_S_WAIT_KMEM) {
726 qp->s_flags &= ~QIB_S_WAIT_KMEM;
727 qib_schedule_send(qp);
728 }
729 spin_unlock_irqrestore(&qp->s_lock, flags);
730 if (atomic_dec_and_test(&qp->refcount))
731 wake_up(&qp->wait);
732 }
733 }
734
update_sge(struct qib_sge_state * ss,u32 length)735 static void update_sge(struct qib_sge_state *ss, u32 length)
736 {
737 struct qib_sge *sge = &ss->sge;
738
739 sge->vaddr += length;
740 sge->length -= length;
741 sge->sge_length -= length;
742 if (sge->sge_length == 0) {
743 if (--ss->num_sge)
744 *sge = *ss->sg_list++;
745 } else if (sge->length == 0 && sge->mr->lkey) {
746 if (++sge->n >= QIB_SEGSZ) {
747 if (++sge->m >= sge->mr->mapsz)
748 return;
749 sge->n = 0;
750 }
751 sge->vaddr = sge->mr->map[sge->m]->segs[sge->n].vaddr;
752 sge->length = sge->mr->map[sge->m]->segs[sge->n].length;
753 }
754 }
755
756 #ifdef __LITTLE_ENDIAN
get_upper_bits(u32 data,u32 shift)757 static inline u32 get_upper_bits(u32 data, u32 shift)
758 {
759 return data >> shift;
760 }
761
set_upper_bits(u32 data,u32 shift)762 static inline u32 set_upper_bits(u32 data, u32 shift)
763 {
764 return data << shift;
765 }
766
clear_upper_bytes(u32 data,u32 n,u32 off)767 static inline u32 clear_upper_bytes(u32 data, u32 n, u32 off)
768 {
769 data <<= ((sizeof(u32) - n) * BITS_PER_BYTE);
770 data >>= ((sizeof(u32) - n - off) * BITS_PER_BYTE);
771 return data;
772 }
773 #else
get_upper_bits(u32 data,u32 shift)774 static inline u32 get_upper_bits(u32 data, u32 shift)
775 {
776 return data << shift;
777 }
778
set_upper_bits(u32 data,u32 shift)779 static inline u32 set_upper_bits(u32 data, u32 shift)
780 {
781 return data >> shift;
782 }
783
clear_upper_bytes(u32 data,u32 n,u32 off)784 static inline u32 clear_upper_bytes(u32 data, u32 n, u32 off)
785 {
786 data >>= ((sizeof(u32) - n) * BITS_PER_BYTE);
787 data <<= ((sizeof(u32) - n - off) * BITS_PER_BYTE);
788 return data;
789 }
790 #endif
791
copy_io(u32 __iomem * piobuf,struct qib_sge_state * ss,u32 length,unsigned flush_wc)792 static void copy_io(u32 __iomem *piobuf, struct qib_sge_state *ss,
793 u32 length, unsigned flush_wc)
794 {
795 u32 extra = 0;
796 u32 data = 0;
797 u32 last;
798
799 while (1) {
800 u32 len = ss->sge.length;
801 u32 off;
802
803 if (len > length)
804 len = length;
805 if (len > ss->sge.sge_length)
806 len = ss->sge.sge_length;
807 BUG_ON(len == 0);
808 /* If the source address is not aligned, try to align it. */
809 off = (unsigned long)ss->sge.vaddr & (sizeof(u32) - 1);
810 if (off) {
811 u32 *addr = (u32 *)((unsigned long)ss->sge.vaddr &
812 ~(sizeof(u32) - 1));
813 u32 v = get_upper_bits(*addr, off * BITS_PER_BYTE);
814 u32 y;
815
816 y = sizeof(u32) - off;
817 if (len > y)
818 len = y;
819 if (len + extra >= sizeof(u32)) {
820 data |= set_upper_bits(v, extra *
821 BITS_PER_BYTE);
822 len = sizeof(u32) - extra;
823 if (len == length) {
824 last = data;
825 break;
826 }
827 __raw_writel(data, piobuf);
828 piobuf++;
829 extra = 0;
830 data = 0;
831 } else {
832 /* Clear unused upper bytes */
833 data |= clear_upper_bytes(v, len, extra);
834 if (len == length) {
835 last = data;
836 break;
837 }
838 extra += len;
839 }
840 } else if (extra) {
841 /* Source address is aligned. */
842 u32 *addr = (u32 *) ss->sge.vaddr;
843 int shift = extra * BITS_PER_BYTE;
844 int ushift = 32 - shift;
845 u32 l = len;
846
847 while (l >= sizeof(u32)) {
848 u32 v = *addr;
849
850 data |= set_upper_bits(v, shift);
851 __raw_writel(data, piobuf);
852 data = get_upper_bits(v, ushift);
853 piobuf++;
854 addr++;
855 l -= sizeof(u32);
856 }
857 /*
858 * We still have 'extra' number of bytes leftover.
859 */
860 if (l) {
861 u32 v = *addr;
862
863 if (l + extra >= sizeof(u32)) {
864 data |= set_upper_bits(v, shift);
865 len -= l + extra - sizeof(u32);
866 if (len == length) {
867 last = data;
868 break;
869 }
870 __raw_writel(data, piobuf);
871 piobuf++;
872 extra = 0;
873 data = 0;
874 } else {
875 /* Clear unused upper bytes */
876 data |= clear_upper_bytes(v, l, extra);
877 if (len == length) {
878 last = data;
879 break;
880 }
881 extra += l;
882 }
883 } else if (len == length) {
884 last = data;
885 break;
886 }
887 } else if (len == length) {
888 u32 w;
889
890 /*
891 * Need to round up for the last dword in the
892 * packet.
893 */
894 w = (len + 3) >> 2;
895 qib_pio_copy(piobuf, ss->sge.vaddr, w - 1);
896 piobuf += w - 1;
897 last = ((u32 *) ss->sge.vaddr)[w - 1];
898 break;
899 } else {
900 u32 w = len >> 2;
901
902 qib_pio_copy(piobuf, ss->sge.vaddr, w);
903 piobuf += w;
904
905 extra = len & (sizeof(u32) - 1);
906 if (extra) {
907 u32 v = ((u32 *) ss->sge.vaddr)[w];
908
909 /* Clear unused upper bytes */
910 data = clear_upper_bytes(v, extra, 0);
911 }
912 }
913 update_sge(ss, len);
914 length -= len;
915 }
916 /* Update address before sending packet. */
917 update_sge(ss, length);
918 if (flush_wc) {
919 /* must flush early everything before trigger word */
920 qib_flush_wc();
921 __raw_writel(last, piobuf);
922 /* be sure trigger word is written */
923 qib_flush_wc();
924 } else
925 __raw_writel(last, piobuf);
926 }
927
__get_txreq(struct qib_ibdev * dev,struct qib_qp * qp)928 static noinline struct qib_verbs_txreq *__get_txreq(struct qib_ibdev *dev,
929 struct qib_qp *qp)
930 {
931 struct qib_verbs_txreq *tx;
932 unsigned long flags;
933
934 spin_lock_irqsave(&qp->s_lock, flags);
935 spin_lock(&dev->pending_lock);
936
937 if (!list_empty(&dev->txreq_free)) {
938 struct list_head *l = dev->txreq_free.next;
939
940 list_del(l);
941 spin_unlock(&dev->pending_lock);
942 spin_unlock_irqrestore(&qp->s_lock, flags);
943 tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
944 } else {
945 if (ib_qib_state_ops[qp->state] & QIB_PROCESS_RECV_OK &&
946 list_empty(&qp->iowait)) {
947 dev->n_txwait++;
948 qp->s_flags |= QIB_S_WAIT_TX;
949 list_add_tail(&qp->iowait, &dev->txwait);
950 }
951 qp->s_flags &= ~QIB_S_BUSY;
952 spin_unlock(&dev->pending_lock);
953 spin_unlock_irqrestore(&qp->s_lock, flags);
954 tx = ERR_PTR(-EBUSY);
955 }
956 return tx;
957 }
958
get_txreq(struct qib_ibdev * dev,struct qib_qp * qp)959 static inline struct qib_verbs_txreq *get_txreq(struct qib_ibdev *dev,
960 struct qib_qp *qp)
961 {
962 struct qib_verbs_txreq *tx;
963 unsigned long flags;
964
965 spin_lock_irqsave(&dev->pending_lock, flags);
966 /* assume the list non empty */
967 if (likely(!list_empty(&dev->txreq_free))) {
968 struct list_head *l = dev->txreq_free.next;
969
970 list_del(l);
971 spin_unlock_irqrestore(&dev->pending_lock, flags);
972 tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
973 } else {
974 /* call slow path to get the extra lock */
975 spin_unlock_irqrestore(&dev->pending_lock, flags);
976 tx = __get_txreq(dev, qp);
977 }
978 return tx;
979 }
980
qib_put_txreq(struct qib_verbs_txreq * tx)981 void qib_put_txreq(struct qib_verbs_txreq *tx)
982 {
983 struct qib_ibdev *dev;
984 struct qib_qp *qp;
985 unsigned long flags;
986
987 qp = tx->qp;
988 dev = to_idev(qp->ibqp.device);
989
990 if (atomic_dec_and_test(&qp->refcount))
991 wake_up(&qp->wait);
992 if (tx->mr) {
993 qib_put_mr(tx->mr);
994 tx->mr = NULL;
995 }
996 if (tx->txreq.flags & QIB_SDMA_TXREQ_F_FREEBUF) {
997 tx->txreq.flags &= ~QIB_SDMA_TXREQ_F_FREEBUF;
998 dma_unmap_single(&dd_from_dev(dev)->pcidev->dev,
999 tx->txreq.addr, tx->hdr_dwords << 2,
1000 DMA_TO_DEVICE);
1001 kfree(tx->align_buf);
1002 }
1003
1004 spin_lock_irqsave(&dev->pending_lock, flags);
1005
1006 /* Put struct back on free list */
1007 list_add(&tx->txreq.list, &dev->txreq_free);
1008
1009 if (!list_empty(&dev->txwait)) {
1010 /* Wake up first QP wanting a free struct */
1011 qp = list_entry(dev->txwait.next, struct qib_qp, iowait);
1012 list_del_init(&qp->iowait);
1013 atomic_inc(&qp->refcount);
1014 spin_unlock_irqrestore(&dev->pending_lock, flags);
1015
1016 spin_lock_irqsave(&qp->s_lock, flags);
1017 if (qp->s_flags & QIB_S_WAIT_TX) {
1018 qp->s_flags &= ~QIB_S_WAIT_TX;
1019 qib_schedule_send(qp);
1020 }
1021 spin_unlock_irqrestore(&qp->s_lock, flags);
1022
1023 if (atomic_dec_and_test(&qp->refcount))
1024 wake_up(&qp->wait);
1025 } else
1026 spin_unlock_irqrestore(&dev->pending_lock, flags);
1027 }
1028
1029 /*
1030 * This is called when there are send DMA descriptors that might be
1031 * available.
1032 *
1033 * This is called with ppd->sdma_lock held.
1034 */
qib_verbs_sdma_desc_avail(struct qib_pportdata * ppd,unsigned avail)1035 void qib_verbs_sdma_desc_avail(struct qib_pportdata *ppd, unsigned avail)
1036 {
1037 struct qib_qp *qp, *nqp;
1038 struct qib_qp *qps[20];
1039 struct qib_ibdev *dev;
1040 unsigned i, n;
1041
1042 n = 0;
1043 dev = &ppd->dd->verbs_dev;
1044 spin_lock(&dev->pending_lock);
1045
1046 /* Search wait list for first QP wanting DMA descriptors. */
1047 list_for_each_entry_safe(qp, nqp, &dev->dmawait, iowait) {
1048 if (qp->port_num != ppd->port)
1049 continue;
1050 if (n == ARRAY_SIZE(qps))
1051 break;
1052 if (qp->s_tx->txreq.sg_count > avail)
1053 break;
1054 avail -= qp->s_tx->txreq.sg_count;
1055 list_del_init(&qp->iowait);
1056 atomic_inc(&qp->refcount);
1057 qps[n++] = qp;
1058 }
1059
1060 spin_unlock(&dev->pending_lock);
1061
1062 for (i = 0; i < n; i++) {
1063 qp = qps[i];
1064 spin_lock(&qp->s_lock);
1065 if (qp->s_flags & QIB_S_WAIT_DMA_DESC) {
1066 qp->s_flags &= ~QIB_S_WAIT_DMA_DESC;
1067 qib_schedule_send(qp);
1068 }
1069 spin_unlock(&qp->s_lock);
1070 if (atomic_dec_and_test(&qp->refcount))
1071 wake_up(&qp->wait);
1072 }
1073 }
1074
1075 /*
1076 * This is called with ppd->sdma_lock held.
1077 */
sdma_complete(struct qib_sdma_txreq * cookie,int status)1078 static void sdma_complete(struct qib_sdma_txreq *cookie, int status)
1079 {
1080 struct qib_verbs_txreq *tx =
1081 container_of(cookie, struct qib_verbs_txreq, txreq);
1082 struct qib_qp *qp = tx->qp;
1083
1084 spin_lock(&qp->s_lock);
1085 if (tx->wqe)
1086 qib_send_complete(qp, tx->wqe, IB_WC_SUCCESS);
1087 else if (qp->ibqp.qp_type == IB_QPT_RC) {
1088 struct qib_ib_header *hdr;
1089
1090 if (tx->txreq.flags & QIB_SDMA_TXREQ_F_FREEBUF)
1091 hdr = &tx->align_buf->hdr;
1092 else {
1093 struct qib_ibdev *dev = to_idev(qp->ibqp.device);
1094
1095 hdr = &dev->pio_hdrs[tx->hdr_inx].hdr;
1096 }
1097 qib_rc_send_complete(qp, hdr);
1098 }
1099 if (atomic_dec_and_test(&qp->s_dma_busy)) {
1100 if (qp->state == IB_QPS_RESET)
1101 wake_up(&qp->wait_dma);
1102 else if (qp->s_flags & QIB_S_WAIT_DMA) {
1103 qp->s_flags &= ~QIB_S_WAIT_DMA;
1104 qib_schedule_send(qp);
1105 }
1106 }
1107 spin_unlock(&qp->s_lock);
1108
1109 qib_put_txreq(tx);
1110 }
1111
wait_kmem(struct qib_ibdev * dev,struct qib_qp * qp)1112 static int wait_kmem(struct qib_ibdev *dev, struct qib_qp *qp)
1113 {
1114 unsigned long flags;
1115 int ret = 0;
1116
1117 spin_lock_irqsave(&qp->s_lock, flags);
1118 if (ib_qib_state_ops[qp->state] & QIB_PROCESS_RECV_OK) {
1119 spin_lock(&dev->pending_lock);
1120 if (list_empty(&qp->iowait)) {
1121 if (list_empty(&dev->memwait))
1122 mod_timer(&dev->mem_timer, jiffies + 1);
1123 qp->s_flags |= QIB_S_WAIT_KMEM;
1124 list_add_tail(&qp->iowait, &dev->memwait);
1125 }
1126 spin_unlock(&dev->pending_lock);
1127 qp->s_flags &= ~QIB_S_BUSY;
1128 ret = -EBUSY;
1129 }
1130 spin_unlock_irqrestore(&qp->s_lock, flags);
1131
1132 return ret;
1133 }
1134
qib_verbs_send_dma(struct qib_qp * qp,struct qib_ib_header * hdr,u32 hdrwords,struct qib_sge_state * ss,u32 len,u32 plen,u32 dwords)1135 static int qib_verbs_send_dma(struct qib_qp *qp, struct qib_ib_header *hdr,
1136 u32 hdrwords, struct qib_sge_state *ss, u32 len,
1137 u32 plen, u32 dwords)
1138 {
1139 struct qib_ibdev *dev = to_idev(qp->ibqp.device);
1140 struct qib_devdata *dd = dd_from_dev(dev);
1141 struct qib_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
1142 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1143 struct qib_verbs_txreq *tx;
1144 struct qib_pio_header *phdr;
1145 u32 control;
1146 u32 ndesc;
1147 int ret;
1148
1149 tx = qp->s_tx;
1150 if (tx) {
1151 qp->s_tx = NULL;
1152 /* resend previously constructed packet */
1153 ret = qib_sdma_verbs_send(ppd, tx->ss, tx->dwords, tx);
1154 goto bail;
1155 }
1156
1157 tx = get_txreq(dev, qp);
1158 if (IS_ERR(tx))
1159 goto bail_tx;
1160
1161 control = dd->f_setpbc_control(ppd, plen, qp->s_srate,
1162 be16_to_cpu(hdr->lrh[0]) >> 12);
1163 tx->qp = qp;
1164 atomic_inc(&qp->refcount);
1165 tx->wqe = qp->s_wqe;
1166 tx->mr = qp->s_rdma_mr;
1167 if (qp->s_rdma_mr)
1168 qp->s_rdma_mr = NULL;
1169 tx->txreq.callback = sdma_complete;
1170 if (dd->flags & QIB_HAS_SDMA_TIMEOUT)
1171 tx->txreq.flags = QIB_SDMA_TXREQ_F_HEADTOHOST;
1172 else
1173 tx->txreq.flags = QIB_SDMA_TXREQ_F_INTREQ;
1174 if (plen + 1 > dd->piosize2kmax_dwords)
1175 tx->txreq.flags |= QIB_SDMA_TXREQ_F_USELARGEBUF;
1176
1177 if (len) {
1178 /*
1179 * Don't try to DMA if it takes more descriptors than
1180 * the queue holds.
1181 */
1182 ndesc = qib_count_sge(ss, len);
1183 if (ndesc >= ppd->sdma_descq_cnt)
1184 ndesc = 0;
1185 } else
1186 ndesc = 1;
1187 if (ndesc) {
1188 phdr = &dev->pio_hdrs[tx->hdr_inx];
1189 phdr->pbc[0] = cpu_to_le32(plen);
1190 phdr->pbc[1] = cpu_to_le32(control);
1191 memcpy(&phdr->hdr, hdr, hdrwords << 2);
1192 tx->txreq.flags |= QIB_SDMA_TXREQ_F_FREEDESC;
1193 tx->txreq.sg_count = ndesc;
1194 tx->txreq.addr = dev->pio_hdrs_phys +
1195 tx->hdr_inx * sizeof(struct qib_pio_header);
1196 tx->hdr_dwords = hdrwords + 2; /* add PBC length */
1197 ret = qib_sdma_verbs_send(ppd, ss, dwords, tx);
1198 goto bail;
1199 }
1200
1201 /* Allocate a buffer and copy the header and payload to it. */
1202 tx->hdr_dwords = plen + 1;
1203 phdr = kmalloc(tx->hdr_dwords << 2, GFP_ATOMIC);
1204 if (!phdr)
1205 goto err_tx;
1206 phdr->pbc[0] = cpu_to_le32(plen);
1207 phdr->pbc[1] = cpu_to_le32(control);
1208 memcpy(&phdr->hdr, hdr, hdrwords << 2);
1209 qib_copy_from_sge((u32 *) &phdr->hdr + hdrwords, ss, len);
1210
1211 tx->txreq.addr = dma_map_single(&dd->pcidev->dev, phdr,
1212 tx->hdr_dwords << 2, DMA_TO_DEVICE);
1213 if (dma_mapping_error(&dd->pcidev->dev, tx->txreq.addr))
1214 goto map_err;
1215 tx->align_buf = phdr;
1216 tx->txreq.flags |= QIB_SDMA_TXREQ_F_FREEBUF;
1217 tx->txreq.sg_count = 1;
1218 ret = qib_sdma_verbs_send(ppd, NULL, 0, tx);
1219 goto unaligned;
1220
1221 map_err:
1222 kfree(phdr);
1223 err_tx:
1224 qib_put_txreq(tx);
1225 ret = wait_kmem(dev, qp);
1226 unaligned:
1227 ibp->n_unaligned++;
1228 bail:
1229 return ret;
1230 bail_tx:
1231 ret = PTR_ERR(tx);
1232 goto bail;
1233 }
1234
1235 /*
1236 * If we are now in the error state, return zero to flush the
1237 * send work request.
1238 */
no_bufs_available(struct qib_qp * qp)1239 static int no_bufs_available(struct qib_qp *qp)
1240 {
1241 struct qib_ibdev *dev = to_idev(qp->ibqp.device);
1242 struct qib_devdata *dd;
1243 unsigned long flags;
1244 int ret = 0;
1245
1246 /*
1247 * Note that as soon as want_buffer() is called and
1248 * possibly before it returns, qib_ib_piobufavail()
1249 * could be called. Therefore, put QP on the I/O wait list before
1250 * enabling the PIO avail interrupt.
1251 */
1252 spin_lock_irqsave(&qp->s_lock, flags);
1253 if (ib_qib_state_ops[qp->state] & QIB_PROCESS_RECV_OK) {
1254 spin_lock(&dev->pending_lock);
1255 if (list_empty(&qp->iowait)) {
1256 dev->n_piowait++;
1257 qp->s_flags |= QIB_S_WAIT_PIO;
1258 list_add_tail(&qp->iowait, &dev->piowait);
1259 dd = dd_from_dev(dev);
1260 dd->f_wantpiobuf_intr(dd, 1);
1261 }
1262 spin_unlock(&dev->pending_lock);
1263 qp->s_flags &= ~QIB_S_BUSY;
1264 ret = -EBUSY;
1265 }
1266 spin_unlock_irqrestore(&qp->s_lock, flags);
1267 return ret;
1268 }
1269
qib_verbs_send_pio(struct qib_qp * qp,struct qib_ib_header * ibhdr,u32 hdrwords,struct qib_sge_state * ss,u32 len,u32 plen,u32 dwords)1270 static int qib_verbs_send_pio(struct qib_qp *qp, struct qib_ib_header *ibhdr,
1271 u32 hdrwords, struct qib_sge_state *ss, u32 len,
1272 u32 plen, u32 dwords)
1273 {
1274 struct qib_devdata *dd = dd_from_ibdev(qp->ibqp.device);
1275 struct qib_pportdata *ppd = dd->pport + qp->port_num - 1;
1276 u32 *hdr = (u32 *) ibhdr;
1277 u32 __iomem *piobuf_orig;
1278 u32 __iomem *piobuf;
1279 u64 pbc;
1280 unsigned long flags;
1281 unsigned flush_wc;
1282 u32 control;
1283 u32 pbufn;
1284
1285 control = dd->f_setpbc_control(ppd, plen, qp->s_srate,
1286 be16_to_cpu(ibhdr->lrh[0]) >> 12);
1287 pbc = ((u64) control << 32) | plen;
1288 piobuf = dd->f_getsendbuf(ppd, pbc, &pbufn);
1289 if (unlikely(piobuf == NULL))
1290 return no_bufs_available(qp);
1291
1292 /*
1293 * Write the pbc.
1294 * We have to flush after the PBC for correctness on some cpus
1295 * or WC buffer can be written out of order.
1296 */
1297 writeq(pbc, piobuf);
1298 piobuf_orig = piobuf;
1299 piobuf += 2;
1300
1301 flush_wc = dd->flags & QIB_PIO_FLUSH_WC;
1302 if (len == 0) {
1303 /*
1304 * If there is just the header portion, must flush before
1305 * writing last word of header for correctness, and after
1306 * the last header word (trigger word).
1307 */
1308 if (flush_wc) {
1309 qib_flush_wc();
1310 qib_pio_copy(piobuf, hdr, hdrwords - 1);
1311 qib_flush_wc();
1312 __raw_writel(hdr[hdrwords - 1], piobuf + hdrwords - 1);
1313 qib_flush_wc();
1314 } else
1315 qib_pio_copy(piobuf, hdr, hdrwords);
1316 goto done;
1317 }
1318
1319 if (flush_wc)
1320 qib_flush_wc();
1321 qib_pio_copy(piobuf, hdr, hdrwords);
1322 piobuf += hdrwords;
1323
1324 /* The common case is aligned and contained in one segment. */
1325 if (likely(ss->num_sge == 1 && len <= ss->sge.length &&
1326 !((unsigned long)ss->sge.vaddr & (sizeof(u32) - 1)))) {
1327 u32 *addr = (u32 *) ss->sge.vaddr;
1328
1329 /* Update address before sending packet. */
1330 update_sge(ss, len);
1331 if (flush_wc) {
1332 qib_pio_copy(piobuf, addr, dwords - 1);
1333 /* must flush early everything before trigger word */
1334 qib_flush_wc();
1335 __raw_writel(addr[dwords - 1], piobuf + dwords - 1);
1336 /* be sure trigger word is written */
1337 qib_flush_wc();
1338 } else
1339 qib_pio_copy(piobuf, addr, dwords);
1340 goto done;
1341 }
1342 copy_io(piobuf, ss, len, flush_wc);
1343 done:
1344 if (dd->flags & QIB_USE_SPCL_TRIG) {
1345 u32 spcl_off = (pbufn >= dd->piobcnt2k) ? 2047 : 1023;
1346 qib_flush_wc();
1347 __raw_writel(0xaebecede, piobuf_orig + spcl_off);
1348 }
1349 qib_sendbuf_done(dd, pbufn);
1350 if (qp->s_rdma_mr) {
1351 qib_put_mr(qp->s_rdma_mr);
1352 qp->s_rdma_mr = NULL;
1353 }
1354 if (qp->s_wqe) {
1355 spin_lock_irqsave(&qp->s_lock, flags);
1356 qib_send_complete(qp, qp->s_wqe, IB_WC_SUCCESS);
1357 spin_unlock_irqrestore(&qp->s_lock, flags);
1358 } else if (qp->ibqp.qp_type == IB_QPT_RC) {
1359 spin_lock_irqsave(&qp->s_lock, flags);
1360 qib_rc_send_complete(qp, ibhdr);
1361 spin_unlock_irqrestore(&qp->s_lock, flags);
1362 }
1363 return 0;
1364 }
1365
1366 /**
1367 * qib_verbs_send - send a packet
1368 * @qp: the QP to send on
1369 * @hdr: the packet header
1370 * @hdrwords: the number of 32-bit words in the header
1371 * @ss: the SGE to send
1372 * @len: the length of the packet in bytes
1373 *
1374 * Return zero if packet is sent or queued OK.
1375 * Return non-zero and clear qp->s_flags QIB_S_BUSY otherwise.
1376 */
qib_verbs_send(struct qib_qp * qp,struct qib_ib_header * hdr,u32 hdrwords,struct qib_sge_state * ss,u32 len)1377 int qib_verbs_send(struct qib_qp *qp, struct qib_ib_header *hdr,
1378 u32 hdrwords, struct qib_sge_state *ss, u32 len)
1379 {
1380 struct qib_devdata *dd = dd_from_ibdev(qp->ibqp.device);
1381 u32 plen;
1382 int ret;
1383 u32 dwords = (len + 3) >> 2;
1384
1385 /*
1386 * Calculate the send buffer trigger address.
1387 * The +1 counts for the pbc control dword following the pbc length.
1388 */
1389 plen = hdrwords + dwords + 1;
1390
1391 /*
1392 * VL15 packets (IB_QPT_SMI) will always use PIO, so we
1393 * can defer SDMA restart until link goes ACTIVE without
1394 * worrying about just how we got there.
1395 */
1396 if (qp->ibqp.qp_type == IB_QPT_SMI ||
1397 !(dd->flags & QIB_HAS_SEND_DMA))
1398 ret = qib_verbs_send_pio(qp, hdr, hdrwords, ss, len,
1399 plen, dwords);
1400 else
1401 ret = qib_verbs_send_dma(qp, hdr, hdrwords, ss, len,
1402 plen, dwords);
1403
1404 return ret;
1405 }
1406
qib_snapshot_counters(struct qib_pportdata * ppd,u64 * swords,u64 * rwords,u64 * spkts,u64 * rpkts,u64 * xmit_wait)1407 int qib_snapshot_counters(struct qib_pportdata *ppd, u64 *swords,
1408 u64 *rwords, u64 *spkts, u64 *rpkts,
1409 u64 *xmit_wait)
1410 {
1411 int ret;
1412 struct qib_devdata *dd = ppd->dd;
1413
1414 if (!(dd->flags & QIB_PRESENT)) {
1415 /* no hardware, freeze, etc. */
1416 ret = -EINVAL;
1417 goto bail;
1418 }
1419 *swords = dd->f_portcntr(ppd, QIBPORTCNTR_WORDSEND);
1420 *rwords = dd->f_portcntr(ppd, QIBPORTCNTR_WORDRCV);
1421 *spkts = dd->f_portcntr(ppd, QIBPORTCNTR_PKTSEND);
1422 *rpkts = dd->f_portcntr(ppd, QIBPORTCNTR_PKTRCV);
1423 *xmit_wait = dd->f_portcntr(ppd, QIBPORTCNTR_SENDSTALL);
1424
1425 ret = 0;
1426
1427 bail:
1428 return ret;
1429 }
1430
1431 /**
1432 * qib_get_counters - get various chip counters
1433 * @dd: the qlogic_ib device
1434 * @cntrs: counters are placed here
1435 *
1436 * Return the counters needed by recv_pma_get_portcounters().
1437 */
qib_get_counters(struct qib_pportdata * ppd,struct qib_verbs_counters * cntrs)1438 int qib_get_counters(struct qib_pportdata *ppd,
1439 struct qib_verbs_counters *cntrs)
1440 {
1441 int ret;
1442
1443 if (!(ppd->dd->flags & QIB_PRESENT)) {
1444 /* no hardware, freeze, etc. */
1445 ret = -EINVAL;
1446 goto bail;
1447 }
1448 cntrs->symbol_error_counter =
1449 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_IBSYMBOLERR);
1450 cntrs->link_error_recovery_counter =
1451 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_IBLINKERRRECOV);
1452 /*
1453 * The link downed counter counts when the other side downs the
1454 * connection. We add in the number of times we downed the link
1455 * due to local link integrity errors to compensate.
1456 */
1457 cntrs->link_downed_counter =
1458 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_IBLINKDOWN);
1459 cntrs->port_rcv_errors =
1460 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RXDROPPKT) +
1461 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RCVOVFL) +
1462 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERR_RLEN) +
1463 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_INVALIDRLEN) +
1464 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRLINK) +
1465 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRICRC) +
1466 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRVCRC) +
1467 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRLPCRC) +
1468 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_BADFORMAT);
1469 cntrs->port_rcv_errors +=
1470 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RXLOCALPHYERR);
1471 cntrs->port_rcv_errors +=
1472 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RXVLERR);
1473 cntrs->port_rcv_remphys_errors =
1474 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RCVEBP);
1475 cntrs->port_xmit_discards =
1476 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_UNSUPVL);
1477 cntrs->port_xmit_data = ppd->dd->f_portcntr(ppd,
1478 QIBPORTCNTR_WORDSEND);
1479 cntrs->port_rcv_data = ppd->dd->f_portcntr(ppd,
1480 QIBPORTCNTR_WORDRCV);
1481 cntrs->port_xmit_packets = ppd->dd->f_portcntr(ppd,
1482 QIBPORTCNTR_PKTSEND);
1483 cntrs->port_rcv_packets = ppd->dd->f_portcntr(ppd,
1484 QIBPORTCNTR_PKTRCV);
1485 cntrs->local_link_integrity_errors =
1486 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_LLI);
1487 cntrs->excessive_buffer_overrun_errors =
1488 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_EXCESSBUFOVFL);
1489 cntrs->vl15_dropped =
1490 ppd->dd->f_portcntr(ppd, QIBPORTCNTR_VL15PKTDROP);
1491
1492 ret = 0;
1493
1494 bail:
1495 return ret;
1496 }
1497
1498 /**
1499 * qib_ib_piobufavail - callback when a PIO buffer is available
1500 * @dd: the device pointer
1501 *
1502 * This is called from qib_intr() at interrupt level when a PIO buffer is
1503 * available after qib_verbs_send() returned an error that no buffers were
1504 * available. Disable the interrupt if there are no more QPs waiting.
1505 */
qib_ib_piobufavail(struct qib_devdata * dd)1506 void qib_ib_piobufavail(struct qib_devdata *dd)
1507 {
1508 struct qib_ibdev *dev = &dd->verbs_dev;
1509 struct list_head *list;
1510 struct qib_qp *qps[5];
1511 struct qib_qp *qp;
1512 unsigned long flags;
1513 unsigned i, n;
1514
1515 list = &dev->piowait;
1516 n = 0;
1517
1518 /*
1519 * Note: checking that the piowait list is empty and clearing
1520 * the buffer available interrupt needs to be atomic or we
1521 * could end up with QPs on the wait list with the interrupt
1522 * disabled.
1523 */
1524 spin_lock_irqsave(&dev->pending_lock, flags);
1525 while (!list_empty(list)) {
1526 if (n == ARRAY_SIZE(qps))
1527 goto full;
1528 qp = list_entry(list->next, struct qib_qp, iowait);
1529 list_del_init(&qp->iowait);
1530 atomic_inc(&qp->refcount);
1531 qps[n++] = qp;
1532 }
1533 dd->f_wantpiobuf_intr(dd, 0);
1534 full:
1535 spin_unlock_irqrestore(&dev->pending_lock, flags);
1536
1537 for (i = 0; i < n; i++) {
1538 qp = qps[i];
1539
1540 spin_lock_irqsave(&qp->s_lock, flags);
1541 if (qp->s_flags & QIB_S_WAIT_PIO) {
1542 qp->s_flags &= ~QIB_S_WAIT_PIO;
1543 qib_schedule_send(qp);
1544 }
1545 spin_unlock_irqrestore(&qp->s_lock, flags);
1546
1547 /* Notify qib_destroy_qp() if it is waiting. */
1548 if (atomic_dec_and_test(&qp->refcount))
1549 wake_up(&qp->wait);
1550 }
1551 }
1552
qib_query_device(struct ib_device * ibdev,struct ib_device_attr * props)1553 static int qib_query_device(struct ib_device *ibdev,
1554 struct ib_device_attr *props)
1555 {
1556 struct qib_devdata *dd = dd_from_ibdev(ibdev);
1557 struct qib_ibdev *dev = to_idev(ibdev);
1558
1559 memset(props, 0, sizeof(*props));
1560
1561 props->device_cap_flags = IB_DEVICE_BAD_PKEY_CNTR |
1562 IB_DEVICE_BAD_QKEY_CNTR | IB_DEVICE_SHUTDOWN_PORT |
1563 IB_DEVICE_SYS_IMAGE_GUID | IB_DEVICE_RC_RNR_NAK_GEN |
1564 IB_DEVICE_PORT_ACTIVE_EVENT | IB_DEVICE_SRQ_RESIZE;
1565 props->page_size_cap = PAGE_SIZE;
1566 props->vendor_id =
1567 QIB_SRC_OUI_1 << 16 | QIB_SRC_OUI_2 << 8 | QIB_SRC_OUI_3;
1568 props->vendor_part_id = dd->deviceid;
1569 props->hw_ver = dd->minrev;
1570 props->sys_image_guid = ib_qib_sys_image_guid;
1571 props->max_mr_size = ~0ULL;
1572 props->max_qp = ib_qib_max_qps;
1573 props->max_qp_wr = ib_qib_max_qp_wrs;
1574 props->max_sge = ib_qib_max_sges;
1575 props->max_cq = ib_qib_max_cqs;
1576 props->max_ah = ib_qib_max_ahs;
1577 props->max_cqe = ib_qib_max_cqes;
1578 props->max_mr = dev->lk_table.max;
1579 props->max_fmr = dev->lk_table.max;
1580 props->max_map_per_fmr = 32767;
1581 props->max_pd = ib_qib_max_pds;
1582 props->max_qp_rd_atom = QIB_MAX_RDMA_ATOMIC;
1583 props->max_qp_init_rd_atom = 255;
1584 /* props->max_res_rd_atom */
1585 props->max_srq = ib_qib_max_srqs;
1586 props->max_srq_wr = ib_qib_max_srq_wrs;
1587 props->max_srq_sge = ib_qib_max_srq_sges;
1588 /* props->local_ca_ack_delay */
1589 props->atomic_cap = IB_ATOMIC_GLOB;
1590 props->max_pkeys = qib_get_npkeys(dd);
1591 props->max_mcast_grp = ib_qib_max_mcast_grps;
1592 props->max_mcast_qp_attach = ib_qib_max_mcast_qp_attached;
1593 props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
1594 props->max_mcast_grp;
1595
1596 return 0;
1597 }
1598
qib_query_port(struct ib_device * ibdev,u8 port,struct ib_port_attr * props)1599 static int qib_query_port(struct ib_device *ibdev, u8 port,
1600 struct ib_port_attr *props)
1601 {
1602 struct qib_devdata *dd = dd_from_ibdev(ibdev);
1603 struct qib_ibport *ibp = to_iport(ibdev, port);
1604 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1605 enum ib_mtu mtu;
1606 u16 lid = ppd->lid;
1607
1608 memset(props, 0, sizeof(*props));
1609 props->lid = lid ? lid : be16_to_cpu(IB_LID_PERMISSIVE);
1610 props->lmc = ppd->lmc;
1611 props->sm_lid = ibp->sm_lid;
1612 props->sm_sl = ibp->sm_sl;
1613 props->state = dd->f_iblink_state(ppd->lastibcstat);
1614 props->phys_state = dd->f_ibphys_portstate(ppd->lastibcstat);
1615 props->port_cap_flags = ibp->port_cap_flags;
1616 props->gid_tbl_len = QIB_GUIDS_PER_PORT;
1617 props->max_msg_sz = 0x80000000;
1618 props->pkey_tbl_len = qib_get_npkeys(dd);
1619 props->bad_pkey_cntr = ibp->pkey_violations;
1620 props->qkey_viol_cntr = ibp->qkey_violations;
1621 props->active_width = ppd->link_width_active;
1622 /* See rate_show() */
1623 props->active_speed = ppd->link_speed_active;
1624 props->max_vl_num = qib_num_vls(ppd->vls_supported);
1625 props->init_type_reply = 0;
1626
1627 props->max_mtu = qib_ibmtu ? qib_ibmtu : IB_MTU_4096;
1628 switch (ppd->ibmtu) {
1629 case 4096:
1630 mtu = IB_MTU_4096;
1631 break;
1632 case 2048:
1633 mtu = IB_MTU_2048;
1634 break;
1635 case 1024:
1636 mtu = IB_MTU_1024;
1637 break;
1638 case 512:
1639 mtu = IB_MTU_512;
1640 break;
1641 case 256:
1642 mtu = IB_MTU_256;
1643 break;
1644 default:
1645 mtu = IB_MTU_2048;
1646 }
1647 props->active_mtu = mtu;
1648 props->subnet_timeout = ibp->subnet_timeout;
1649
1650 return 0;
1651 }
1652
qib_modify_device(struct ib_device * device,int device_modify_mask,struct ib_device_modify * device_modify)1653 static int qib_modify_device(struct ib_device *device,
1654 int device_modify_mask,
1655 struct ib_device_modify *device_modify)
1656 {
1657 struct qib_devdata *dd = dd_from_ibdev(device);
1658 unsigned i;
1659 int ret;
1660
1661 if (device_modify_mask & ~(IB_DEVICE_MODIFY_SYS_IMAGE_GUID |
1662 IB_DEVICE_MODIFY_NODE_DESC)) {
1663 ret = -EOPNOTSUPP;
1664 goto bail;
1665 }
1666
1667 if (device_modify_mask & IB_DEVICE_MODIFY_NODE_DESC) {
1668 memcpy(device->node_desc, device_modify->node_desc, 64);
1669 for (i = 0; i < dd->num_pports; i++) {
1670 struct qib_ibport *ibp = &dd->pport[i].ibport_data;
1671
1672 qib_node_desc_chg(ibp);
1673 }
1674 }
1675
1676 if (device_modify_mask & IB_DEVICE_MODIFY_SYS_IMAGE_GUID) {
1677 ib_qib_sys_image_guid =
1678 cpu_to_be64(device_modify->sys_image_guid);
1679 for (i = 0; i < dd->num_pports; i++) {
1680 struct qib_ibport *ibp = &dd->pport[i].ibport_data;
1681
1682 qib_sys_guid_chg(ibp);
1683 }
1684 }
1685
1686 ret = 0;
1687
1688 bail:
1689 return ret;
1690 }
1691
qib_modify_port(struct ib_device * ibdev,u8 port,int port_modify_mask,struct ib_port_modify * props)1692 static int qib_modify_port(struct ib_device *ibdev, u8 port,
1693 int port_modify_mask, struct ib_port_modify *props)
1694 {
1695 struct qib_ibport *ibp = to_iport(ibdev, port);
1696 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1697
1698 ibp->port_cap_flags |= props->set_port_cap_mask;
1699 ibp->port_cap_flags &= ~props->clr_port_cap_mask;
1700 if (props->set_port_cap_mask || props->clr_port_cap_mask)
1701 qib_cap_mask_chg(ibp);
1702 if (port_modify_mask & IB_PORT_SHUTDOWN)
1703 qib_set_linkstate(ppd, QIB_IB_LINKDOWN);
1704 if (port_modify_mask & IB_PORT_RESET_QKEY_CNTR)
1705 ibp->qkey_violations = 0;
1706 return 0;
1707 }
1708
qib_query_gid(struct ib_device * ibdev,u8 port,int index,union ib_gid * gid)1709 static int qib_query_gid(struct ib_device *ibdev, u8 port,
1710 int index, union ib_gid *gid)
1711 {
1712 struct qib_devdata *dd = dd_from_ibdev(ibdev);
1713 int ret = 0;
1714
1715 if (!port || port > dd->num_pports)
1716 ret = -EINVAL;
1717 else {
1718 struct qib_ibport *ibp = to_iport(ibdev, port);
1719 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1720
1721 gid->global.subnet_prefix = ibp->gid_prefix;
1722 if (index == 0)
1723 gid->global.interface_id = ppd->guid;
1724 else if (index < QIB_GUIDS_PER_PORT)
1725 gid->global.interface_id = ibp->guids[index - 1];
1726 else
1727 ret = -EINVAL;
1728 }
1729
1730 return ret;
1731 }
1732
qib_alloc_pd(struct ib_device * ibdev,struct ib_ucontext * context,struct ib_udata * udata)1733 static struct ib_pd *qib_alloc_pd(struct ib_device *ibdev,
1734 struct ib_ucontext *context,
1735 struct ib_udata *udata)
1736 {
1737 struct qib_ibdev *dev = to_idev(ibdev);
1738 struct qib_pd *pd;
1739 struct ib_pd *ret;
1740
1741 /*
1742 * This is actually totally arbitrary. Some correctness tests
1743 * assume there's a maximum number of PDs that can be allocated.
1744 * We don't actually have this limit, but we fail the test if
1745 * we allow allocations of more than we report for this value.
1746 */
1747
1748 pd = kmalloc(sizeof *pd, GFP_KERNEL);
1749 if (!pd) {
1750 ret = ERR_PTR(-ENOMEM);
1751 goto bail;
1752 }
1753
1754 spin_lock(&dev->n_pds_lock);
1755 if (dev->n_pds_allocated == ib_qib_max_pds) {
1756 spin_unlock(&dev->n_pds_lock);
1757 kfree(pd);
1758 ret = ERR_PTR(-ENOMEM);
1759 goto bail;
1760 }
1761
1762 dev->n_pds_allocated++;
1763 spin_unlock(&dev->n_pds_lock);
1764
1765 /* ib_alloc_pd() will initialize pd->ibpd. */
1766 pd->user = udata != NULL;
1767
1768 ret = &pd->ibpd;
1769
1770 bail:
1771 return ret;
1772 }
1773
qib_dealloc_pd(struct ib_pd * ibpd)1774 static int qib_dealloc_pd(struct ib_pd *ibpd)
1775 {
1776 struct qib_pd *pd = to_ipd(ibpd);
1777 struct qib_ibdev *dev = to_idev(ibpd->device);
1778
1779 spin_lock(&dev->n_pds_lock);
1780 dev->n_pds_allocated--;
1781 spin_unlock(&dev->n_pds_lock);
1782
1783 kfree(pd);
1784
1785 return 0;
1786 }
1787
qib_check_ah(struct ib_device * ibdev,struct ib_ah_attr * ah_attr)1788 int qib_check_ah(struct ib_device *ibdev, struct ib_ah_attr *ah_attr)
1789 {
1790 /* A multicast address requires a GRH (see ch. 8.4.1). */
1791 if (ah_attr->dlid >= QIB_MULTICAST_LID_BASE &&
1792 ah_attr->dlid != QIB_PERMISSIVE_LID &&
1793 !(ah_attr->ah_flags & IB_AH_GRH))
1794 goto bail;
1795 if ((ah_attr->ah_flags & IB_AH_GRH) &&
1796 ah_attr->grh.sgid_index >= QIB_GUIDS_PER_PORT)
1797 goto bail;
1798 if (ah_attr->dlid == 0)
1799 goto bail;
1800 if (ah_attr->port_num < 1 ||
1801 ah_attr->port_num > ibdev->phys_port_cnt)
1802 goto bail;
1803 if (ah_attr->static_rate != IB_RATE_PORT_CURRENT &&
1804 ib_rate_to_mult(ah_attr->static_rate) < 0)
1805 goto bail;
1806 if (ah_attr->sl > 15)
1807 goto bail;
1808 return 0;
1809 bail:
1810 return -EINVAL;
1811 }
1812
1813 /**
1814 * qib_create_ah - create an address handle
1815 * @pd: the protection domain
1816 * @ah_attr: the attributes of the AH
1817 *
1818 * This may be called from interrupt context.
1819 */
qib_create_ah(struct ib_pd * pd,struct ib_ah_attr * ah_attr)1820 static struct ib_ah *qib_create_ah(struct ib_pd *pd,
1821 struct ib_ah_attr *ah_attr)
1822 {
1823 struct qib_ah *ah;
1824 struct ib_ah *ret;
1825 struct qib_ibdev *dev = to_idev(pd->device);
1826 unsigned long flags;
1827
1828 if (qib_check_ah(pd->device, ah_attr)) {
1829 ret = ERR_PTR(-EINVAL);
1830 goto bail;
1831 }
1832
1833 ah = kmalloc(sizeof *ah, GFP_ATOMIC);
1834 if (!ah) {
1835 ret = ERR_PTR(-ENOMEM);
1836 goto bail;
1837 }
1838
1839 spin_lock_irqsave(&dev->n_ahs_lock, flags);
1840 if (dev->n_ahs_allocated == ib_qib_max_ahs) {
1841 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
1842 kfree(ah);
1843 ret = ERR_PTR(-ENOMEM);
1844 goto bail;
1845 }
1846
1847 dev->n_ahs_allocated++;
1848 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
1849
1850 /* ib_create_ah() will initialize ah->ibah. */
1851 ah->attr = *ah_attr;
1852 atomic_set(&ah->refcount, 0);
1853
1854 ret = &ah->ibah;
1855
1856 bail:
1857 return ret;
1858 }
1859
qib_create_qp0_ah(struct qib_ibport * ibp,u16 dlid)1860 struct ib_ah *qib_create_qp0_ah(struct qib_ibport *ibp, u16 dlid)
1861 {
1862 struct ib_ah_attr attr;
1863 struct ib_ah *ah = ERR_PTR(-EINVAL);
1864 struct qib_qp *qp0;
1865
1866 memset(&attr, 0, sizeof attr);
1867 attr.dlid = dlid;
1868 attr.port_num = ppd_from_ibp(ibp)->port;
1869 rcu_read_lock();
1870 qp0 = rcu_dereference(ibp->qp0);
1871 if (qp0)
1872 ah = ib_create_ah(qp0->ibqp.pd, &attr);
1873 rcu_read_unlock();
1874 return ah;
1875 }
1876
1877 /**
1878 * qib_destroy_ah - destroy an address handle
1879 * @ibah: the AH to destroy
1880 *
1881 * This may be called from interrupt context.
1882 */
qib_destroy_ah(struct ib_ah * ibah)1883 static int qib_destroy_ah(struct ib_ah *ibah)
1884 {
1885 struct qib_ibdev *dev = to_idev(ibah->device);
1886 struct qib_ah *ah = to_iah(ibah);
1887 unsigned long flags;
1888
1889 if (atomic_read(&ah->refcount) != 0)
1890 return -EBUSY;
1891
1892 spin_lock_irqsave(&dev->n_ahs_lock, flags);
1893 dev->n_ahs_allocated--;
1894 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
1895
1896 kfree(ah);
1897
1898 return 0;
1899 }
1900
qib_modify_ah(struct ib_ah * ibah,struct ib_ah_attr * ah_attr)1901 static int qib_modify_ah(struct ib_ah *ibah, struct ib_ah_attr *ah_attr)
1902 {
1903 struct qib_ah *ah = to_iah(ibah);
1904
1905 if (qib_check_ah(ibah->device, ah_attr))
1906 return -EINVAL;
1907
1908 ah->attr = *ah_attr;
1909
1910 return 0;
1911 }
1912
qib_query_ah(struct ib_ah * ibah,struct ib_ah_attr * ah_attr)1913 static int qib_query_ah(struct ib_ah *ibah, struct ib_ah_attr *ah_attr)
1914 {
1915 struct qib_ah *ah = to_iah(ibah);
1916
1917 *ah_attr = ah->attr;
1918
1919 return 0;
1920 }
1921
1922 /**
1923 * qib_get_npkeys - return the size of the PKEY table for context 0
1924 * @dd: the qlogic_ib device
1925 */
qib_get_npkeys(struct qib_devdata * dd)1926 unsigned qib_get_npkeys(struct qib_devdata *dd)
1927 {
1928 return ARRAY_SIZE(dd->rcd[0]->pkeys);
1929 }
1930
1931 /*
1932 * Return the indexed PKEY from the port PKEY table.
1933 * No need to validate rcd[ctxt]; the port is setup if we are here.
1934 */
qib_get_pkey(struct qib_ibport * ibp,unsigned index)1935 unsigned qib_get_pkey(struct qib_ibport *ibp, unsigned index)
1936 {
1937 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1938 struct qib_devdata *dd = ppd->dd;
1939 unsigned ctxt = ppd->hw_pidx;
1940 unsigned ret;
1941
1942 /* dd->rcd null if mini_init or some init failures */
1943 if (!dd->rcd || index >= ARRAY_SIZE(dd->rcd[ctxt]->pkeys))
1944 ret = 0;
1945 else
1946 ret = dd->rcd[ctxt]->pkeys[index];
1947
1948 return ret;
1949 }
1950
qib_query_pkey(struct ib_device * ibdev,u8 port,u16 index,u16 * pkey)1951 static int qib_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
1952 u16 *pkey)
1953 {
1954 struct qib_devdata *dd = dd_from_ibdev(ibdev);
1955 int ret;
1956
1957 if (index >= qib_get_npkeys(dd)) {
1958 ret = -EINVAL;
1959 goto bail;
1960 }
1961
1962 *pkey = qib_get_pkey(to_iport(ibdev, port), index);
1963 ret = 0;
1964
1965 bail:
1966 return ret;
1967 }
1968
1969 /**
1970 * qib_alloc_ucontext - allocate a ucontest
1971 * @ibdev: the infiniband device
1972 * @udata: not used by the QLogic_IB driver
1973 */
1974
qib_alloc_ucontext(struct ib_device * ibdev,struct ib_udata * udata)1975 static struct ib_ucontext *qib_alloc_ucontext(struct ib_device *ibdev,
1976 struct ib_udata *udata)
1977 {
1978 struct qib_ucontext *context;
1979 struct ib_ucontext *ret;
1980
1981 context = kmalloc(sizeof *context, GFP_KERNEL);
1982 if (!context) {
1983 ret = ERR_PTR(-ENOMEM);
1984 goto bail;
1985 }
1986
1987 ret = &context->ibucontext;
1988
1989 bail:
1990 return ret;
1991 }
1992
qib_dealloc_ucontext(struct ib_ucontext * context)1993 static int qib_dealloc_ucontext(struct ib_ucontext *context)
1994 {
1995 kfree(to_iucontext(context));
1996 return 0;
1997 }
1998
init_ibport(struct qib_pportdata * ppd)1999 static void init_ibport(struct qib_pportdata *ppd)
2000 {
2001 struct qib_verbs_counters cntrs;
2002 struct qib_ibport *ibp = &ppd->ibport_data;
2003
2004 spin_lock_init(&ibp->lock);
2005 /* Set the prefix to the default value (see ch. 4.1.1) */
2006 ibp->gid_prefix = IB_DEFAULT_GID_PREFIX;
2007 ibp->sm_lid = be16_to_cpu(IB_LID_PERMISSIVE);
2008 ibp->port_cap_flags = IB_PORT_SYS_IMAGE_GUID_SUP |
2009 IB_PORT_CLIENT_REG_SUP | IB_PORT_SL_MAP_SUP |
2010 IB_PORT_TRAP_SUP | IB_PORT_AUTO_MIGR_SUP |
2011 IB_PORT_DR_NOTICE_SUP | IB_PORT_CAP_MASK_NOTICE_SUP |
2012 IB_PORT_OTHER_LOCAL_CHANGES_SUP;
2013 if (ppd->dd->flags & QIB_HAS_LINK_LATENCY)
2014 ibp->port_cap_flags |= IB_PORT_LINK_LATENCY_SUP;
2015 ibp->pma_counter_select[0] = IB_PMA_PORT_XMIT_DATA;
2016 ibp->pma_counter_select[1] = IB_PMA_PORT_RCV_DATA;
2017 ibp->pma_counter_select[2] = IB_PMA_PORT_XMIT_PKTS;
2018 ibp->pma_counter_select[3] = IB_PMA_PORT_RCV_PKTS;
2019 ibp->pma_counter_select[4] = IB_PMA_PORT_XMIT_WAIT;
2020
2021 /* Snapshot current HW counters to "clear" them. */
2022 qib_get_counters(ppd, &cntrs);
2023 ibp->z_symbol_error_counter = cntrs.symbol_error_counter;
2024 ibp->z_link_error_recovery_counter =
2025 cntrs.link_error_recovery_counter;
2026 ibp->z_link_downed_counter = cntrs.link_downed_counter;
2027 ibp->z_port_rcv_errors = cntrs.port_rcv_errors;
2028 ibp->z_port_rcv_remphys_errors = cntrs.port_rcv_remphys_errors;
2029 ibp->z_port_xmit_discards = cntrs.port_xmit_discards;
2030 ibp->z_port_xmit_data = cntrs.port_xmit_data;
2031 ibp->z_port_rcv_data = cntrs.port_rcv_data;
2032 ibp->z_port_xmit_packets = cntrs.port_xmit_packets;
2033 ibp->z_port_rcv_packets = cntrs.port_rcv_packets;
2034 ibp->z_local_link_integrity_errors =
2035 cntrs.local_link_integrity_errors;
2036 ibp->z_excessive_buffer_overrun_errors =
2037 cntrs.excessive_buffer_overrun_errors;
2038 ibp->z_vl15_dropped = cntrs.vl15_dropped;
2039 RCU_INIT_POINTER(ibp->qp0, NULL);
2040 RCU_INIT_POINTER(ibp->qp1, NULL);
2041 }
2042
2043 /**
2044 * qib_register_ib_device - register our device with the infiniband core
2045 * @dd: the device data structure
2046 * Return the allocated qib_ibdev pointer or NULL on error.
2047 */
qib_register_ib_device(struct qib_devdata * dd)2048 int qib_register_ib_device(struct qib_devdata *dd)
2049 {
2050 struct qib_ibdev *dev = &dd->verbs_dev;
2051 struct ib_device *ibdev = &dev->ibdev;
2052 struct qib_pportdata *ppd = dd->pport;
2053 unsigned i, lk_tab_size;
2054 int ret;
2055
2056 dev->qp_table_size = ib_qib_qp_table_size;
2057 get_random_bytes(&dev->qp_rnd, sizeof(dev->qp_rnd));
2058 dev->qp_table = kmalloc(dev->qp_table_size * sizeof *dev->qp_table,
2059 GFP_KERNEL);
2060 if (!dev->qp_table) {
2061 ret = -ENOMEM;
2062 goto err_qpt;
2063 }
2064 for (i = 0; i < dev->qp_table_size; i++)
2065 RCU_INIT_POINTER(dev->qp_table[i], NULL);
2066
2067 for (i = 0; i < dd->num_pports; i++)
2068 init_ibport(ppd + i);
2069
2070 /* Only need to initialize non-zero fields. */
2071 spin_lock_init(&dev->qpt_lock);
2072 spin_lock_init(&dev->n_pds_lock);
2073 spin_lock_init(&dev->n_ahs_lock);
2074 spin_lock_init(&dev->n_cqs_lock);
2075 spin_lock_init(&dev->n_qps_lock);
2076 spin_lock_init(&dev->n_srqs_lock);
2077 spin_lock_init(&dev->n_mcast_grps_lock);
2078 init_timer(&dev->mem_timer);
2079 dev->mem_timer.function = mem_timer;
2080 dev->mem_timer.data = (unsigned long) dev;
2081
2082 qib_init_qpn_table(dd, &dev->qpn_table);
2083
2084 /*
2085 * The top ib_qib_lkey_table_size bits are used to index the
2086 * table. The lower 8 bits can be owned by the user (copied from
2087 * the LKEY). The remaining bits act as a generation number or tag.
2088 */
2089 spin_lock_init(&dev->lk_table.lock);
2090 /* insure generation is at least 4 bits see keys.c */
2091 if (ib_qib_lkey_table_size > MAX_LKEY_TABLE_BITS) {
2092 qib_dev_warn(dd, "lkey bits %u too large, reduced to %u\n",
2093 ib_qib_lkey_table_size, MAX_LKEY_TABLE_BITS);
2094 ib_qib_lkey_table_size = MAX_LKEY_TABLE_BITS;
2095 }
2096 dev->lk_table.max = 1 << ib_qib_lkey_table_size;
2097 lk_tab_size = dev->lk_table.max * sizeof(*dev->lk_table.table);
2098 dev->lk_table.table = (struct qib_mregion __rcu **)
2099 vmalloc(lk_tab_size);
2100 if (dev->lk_table.table == NULL) {
2101 ret = -ENOMEM;
2102 goto err_lk;
2103 }
2104 RCU_INIT_POINTER(dev->dma_mr, NULL);
2105 for (i = 0; i < dev->lk_table.max; i++)
2106 RCU_INIT_POINTER(dev->lk_table.table[i], NULL);
2107 INIT_LIST_HEAD(&dev->pending_mmaps);
2108 spin_lock_init(&dev->pending_lock);
2109 dev->mmap_offset = PAGE_SIZE;
2110 spin_lock_init(&dev->mmap_offset_lock);
2111 INIT_LIST_HEAD(&dev->piowait);
2112 INIT_LIST_HEAD(&dev->dmawait);
2113 INIT_LIST_HEAD(&dev->txwait);
2114 INIT_LIST_HEAD(&dev->memwait);
2115 INIT_LIST_HEAD(&dev->txreq_free);
2116
2117 if (ppd->sdma_descq_cnt) {
2118 dev->pio_hdrs = dma_alloc_coherent(&dd->pcidev->dev,
2119 ppd->sdma_descq_cnt *
2120 sizeof(struct qib_pio_header),
2121 &dev->pio_hdrs_phys,
2122 GFP_KERNEL);
2123 if (!dev->pio_hdrs) {
2124 ret = -ENOMEM;
2125 goto err_hdrs;
2126 }
2127 }
2128
2129 for (i = 0; i < ppd->sdma_descq_cnt; i++) {
2130 struct qib_verbs_txreq *tx;
2131
2132 tx = kzalloc(sizeof *tx, GFP_KERNEL);
2133 if (!tx) {
2134 ret = -ENOMEM;
2135 goto err_tx;
2136 }
2137 tx->hdr_inx = i;
2138 list_add(&tx->txreq.list, &dev->txreq_free);
2139 }
2140
2141 /*
2142 * The system image GUID is supposed to be the same for all
2143 * IB HCAs in a single system but since there can be other
2144 * device types in the system, we can't be sure this is unique.
2145 */
2146 if (!ib_qib_sys_image_guid)
2147 ib_qib_sys_image_guid = ppd->guid;
2148
2149 strlcpy(ibdev->name, "qib%d", IB_DEVICE_NAME_MAX);
2150 ibdev->owner = THIS_MODULE;
2151 ibdev->node_guid = ppd->guid;
2152 ibdev->uverbs_abi_ver = QIB_UVERBS_ABI_VERSION;
2153 ibdev->uverbs_cmd_mask =
2154 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
2155 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
2156 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
2157 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
2158 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
2159 (1ull << IB_USER_VERBS_CMD_CREATE_AH) |
2160 (1ull << IB_USER_VERBS_CMD_MODIFY_AH) |
2161 (1ull << IB_USER_VERBS_CMD_QUERY_AH) |
2162 (1ull << IB_USER_VERBS_CMD_DESTROY_AH) |
2163 (1ull << IB_USER_VERBS_CMD_REG_MR) |
2164 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
2165 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
2166 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
2167 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
2168 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
2169 (1ull << IB_USER_VERBS_CMD_POLL_CQ) |
2170 (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) |
2171 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
2172 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
2173 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
2174 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
2175 (1ull << IB_USER_VERBS_CMD_POST_SEND) |
2176 (1ull << IB_USER_VERBS_CMD_POST_RECV) |
2177 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) |
2178 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST) |
2179 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
2180 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
2181 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
2182 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ) |
2183 (1ull << IB_USER_VERBS_CMD_POST_SRQ_RECV);
2184 ibdev->node_type = RDMA_NODE_IB_CA;
2185 ibdev->phys_port_cnt = dd->num_pports;
2186 ibdev->num_comp_vectors = 1;
2187 ibdev->dma_device = &dd->pcidev->dev;
2188 ibdev->query_device = qib_query_device;
2189 ibdev->modify_device = qib_modify_device;
2190 ibdev->query_port = qib_query_port;
2191 ibdev->modify_port = qib_modify_port;
2192 ibdev->query_pkey = qib_query_pkey;
2193 ibdev->query_gid = qib_query_gid;
2194 ibdev->alloc_ucontext = qib_alloc_ucontext;
2195 ibdev->dealloc_ucontext = qib_dealloc_ucontext;
2196 ibdev->alloc_pd = qib_alloc_pd;
2197 ibdev->dealloc_pd = qib_dealloc_pd;
2198 ibdev->create_ah = qib_create_ah;
2199 ibdev->destroy_ah = qib_destroy_ah;
2200 ibdev->modify_ah = qib_modify_ah;
2201 ibdev->query_ah = qib_query_ah;
2202 ibdev->create_srq = qib_create_srq;
2203 ibdev->modify_srq = qib_modify_srq;
2204 ibdev->query_srq = qib_query_srq;
2205 ibdev->destroy_srq = qib_destroy_srq;
2206 ibdev->create_qp = qib_create_qp;
2207 ibdev->modify_qp = qib_modify_qp;
2208 ibdev->query_qp = qib_query_qp;
2209 ibdev->destroy_qp = qib_destroy_qp;
2210 ibdev->post_send = qib_post_send;
2211 ibdev->post_recv = qib_post_receive;
2212 ibdev->post_srq_recv = qib_post_srq_receive;
2213 ibdev->create_cq = qib_create_cq;
2214 ibdev->destroy_cq = qib_destroy_cq;
2215 ibdev->resize_cq = qib_resize_cq;
2216 ibdev->poll_cq = qib_poll_cq;
2217 ibdev->req_notify_cq = qib_req_notify_cq;
2218 ibdev->get_dma_mr = qib_get_dma_mr;
2219 ibdev->reg_phys_mr = qib_reg_phys_mr;
2220 ibdev->reg_user_mr = qib_reg_user_mr;
2221 ibdev->dereg_mr = qib_dereg_mr;
2222 ibdev->alloc_fast_reg_mr = qib_alloc_fast_reg_mr;
2223 ibdev->alloc_fast_reg_page_list = qib_alloc_fast_reg_page_list;
2224 ibdev->free_fast_reg_page_list = qib_free_fast_reg_page_list;
2225 ibdev->alloc_fmr = qib_alloc_fmr;
2226 ibdev->map_phys_fmr = qib_map_phys_fmr;
2227 ibdev->unmap_fmr = qib_unmap_fmr;
2228 ibdev->dealloc_fmr = qib_dealloc_fmr;
2229 ibdev->attach_mcast = qib_multicast_attach;
2230 ibdev->detach_mcast = qib_multicast_detach;
2231 ibdev->process_mad = qib_process_mad;
2232 ibdev->mmap = qib_mmap;
2233 ibdev->dma_ops = &qib_dma_mapping_ops;
2234
2235 snprintf(ibdev->node_desc, sizeof(ibdev->node_desc),
2236 "Intel Infiniband HCA %s", init_utsname()->nodename);
2237
2238 ret = ib_register_device(ibdev, qib_create_port_files);
2239 if (ret)
2240 goto err_reg;
2241
2242 ret = qib_create_agents(dev);
2243 if (ret)
2244 goto err_agents;
2245
2246 ret = qib_verbs_register_sysfs(dd);
2247 if (ret)
2248 goto err_class;
2249
2250 goto bail;
2251
2252 err_class:
2253 qib_free_agents(dev);
2254 err_agents:
2255 ib_unregister_device(ibdev);
2256 err_reg:
2257 err_tx:
2258 while (!list_empty(&dev->txreq_free)) {
2259 struct list_head *l = dev->txreq_free.next;
2260 struct qib_verbs_txreq *tx;
2261
2262 list_del(l);
2263 tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
2264 kfree(tx);
2265 }
2266 if (ppd->sdma_descq_cnt)
2267 dma_free_coherent(&dd->pcidev->dev,
2268 ppd->sdma_descq_cnt *
2269 sizeof(struct qib_pio_header),
2270 dev->pio_hdrs, dev->pio_hdrs_phys);
2271 err_hdrs:
2272 vfree(dev->lk_table.table);
2273 err_lk:
2274 kfree(dev->qp_table);
2275 err_qpt:
2276 qib_dev_err(dd, "cannot register verbs: %d!\n", -ret);
2277 bail:
2278 return ret;
2279 }
2280
qib_unregister_ib_device(struct qib_devdata * dd)2281 void qib_unregister_ib_device(struct qib_devdata *dd)
2282 {
2283 struct qib_ibdev *dev = &dd->verbs_dev;
2284 struct ib_device *ibdev = &dev->ibdev;
2285 u32 qps_inuse;
2286 unsigned lk_tab_size;
2287
2288 qib_verbs_unregister_sysfs(dd);
2289
2290 qib_free_agents(dev);
2291
2292 ib_unregister_device(ibdev);
2293
2294 if (!list_empty(&dev->piowait))
2295 qib_dev_err(dd, "piowait list not empty!\n");
2296 if (!list_empty(&dev->dmawait))
2297 qib_dev_err(dd, "dmawait list not empty!\n");
2298 if (!list_empty(&dev->txwait))
2299 qib_dev_err(dd, "txwait list not empty!\n");
2300 if (!list_empty(&dev->memwait))
2301 qib_dev_err(dd, "memwait list not empty!\n");
2302 if (dev->dma_mr)
2303 qib_dev_err(dd, "DMA MR not NULL!\n");
2304
2305 qps_inuse = qib_free_all_qps(dd);
2306 if (qps_inuse)
2307 qib_dev_err(dd, "QP memory leak! %u still in use\n",
2308 qps_inuse);
2309
2310 del_timer_sync(&dev->mem_timer);
2311 qib_free_qpn_table(&dev->qpn_table);
2312 while (!list_empty(&dev->txreq_free)) {
2313 struct list_head *l = dev->txreq_free.next;
2314 struct qib_verbs_txreq *tx;
2315
2316 list_del(l);
2317 tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
2318 kfree(tx);
2319 }
2320 if (dd->pport->sdma_descq_cnt)
2321 dma_free_coherent(&dd->pcidev->dev,
2322 dd->pport->sdma_descq_cnt *
2323 sizeof(struct qib_pio_header),
2324 dev->pio_hdrs, dev->pio_hdrs_phys);
2325 lk_tab_size = dev->lk_table.max * sizeof(*dev->lk_table.table);
2326 vfree(dev->lk_table.table);
2327 kfree(dev->qp_table);
2328 }
2329
2330 /*
2331 * This must be called with s_lock held.
2332 */
qib_schedule_send(struct qib_qp * qp)2333 void qib_schedule_send(struct qib_qp *qp)
2334 {
2335 if (qib_send_ok(qp)) {
2336 struct qib_ibport *ibp =
2337 to_iport(qp->ibqp.device, qp->port_num);
2338 struct qib_pportdata *ppd = ppd_from_ibp(ibp);
2339
2340 queue_work(ppd->qib_wq, &qp->s_work);
2341 }
2342 }
2343