]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - drivers/infiniband/hw/ipath/ipath_verbs.c
ieee1394: sbp2: spin disks down on suspend and shutdown
[mirror_ubuntu-artful-kernel.git] / drivers / infiniband / hw / ipath / ipath_verbs.c
1 /*
2 * Copyright (c) 2006, 2007, 2008 QLogic Corporation. All rights reserved.
3 * Copyright (c) 2005, 2006 PathScale, Inc. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 */
33
34 #include <rdma/ib_mad.h>
35 #include <rdma/ib_user_verbs.h>
36 #include <linux/io.h>
37 #include <linux/utsname.h>
38
39 #include "ipath_kernel.h"
40 #include "ipath_verbs.h"
41 #include "ipath_common.h"
42
43 static unsigned int ib_ipath_qp_table_size = 251;
44 module_param_named(qp_table_size, ib_ipath_qp_table_size, uint, S_IRUGO);
45 MODULE_PARM_DESC(qp_table_size, "QP table size");
46
47 unsigned int ib_ipath_lkey_table_size = 12;
48 module_param_named(lkey_table_size, ib_ipath_lkey_table_size, uint,
49 S_IRUGO);
50 MODULE_PARM_DESC(lkey_table_size,
51 "LKEY table size in bits (2^n, 1 <= n <= 23)");
52
53 static unsigned int ib_ipath_max_pds = 0xFFFF;
54 module_param_named(max_pds, ib_ipath_max_pds, uint, S_IWUSR | S_IRUGO);
55 MODULE_PARM_DESC(max_pds,
56 "Maximum number of protection domains to support");
57
58 static unsigned int ib_ipath_max_ahs = 0xFFFF;
59 module_param_named(max_ahs, ib_ipath_max_ahs, uint, S_IWUSR | S_IRUGO);
60 MODULE_PARM_DESC(max_ahs, "Maximum number of address handles to support");
61
62 unsigned int ib_ipath_max_cqes = 0x2FFFF;
63 module_param_named(max_cqes, ib_ipath_max_cqes, uint, S_IWUSR | S_IRUGO);
64 MODULE_PARM_DESC(max_cqes,
65 "Maximum number of completion queue entries to support");
66
67 unsigned int ib_ipath_max_cqs = 0x1FFFF;
68 module_param_named(max_cqs, ib_ipath_max_cqs, uint, S_IWUSR | S_IRUGO);
69 MODULE_PARM_DESC(max_cqs, "Maximum number of completion queues to support");
70
71 unsigned int ib_ipath_max_qp_wrs = 0x3FFF;
72 module_param_named(max_qp_wrs, ib_ipath_max_qp_wrs, uint,
73 S_IWUSR | S_IRUGO);
74 MODULE_PARM_DESC(max_qp_wrs, "Maximum number of QP WRs to support");
75
76 unsigned int ib_ipath_max_qps = 16384;
77 module_param_named(max_qps, ib_ipath_max_qps, uint, S_IWUSR | S_IRUGO);
78 MODULE_PARM_DESC(max_qps, "Maximum number of QPs to support");
79
80 unsigned int ib_ipath_max_sges = 0x60;
81 module_param_named(max_sges, ib_ipath_max_sges, uint, S_IWUSR | S_IRUGO);
82 MODULE_PARM_DESC(max_sges, "Maximum number of SGEs to support");
83
84 unsigned int ib_ipath_max_mcast_grps = 16384;
85 module_param_named(max_mcast_grps, ib_ipath_max_mcast_grps, uint,
86 S_IWUSR | S_IRUGO);
87 MODULE_PARM_DESC(max_mcast_grps,
88 "Maximum number of multicast groups to support");
89
90 unsigned int ib_ipath_max_mcast_qp_attached = 16;
91 module_param_named(max_mcast_qp_attached, ib_ipath_max_mcast_qp_attached,
92 uint, S_IWUSR | S_IRUGO);
93 MODULE_PARM_DESC(max_mcast_qp_attached,
94 "Maximum number of attached QPs to support");
95
96 unsigned int ib_ipath_max_srqs = 1024;
97 module_param_named(max_srqs, ib_ipath_max_srqs, uint, S_IWUSR | S_IRUGO);
98 MODULE_PARM_DESC(max_srqs, "Maximum number of SRQs to support");
99
100 unsigned int ib_ipath_max_srq_sges = 128;
101 module_param_named(max_srq_sges, ib_ipath_max_srq_sges,
102 uint, S_IWUSR | S_IRUGO);
103 MODULE_PARM_DESC(max_srq_sges, "Maximum number of SRQ SGEs to support");
104
105 unsigned int ib_ipath_max_srq_wrs = 0x1FFFF;
106 module_param_named(max_srq_wrs, ib_ipath_max_srq_wrs,
107 uint, S_IWUSR | S_IRUGO);
108 MODULE_PARM_DESC(max_srq_wrs, "Maximum number of SRQ WRs support");
109
110 static unsigned int ib_ipath_disable_sma;
111 module_param_named(disable_sma, ib_ipath_disable_sma, uint, S_IWUSR | S_IRUGO);
112 MODULE_PARM_DESC(disable_sma, "Disable the SMA");
113
114 /*
115 * Note that it is OK to post send work requests in the SQE and ERR
116 * states; ipath_do_send() will process them and generate error
117 * completions as per IB 1.2 C10-96.
118 */
119 const int ib_ipath_state_ops[IB_QPS_ERR + 1] = {
120 [IB_QPS_RESET] = 0,
121 [IB_QPS_INIT] = IPATH_POST_RECV_OK,
122 [IB_QPS_RTR] = IPATH_POST_RECV_OK | IPATH_PROCESS_RECV_OK,
123 [IB_QPS_RTS] = IPATH_POST_RECV_OK | IPATH_PROCESS_RECV_OK |
124 IPATH_POST_SEND_OK | IPATH_PROCESS_SEND_OK |
125 IPATH_PROCESS_NEXT_SEND_OK,
126 [IB_QPS_SQD] = IPATH_POST_RECV_OK | IPATH_PROCESS_RECV_OK |
127 IPATH_POST_SEND_OK | IPATH_PROCESS_SEND_OK,
128 [IB_QPS_SQE] = IPATH_POST_RECV_OK | IPATH_PROCESS_RECV_OK |
129 IPATH_POST_SEND_OK | IPATH_FLUSH_SEND,
130 [IB_QPS_ERR] = IPATH_POST_RECV_OK | IPATH_FLUSH_RECV |
131 IPATH_POST_SEND_OK | IPATH_FLUSH_SEND,
132 };
133
134 struct ipath_ucontext {
135 struct ib_ucontext ibucontext;
136 };
137
138 static inline struct ipath_ucontext *to_iucontext(struct ib_ucontext
139 *ibucontext)
140 {
141 return container_of(ibucontext, struct ipath_ucontext, ibucontext);
142 }
143
144 /*
145 * Translate ib_wr_opcode into ib_wc_opcode.
146 */
147 const enum ib_wc_opcode ib_ipath_wc_opcode[] = {
148 [IB_WR_RDMA_WRITE] = IB_WC_RDMA_WRITE,
149 [IB_WR_RDMA_WRITE_WITH_IMM] = IB_WC_RDMA_WRITE,
150 [IB_WR_SEND] = IB_WC_SEND,
151 [IB_WR_SEND_WITH_IMM] = IB_WC_SEND,
152 [IB_WR_RDMA_READ] = IB_WC_RDMA_READ,
153 [IB_WR_ATOMIC_CMP_AND_SWP] = IB_WC_COMP_SWAP,
154 [IB_WR_ATOMIC_FETCH_AND_ADD] = IB_WC_FETCH_ADD
155 };
156
157 /*
158 * System image GUID.
159 */
160 static __be64 sys_image_guid;
161
162 /**
163 * ipath_copy_sge - copy data to SGE memory
164 * @ss: the SGE state
165 * @data: the data to copy
166 * @length: the length of the data
167 */
168 void ipath_copy_sge(struct ipath_sge_state *ss, void *data, u32 length)
169 {
170 struct ipath_sge *sge = &ss->sge;
171
172 while (length) {
173 u32 len = sge->length;
174
175 if (len > length)
176 len = length;
177 if (len > sge->sge_length)
178 len = sge->sge_length;
179 BUG_ON(len == 0);
180 memcpy(sge->vaddr, data, len);
181 sge->vaddr += len;
182 sge->length -= len;
183 sge->sge_length -= len;
184 if (sge->sge_length == 0) {
185 if (--ss->num_sge)
186 *sge = *ss->sg_list++;
187 } else if (sge->length == 0 && sge->mr != NULL) {
188 if (++sge->n >= IPATH_SEGSZ) {
189 if (++sge->m >= sge->mr->mapsz)
190 break;
191 sge->n = 0;
192 }
193 sge->vaddr =
194 sge->mr->map[sge->m]->segs[sge->n].vaddr;
195 sge->length =
196 sge->mr->map[sge->m]->segs[sge->n].length;
197 }
198 data += len;
199 length -= len;
200 }
201 }
202
203 /**
204 * ipath_skip_sge - skip over SGE memory - XXX almost dup of prev func
205 * @ss: the SGE state
206 * @length: the number of bytes to skip
207 */
208 void ipath_skip_sge(struct ipath_sge_state *ss, u32 length)
209 {
210 struct ipath_sge *sge = &ss->sge;
211
212 while (length) {
213 u32 len = sge->length;
214
215 if (len > length)
216 len = length;
217 if (len > sge->sge_length)
218 len = sge->sge_length;
219 BUG_ON(len == 0);
220 sge->vaddr += len;
221 sge->length -= len;
222 sge->sge_length -= len;
223 if (sge->sge_length == 0) {
224 if (--ss->num_sge)
225 *sge = *ss->sg_list++;
226 } else if (sge->length == 0 && sge->mr != NULL) {
227 if (++sge->n >= IPATH_SEGSZ) {
228 if (++sge->m >= sge->mr->mapsz)
229 break;
230 sge->n = 0;
231 }
232 sge->vaddr =
233 sge->mr->map[sge->m]->segs[sge->n].vaddr;
234 sge->length =
235 sge->mr->map[sge->m]->segs[sge->n].length;
236 }
237 length -= len;
238 }
239 }
240
241 /*
242 * Count the number of DMA descriptors needed to send length bytes of data.
243 * Don't modify the ipath_sge_state to get the count.
244 * Return zero if any of the segments is not aligned.
245 */
246 static u32 ipath_count_sge(struct ipath_sge_state *ss, u32 length)
247 {
248 struct ipath_sge *sg_list = ss->sg_list;
249 struct ipath_sge sge = ss->sge;
250 u8 num_sge = ss->num_sge;
251 u32 ndesc = 1; /* count the header */
252
253 while (length) {
254 u32 len = sge.length;
255
256 if (len > length)
257 len = length;
258 if (len > sge.sge_length)
259 len = sge.sge_length;
260 BUG_ON(len == 0);
261 if (((long) sge.vaddr & (sizeof(u32) - 1)) ||
262 (len != length && (len & (sizeof(u32) - 1)))) {
263 ndesc = 0;
264 break;
265 }
266 ndesc++;
267 sge.vaddr += len;
268 sge.length -= len;
269 sge.sge_length -= len;
270 if (sge.sge_length == 0) {
271 if (--num_sge)
272 sge = *sg_list++;
273 } else if (sge.length == 0 && sge.mr != NULL) {
274 if (++sge.n >= IPATH_SEGSZ) {
275 if (++sge.m >= sge.mr->mapsz)
276 break;
277 sge.n = 0;
278 }
279 sge.vaddr =
280 sge.mr->map[sge.m]->segs[sge.n].vaddr;
281 sge.length =
282 sge.mr->map[sge.m]->segs[sge.n].length;
283 }
284 length -= len;
285 }
286 return ndesc;
287 }
288
289 /*
290 * Copy from the SGEs to the data buffer.
291 */
292 static void ipath_copy_from_sge(void *data, struct ipath_sge_state *ss,
293 u32 length)
294 {
295 struct ipath_sge *sge = &ss->sge;
296
297 while (length) {
298 u32 len = sge->length;
299
300 if (len > length)
301 len = length;
302 if (len > sge->sge_length)
303 len = sge->sge_length;
304 BUG_ON(len == 0);
305 memcpy(data, sge->vaddr, len);
306 sge->vaddr += len;
307 sge->length -= len;
308 sge->sge_length -= len;
309 if (sge->sge_length == 0) {
310 if (--ss->num_sge)
311 *sge = *ss->sg_list++;
312 } else if (sge->length == 0 && sge->mr != NULL) {
313 if (++sge->n >= IPATH_SEGSZ) {
314 if (++sge->m >= sge->mr->mapsz)
315 break;
316 sge->n = 0;
317 }
318 sge->vaddr =
319 sge->mr->map[sge->m]->segs[sge->n].vaddr;
320 sge->length =
321 sge->mr->map[sge->m]->segs[sge->n].length;
322 }
323 data += len;
324 length -= len;
325 }
326 }
327
328 /**
329 * ipath_post_one_send - post one RC, UC, or UD send work request
330 * @qp: the QP to post on
331 * @wr: the work request to send
332 */
333 static int ipath_post_one_send(struct ipath_qp *qp, struct ib_send_wr *wr)
334 {
335 struct ipath_swqe *wqe;
336 u32 next;
337 int i;
338 int j;
339 int acc;
340 int ret;
341 unsigned long flags;
342
343 spin_lock_irqsave(&qp->s_lock, flags);
344
345 /* Check that state is OK to post send. */
346 if (unlikely(!(ib_ipath_state_ops[qp->state] & IPATH_POST_SEND_OK)))
347 goto bail_inval;
348
349 /* IB spec says that num_sge == 0 is OK. */
350 if (wr->num_sge > qp->s_max_sge)
351 goto bail_inval;
352
353 /*
354 * Don't allow RDMA reads or atomic operations on UC or
355 * undefined operations.
356 * Make sure buffer is large enough to hold the result for atomics.
357 */
358 if (qp->ibqp.qp_type == IB_QPT_UC) {
359 if ((unsigned) wr->opcode >= IB_WR_RDMA_READ)
360 goto bail_inval;
361 } else if (qp->ibqp.qp_type == IB_QPT_UD) {
362 /* Check UD opcode */
363 if (wr->opcode != IB_WR_SEND &&
364 wr->opcode != IB_WR_SEND_WITH_IMM)
365 goto bail_inval;
366 /* Check UD destination address PD */
367 if (qp->ibqp.pd != wr->wr.ud.ah->pd)
368 goto bail_inval;
369 } else if ((unsigned) wr->opcode > IB_WR_ATOMIC_FETCH_AND_ADD)
370 goto bail_inval;
371 else if (wr->opcode >= IB_WR_ATOMIC_CMP_AND_SWP &&
372 (wr->num_sge == 0 ||
373 wr->sg_list[0].length < sizeof(u64) ||
374 wr->sg_list[0].addr & (sizeof(u64) - 1)))
375 goto bail_inval;
376 else if (wr->opcode >= IB_WR_RDMA_READ && !qp->s_max_rd_atomic)
377 goto bail_inval;
378
379 next = qp->s_head + 1;
380 if (next >= qp->s_size)
381 next = 0;
382 if (next == qp->s_last) {
383 ret = -ENOMEM;
384 goto bail;
385 }
386
387 wqe = get_swqe_ptr(qp, qp->s_head);
388 wqe->wr = *wr;
389 wqe->length = 0;
390 if (wr->num_sge) {
391 acc = wr->opcode >= IB_WR_RDMA_READ ?
392 IB_ACCESS_LOCAL_WRITE : 0;
393 for (i = 0, j = 0; i < wr->num_sge; i++) {
394 u32 length = wr->sg_list[i].length;
395 int ok;
396
397 if (length == 0)
398 continue;
399 ok = ipath_lkey_ok(qp, &wqe->sg_list[j],
400 &wr->sg_list[i], acc);
401 if (!ok)
402 goto bail_inval;
403 wqe->length += length;
404 j++;
405 }
406 wqe->wr.num_sge = j;
407 }
408 if (qp->ibqp.qp_type == IB_QPT_UC ||
409 qp->ibqp.qp_type == IB_QPT_RC) {
410 if (wqe->length > 0x80000000U)
411 goto bail_inval;
412 } else if (wqe->length > to_idev(qp->ibqp.device)->dd->ipath_ibmtu)
413 goto bail_inval;
414 wqe->ssn = qp->s_ssn++;
415 qp->s_head = next;
416
417 ret = 0;
418 goto bail;
419
420 bail_inval:
421 ret = -EINVAL;
422 bail:
423 spin_unlock_irqrestore(&qp->s_lock, flags);
424 return ret;
425 }
426
427 /**
428 * ipath_post_send - post a send on a QP
429 * @ibqp: the QP to post the send on
430 * @wr: the list of work requests to post
431 * @bad_wr: the first bad WR is put here
432 *
433 * This may be called from interrupt context.
434 */
435 static int ipath_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
436 struct ib_send_wr **bad_wr)
437 {
438 struct ipath_qp *qp = to_iqp(ibqp);
439 int err = 0;
440
441 for (; wr; wr = wr->next) {
442 err = ipath_post_one_send(qp, wr);
443 if (err) {
444 *bad_wr = wr;
445 goto bail;
446 }
447 }
448
449 /* Try to do the send work in the caller's context. */
450 ipath_do_send((unsigned long) qp);
451
452 bail:
453 return err;
454 }
455
456 /**
457 * ipath_post_receive - post a receive on a QP
458 * @ibqp: the QP to post the receive on
459 * @wr: the WR to post
460 * @bad_wr: the first bad WR is put here
461 *
462 * This may be called from interrupt context.
463 */
464 static int ipath_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
465 struct ib_recv_wr **bad_wr)
466 {
467 struct ipath_qp *qp = to_iqp(ibqp);
468 struct ipath_rwq *wq = qp->r_rq.wq;
469 unsigned long flags;
470 int ret;
471
472 /* Check that state is OK to post receive. */
473 if (!(ib_ipath_state_ops[qp->state] & IPATH_POST_RECV_OK) || !wq) {
474 *bad_wr = wr;
475 ret = -EINVAL;
476 goto bail;
477 }
478
479 for (; wr; wr = wr->next) {
480 struct ipath_rwqe *wqe;
481 u32 next;
482 int i;
483
484 if ((unsigned) wr->num_sge > qp->r_rq.max_sge) {
485 *bad_wr = wr;
486 ret = -EINVAL;
487 goto bail;
488 }
489
490 spin_lock_irqsave(&qp->r_rq.lock, flags);
491 next = wq->head + 1;
492 if (next >= qp->r_rq.size)
493 next = 0;
494 if (next == wq->tail) {
495 spin_unlock_irqrestore(&qp->r_rq.lock, flags);
496 *bad_wr = wr;
497 ret = -ENOMEM;
498 goto bail;
499 }
500
501 wqe = get_rwqe_ptr(&qp->r_rq, wq->head);
502 wqe->wr_id = wr->wr_id;
503 wqe->num_sge = wr->num_sge;
504 for (i = 0; i < wr->num_sge; i++)
505 wqe->sg_list[i] = wr->sg_list[i];
506 /* Make sure queue entry is written before the head index. */
507 smp_wmb();
508 wq->head = next;
509 spin_unlock_irqrestore(&qp->r_rq.lock, flags);
510 }
511 ret = 0;
512
513 bail:
514 return ret;
515 }
516
517 /**
518 * ipath_qp_rcv - processing an incoming packet on a QP
519 * @dev: the device the packet came on
520 * @hdr: the packet header
521 * @has_grh: true if the packet has a GRH
522 * @data: the packet data
523 * @tlen: the packet length
524 * @qp: the QP the packet came on
525 *
526 * This is called from ipath_ib_rcv() to process an incoming packet
527 * for the given QP.
528 * Called at interrupt level.
529 */
530 static void ipath_qp_rcv(struct ipath_ibdev *dev,
531 struct ipath_ib_header *hdr, int has_grh,
532 void *data, u32 tlen, struct ipath_qp *qp)
533 {
534 /* Check for valid receive state. */
535 if (!(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_RECV_OK)) {
536 dev->n_pkt_drops++;
537 return;
538 }
539
540 switch (qp->ibqp.qp_type) {
541 case IB_QPT_SMI:
542 case IB_QPT_GSI:
543 if (ib_ipath_disable_sma)
544 break;
545 /* FALLTHROUGH */
546 case IB_QPT_UD:
547 ipath_ud_rcv(dev, hdr, has_grh, data, tlen, qp);
548 break;
549
550 case IB_QPT_RC:
551 ipath_rc_rcv(dev, hdr, has_grh, data, tlen, qp);
552 break;
553
554 case IB_QPT_UC:
555 ipath_uc_rcv(dev, hdr, has_grh, data, tlen, qp);
556 break;
557
558 default:
559 break;
560 }
561 }
562
563 /**
564 * ipath_ib_rcv - process an incoming packet
565 * @arg: the device pointer
566 * @rhdr: the header of the packet
567 * @data: the packet data
568 * @tlen: the packet length
569 *
570 * This is called from ipath_kreceive() to process an incoming packet at
571 * interrupt level. Tlen is the length of the header + data + CRC in bytes.
572 */
573 void ipath_ib_rcv(struct ipath_ibdev *dev, void *rhdr, void *data,
574 u32 tlen)
575 {
576 struct ipath_ib_header *hdr = rhdr;
577 struct ipath_other_headers *ohdr;
578 struct ipath_qp *qp;
579 u32 qp_num;
580 int lnh;
581 u8 opcode;
582 u16 lid;
583
584 if (unlikely(dev == NULL))
585 goto bail;
586
587 if (unlikely(tlen < 24)) { /* LRH+BTH+CRC */
588 dev->rcv_errors++;
589 goto bail;
590 }
591
592 /* Check for a valid destination LID (see ch. 7.11.1). */
593 lid = be16_to_cpu(hdr->lrh[1]);
594 if (lid < IPATH_MULTICAST_LID_BASE) {
595 lid &= ~((1 << dev->dd->ipath_lmc) - 1);
596 if (unlikely(lid != dev->dd->ipath_lid)) {
597 dev->rcv_errors++;
598 goto bail;
599 }
600 }
601
602 /* Check for GRH */
603 lnh = be16_to_cpu(hdr->lrh[0]) & 3;
604 if (lnh == IPATH_LRH_BTH)
605 ohdr = &hdr->u.oth;
606 else if (lnh == IPATH_LRH_GRH)
607 ohdr = &hdr->u.l.oth;
608 else {
609 dev->rcv_errors++;
610 goto bail;
611 }
612
613 opcode = be32_to_cpu(ohdr->bth[0]) >> 24;
614 dev->opstats[opcode].n_bytes += tlen;
615 dev->opstats[opcode].n_packets++;
616
617 /* Get the destination QP number. */
618 qp_num = be32_to_cpu(ohdr->bth[1]) & IPATH_QPN_MASK;
619 if (qp_num == IPATH_MULTICAST_QPN) {
620 struct ipath_mcast *mcast;
621 struct ipath_mcast_qp *p;
622
623 if (lnh != IPATH_LRH_GRH) {
624 dev->n_pkt_drops++;
625 goto bail;
626 }
627 mcast = ipath_mcast_find(&hdr->u.l.grh.dgid);
628 if (mcast == NULL) {
629 dev->n_pkt_drops++;
630 goto bail;
631 }
632 dev->n_multicast_rcv++;
633 list_for_each_entry_rcu(p, &mcast->qp_list, list)
634 ipath_qp_rcv(dev, hdr, 1, data, tlen, p->qp);
635 /*
636 * Notify ipath_multicast_detach() if it is waiting for us
637 * to finish.
638 */
639 if (atomic_dec_return(&mcast->refcount) <= 1)
640 wake_up(&mcast->wait);
641 } else {
642 qp = ipath_lookup_qpn(&dev->qp_table, qp_num);
643 if (qp) {
644 dev->n_unicast_rcv++;
645 ipath_qp_rcv(dev, hdr, lnh == IPATH_LRH_GRH, data,
646 tlen, qp);
647 /*
648 * Notify ipath_destroy_qp() if it is waiting
649 * for us to finish.
650 */
651 if (atomic_dec_and_test(&qp->refcount))
652 wake_up(&qp->wait);
653 } else
654 dev->n_pkt_drops++;
655 }
656
657 bail:;
658 }
659
660 /**
661 * ipath_ib_timer - verbs timer
662 * @arg: the device pointer
663 *
664 * This is called from ipath_do_rcv_timer() at interrupt level to check for
665 * QPs which need retransmits and to collect performance numbers.
666 */
667 static void ipath_ib_timer(struct ipath_ibdev *dev)
668 {
669 struct ipath_qp *resend = NULL;
670 struct ipath_qp *rnr = NULL;
671 struct list_head *last;
672 struct ipath_qp *qp;
673 unsigned long flags;
674
675 if (dev == NULL)
676 return;
677
678 spin_lock_irqsave(&dev->pending_lock, flags);
679 /* Start filling the next pending queue. */
680 if (++dev->pending_index >= ARRAY_SIZE(dev->pending))
681 dev->pending_index = 0;
682 /* Save any requests still in the new queue, they have timed out. */
683 last = &dev->pending[dev->pending_index];
684 while (!list_empty(last)) {
685 qp = list_entry(last->next, struct ipath_qp, timerwait);
686 list_del_init(&qp->timerwait);
687 qp->timer_next = resend;
688 resend = qp;
689 atomic_inc(&qp->refcount);
690 }
691 last = &dev->rnrwait;
692 if (!list_empty(last)) {
693 qp = list_entry(last->next, struct ipath_qp, timerwait);
694 if (--qp->s_rnr_timeout == 0) {
695 do {
696 list_del_init(&qp->timerwait);
697 qp->timer_next = rnr;
698 rnr = qp;
699 atomic_inc(&qp->refcount);
700 if (list_empty(last))
701 break;
702 qp = list_entry(last->next, struct ipath_qp,
703 timerwait);
704 } while (qp->s_rnr_timeout == 0);
705 }
706 }
707 /*
708 * We should only be in the started state if pma_sample_start != 0
709 */
710 if (dev->pma_sample_status == IB_PMA_SAMPLE_STATUS_STARTED &&
711 --dev->pma_sample_start == 0) {
712 dev->pma_sample_status = IB_PMA_SAMPLE_STATUS_RUNNING;
713 ipath_snapshot_counters(dev->dd, &dev->ipath_sword,
714 &dev->ipath_rword,
715 &dev->ipath_spkts,
716 &dev->ipath_rpkts,
717 &dev->ipath_xmit_wait);
718 }
719 if (dev->pma_sample_status == IB_PMA_SAMPLE_STATUS_RUNNING) {
720 if (dev->pma_sample_interval == 0) {
721 u64 ta, tb, tc, td, te;
722
723 dev->pma_sample_status = IB_PMA_SAMPLE_STATUS_DONE;
724 ipath_snapshot_counters(dev->dd, &ta, &tb,
725 &tc, &td, &te);
726
727 dev->ipath_sword = ta - dev->ipath_sword;
728 dev->ipath_rword = tb - dev->ipath_rword;
729 dev->ipath_spkts = tc - dev->ipath_spkts;
730 dev->ipath_rpkts = td - dev->ipath_rpkts;
731 dev->ipath_xmit_wait = te - dev->ipath_xmit_wait;
732 }
733 else
734 dev->pma_sample_interval--;
735 }
736 spin_unlock_irqrestore(&dev->pending_lock, flags);
737
738 /* XXX What if timer fires again while this is running? */
739 while (resend != NULL) {
740 qp = resend;
741 resend = qp->timer_next;
742
743 spin_lock_irqsave(&qp->s_lock, flags);
744 if (qp->s_last != qp->s_tail &&
745 ib_ipath_state_ops[qp->state] & IPATH_PROCESS_SEND_OK) {
746 dev->n_timeouts++;
747 ipath_restart_rc(qp, qp->s_last_psn + 1);
748 }
749 spin_unlock_irqrestore(&qp->s_lock, flags);
750
751 /* Notify ipath_destroy_qp() if it is waiting. */
752 if (atomic_dec_and_test(&qp->refcount))
753 wake_up(&qp->wait);
754 }
755 while (rnr != NULL) {
756 qp = rnr;
757 rnr = qp->timer_next;
758
759 spin_lock_irqsave(&qp->s_lock, flags);
760 if (ib_ipath_state_ops[qp->state] & IPATH_PROCESS_SEND_OK)
761 ipath_schedule_send(qp);
762 spin_unlock_irqrestore(&qp->s_lock, flags);
763
764 /* Notify ipath_destroy_qp() if it is waiting. */
765 if (atomic_dec_and_test(&qp->refcount))
766 wake_up(&qp->wait);
767 }
768 }
769
770 static void update_sge(struct ipath_sge_state *ss, u32 length)
771 {
772 struct ipath_sge *sge = &ss->sge;
773
774 sge->vaddr += length;
775 sge->length -= length;
776 sge->sge_length -= length;
777 if (sge->sge_length == 0) {
778 if (--ss->num_sge)
779 *sge = *ss->sg_list++;
780 } else if (sge->length == 0 && sge->mr != NULL) {
781 if (++sge->n >= IPATH_SEGSZ) {
782 if (++sge->m >= sge->mr->mapsz)
783 return;
784 sge->n = 0;
785 }
786 sge->vaddr = sge->mr->map[sge->m]->segs[sge->n].vaddr;
787 sge->length = sge->mr->map[sge->m]->segs[sge->n].length;
788 }
789 }
790
791 #ifdef __LITTLE_ENDIAN
792 static inline u32 get_upper_bits(u32 data, u32 shift)
793 {
794 return data >> shift;
795 }
796
797 static inline u32 set_upper_bits(u32 data, u32 shift)
798 {
799 return data << shift;
800 }
801
802 static inline u32 clear_upper_bytes(u32 data, u32 n, u32 off)
803 {
804 data <<= ((sizeof(u32) - n) * BITS_PER_BYTE);
805 data >>= ((sizeof(u32) - n - off) * BITS_PER_BYTE);
806 return data;
807 }
808 #else
809 static inline u32 get_upper_bits(u32 data, u32 shift)
810 {
811 return data << shift;
812 }
813
814 static inline u32 set_upper_bits(u32 data, u32 shift)
815 {
816 return data >> shift;
817 }
818
819 static inline u32 clear_upper_bytes(u32 data, u32 n, u32 off)
820 {
821 data >>= ((sizeof(u32) - n) * BITS_PER_BYTE);
822 data <<= ((sizeof(u32) - n - off) * BITS_PER_BYTE);
823 return data;
824 }
825 #endif
826
827 static void copy_io(u32 __iomem *piobuf, struct ipath_sge_state *ss,
828 u32 length, unsigned flush_wc)
829 {
830 u32 extra = 0;
831 u32 data = 0;
832 u32 last;
833
834 while (1) {
835 u32 len = ss->sge.length;
836 u32 off;
837
838 if (len > length)
839 len = length;
840 if (len > ss->sge.sge_length)
841 len = ss->sge.sge_length;
842 BUG_ON(len == 0);
843 /* If the source address is not aligned, try to align it. */
844 off = (unsigned long)ss->sge.vaddr & (sizeof(u32) - 1);
845 if (off) {
846 u32 *addr = (u32 *)((unsigned long)ss->sge.vaddr &
847 ~(sizeof(u32) - 1));
848 u32 v = get_upper_bits(*addr, off * BITS_PER_BYTE);
849 u32 y;
850
851 y = sizeof(u32) - off;
852 if (len > y)
853 len = y;
854 if (len + extra >= sizeof(u32)) {
855 data |= set_upper_bits(v, extra *
856 BITS_PER_BYTE);
857 len = sizeof(u32) - extra;
858 if (len == length) {
859 last = data;
860 break;
861 }
862 __raw_writel(data, piobuf);
863 piobuf++;
864 extra = 0;
865 data = 0;
866 } else {
867 /* Clear unused upper bytes */
868 data |= clear_upper_bytes(v, len, extra);
869 if (len == length) {
870 last = data;
871 break;
872 }
873 extra += len;
874 }
875 } else if (extra) {
876 /* Source address is aligned. */
877 u32 *addr = (u32 *) ss->sge.vaddr;
878 int shift = extra * BITS_PER_BYTE;
879 int ushift = 32 - shift;
880 u32 l = len;
881
882 while (l >= sizeof(u32)) {
883 u32 v = *addr;
884
885 data |= set_upper_bits(v, shift);
886 __raw_writel(data, piobuf);
887 data = get_upper_bits(v, ushift);
888 piobuf++;
889 addr++;
890 l -= sizeof(u32);
891 }
892 /*
893 * We still have 'extra' number of bytes leftover.
894 */
895 if (l) {
896 u32 v = *addr;
897
898 if (l + extra >= sizeof(u32)) {
899 data |= set_upper_bits(v, shift);
900 len -= l + extra - sizeof(u32);
901 if (len == length) {
902 last = data;
903 break;
904 }
905 __raw_writel(data, piobuf);
906 piobuf++;
907 extra = 0;
908 data = 0;
909 } else {
910 /* Clear unused upper bytes */
911 data |= clear_upper_bytes(v, l,
912 extra);
913 if (len == length) {
914 last = data;
915 break;
916 }
917 extra += l;
918 }
919 } else if (len == length) {
920 last = data;
921 break;
922 }
923 } else if (len == length) {
924 u32 w;
925
926 /*
927 * Need to round up for the last dword in the
928 * packet.
929 */
930 w = (len + 3) >> 2;
931 __iowrite32_copy(piobuf, ss->sge.vaddr, w - 1);
932 piobuf += w - 1;
933 last = ((u32 *) ss->sge.vaddr)[w - 1];
934 break;
935 } else {
936 u32 w = len >> 2;
937
938 __iowrite32_copy(piobuf, ss->sge.vaddr, w);
939 piobuf += w;
940
941 extra = len & (sizeof(u32) - 1);
942 if (extra) {
943 u32 v = ((u32 *) ss->sge.vaddr)[w];
944
945 /* Clear unused upper bytes */
946 data = clear_upper_bytes(v, extra, 0);
947 }
948 }
949 update_sge(ss, len);
950 length -= len;
951 }
952 /* Update address before sending packet. */
953 update_sge(ss, length);
954 if (flush_wc) {
955 /* must flush early everything before trigger word */
956 ipath_flush_wc();
957 __raw_writel(last, piobuf);
958 /* be sure trigger word is written */
959 ipath_flush_wc();
960 } else
961 __raw_writel(last, piobuf);
962 }
963
964 /*
965 * Convert IB rate to delay multiplier.
966 */
967 unsigned ipath_ib_rate_to_mult(enum ib_rate rate)
968 {
969 switch (rate) {
970 case IB_RATE_2_5_GBPS: return 8;
971 case IB_RATE_5_GBPS: return 4;
972 case IB_RATE_10_GBPS: return 2;
973 case IB_RATE_20_GBPS: return 1;
974 default: return 0;
975 }
976 }
977
978 /*
979 * Convert delay multiplier to IB rate
980 */
981 static enum ib_rate ipath_mult_to_ib_rate(unsigned mult)
982 {
983 switch (mult) {
984 case 8: return IB_RATE_2_5_GBPS;
985 case 4: return IB_RATE_5_GBPS;
986 case 2: return IB_RATE_10_GBPS;
987 case 1: return IB_RATE_20_GBPS;
988 default: return IB_RATE_PORT_CURRENT;
989 }
990 }
991
992 static inline struct ipath_verbs_txreq *get_txreq(struct ipath_ibdev *dev)
993 {
994 struct ipath_verbs_txreq *tx = NULL;
995 unsigned long flags;
996
997 spin_lock_irqsave(&dev->pending_lock, flags);
998 if (!list_empty(&dev->txreq_free)) {
999 struct list_head *l = dev->txreq_free.next;
1000
1001 list_del(l);
1002 tx = list_entry(l, struct ipath_verbs_txreq, txreq.list);
1003 }
1004 spin_unlock_irqrestore(&dev->pending_lock, flags);
1005 return tx;
1006 }
1007
1008 static inline void put_txreq(struct ipath_ibdev *dev,
1009 struct ipath_verbs_txreq *tx)
1010 {
1011 unsigned long flags;
1012
1013 spin_lock_irqsave(&dev->pending_lock, flags);
1014 list_add(&tx->txreq.list, &dev->txreq_free);
1015 spin_unlock_irqrestore(&dev->pending_lock, flags);
1016 }
1017
1018 static void sdma_complete(void *cookie, int status)
1019 {
1020 struct ipath_verbs_txreq *tx = cookie;
1021 struct ipath_qp *qp = tx->qp;
1022 struct ipath_ibdev *dev = to_idev(qp->ibqp.device);
1023 unsigned int flags;
1024 enum ib_wc_status ibs = status == IPATH_SDMA_TXREQ_S_OK ?
1025 IB_WC_SUCCESS : IB_WC_WR_FLUSH_ERR;
1026
1027 if (atomic_dec_and_test(&qp->s_dma_busy)) {
1028 spin_lock_irqsave(&qp->s_lock, flags);
1029 if (tx->wqe)
1030 ipath_send_complete(qp, tx->wqe, ibs);
1031 if ((ib_ipath_state_ops[qp->state] & IPATH_FLUSH_SEND &&
1032 qp->s_last != qp->s_head) ||
1033 (qp->s_flags & IPATH_S_WAIT_DMA))
1034 ipath_schedule_send(qp);
1035 spin_unlock_irqrestore(&qp->s_lock, flags);
1036 wake_up(&qp->wait_dma);
1037 } else if (tx->wqe) {
1038 spin_lock_irqsave(&qp->s_lock, flags);
1039 ipath_send_complete(qp, tx->wqe, ibs);
1040 spin_unlock_irqrestore(&qp->s_lock, flags);
1041 }
1042
1043 if (tx->txreq.flags & IPATH_SDMA_TXREQ_F_FREEBUF)
1044 kfree(tx->txreq.map_addr);
1045 put_txreq(dev, tx);
1046
1047 if (atomic_dec_and_test(&qp->refcount))
1048 wake_up(&qp->wait);
1049 }
1050
1051 static void decrement_dma_busy(struct ipath_qp *qp)
1052 {
1053 unsigned int flags;
1054
1055 if (atomic_dec_and_test(&qp->s_dma_busy)) {
1056 spin_lock_irqsave(&qp->s_lock, flags);
1057 if ((ib_ipath_state_ops[qp->state] & IPATH_FLUSH_SEND &&
1058 qp->s_last != qp->s_head) ||
1059 (qp->s_flags & IPATH_S_WAIT_DMA))
1060 ipath_schedule_send(qp);
1061 spin_unlock_irqrestore(&qp->s_lock, flags);
1062 wake_up(&qp->wait_dma);
1063 }
1064 }
1065
1066 /*
1067 * Compute the number of clock cycles of delay before sending the next packet.
1068 * The multipliers reflect the number of clocks for the fastest rate so
1069 * one tick at 4xDDR is 8 ticks at 1xSDR.
1070 * If the destination port will take longer to receive a packet than
1071 * the outgoing link can send it, we need to delay sending the next packet
1072 * by the difference in time it takes the receiver to receive and the sender
1073 * to send this packet.
1074 * Note that this delay is always correct for UC and RC but not always
1075 * optimal for UD. For UD, the destination HCA can be different for each
1076 * packet, in which case, we could send packets to a different destination
1077 * while "waiting" for the delay. The overhead for doing this without
1078 * HW support is more than just paying the cost of delaying some packets
1079 * unnecessarily.
1080 */
1081 static inline unsigned ipath_pkt_delay(u32 plen, u8 snd_mult, u8 rcv_mult)
1082 {
1083 return (rcv_mult > snd_mult) ?
1084 (plen * (rcv_mult - snd_mult) + 1) >> 1 : 0;
1085 }
1086
1087 static int ipath_verbs_send_dma(struct ipath_qp *qp,
1088 struct ipath_ib_header *hdr, u32 hdrwords,
1089 struct ipath_sge_state *ss, u32 len,
1090 u32 plen, u32 dwords)
1091 {
1092 struct ipath_ibdev *dev = to_idev(qp->ibqp.device);
1093 struct ipath_devdata *dd = dev->dd;
1094 struct ipath_verbs_txreq *tx;
1095 u32 *piobuf;
1096 u32 control;
1097 u32 ndesc;
1098 int ret;
1099
1100 tx = qp->s_tx;
1101 if (tx) {
1102 qp->s_tx = NULL;
1103 /* resend previously constructed packet */
1104 atomic_inc(&qp->s_dma_busy);
1105 ret = ipath_sdma_verbs_send(dd, tx->ss, tx->len, tx);
1106 if (ret) {
1107 qp->s_tx = tx;
1108 decrement_dma_busy(qp);
1109 }
1110 goto bail;
1111 }
1112
1113 tx = get_txreq(dev);
1114 if (!tx) {
1115 ret = -EBUSY;
1116 goto bail;
1117 }
1118
1119 /*
1120 * Get the saved delay count we computed for the previous packet
1121 * and save the delay count for this packet to be used next time
1122 * we get here.
1123 */
1124 control = qp->s_pkt_delay;
1125 qp->s_pkt_delay = ipath_pkt_delay(plen, dd->delay_mult, qp->s_dmult);
1126
1127 tx->qp = qp;
1128 atomic_inc(&qp->refcount);
1129 tx->wqe = qp->s_wqe;
1130 tx->txreq.callback = sdma_complete;
1131 tx->txreq.callback_cookie = tx;
1132 tx->txreq.flags = IPATH_SDMA_TXREQ_F_HEADTOHOST |
1133 IPATH_SDMA_TXREQ_F_INTREQ | IPATH_SDMA_TXREQ_F_FREEDESC;
1134 if (plen + 1 >= IPATH_SMALLBUF_DWORDS)
1135 tx->txreq.flags |= IPATH_SDMA_TXREQ_F_USELARGEBUF;
1136
1137 /* VL15 packets bypass credit check */
1138 if ((be16_to_cpu(hdr->lrh[0]) >> 12) == 15) {
1139 control |= 1ULL << 31;
1140 tx->txreq.flags |= IPATH_SDMA_TXREQ_F_VL15;
1141 }
1142
1143 if (len) {
1144 /*
1145 * Don't try to DMA if it takes more descriptors than
1146 * the queue holds.
1147 */
1148 ndesc = ipath_count_sge(ss, len);
1149 if (ndesc >= dd->ipath_sdma_descq_cnt)
1150 ndesc = 0;
1151 } else
1152 ndesc = 1;
1153 if (ndesc) {
1154 tx->hdr.pbc[0] = cpu_to_le32(plen);
1155 tx->hdr.pbc[1] = cpu_to_le32(control);
1156 memcpy(&tx->hdr.hdr, hdr, hdrwords << 2);
1157 tx->txreq.sg_count = ndesc;
1158 tx->map_len = (hdrwords + 2) << 2;
1159 tx->txreq.map_addr = &tx->hdr;
1160 atomic_inc(&qp->s_dma_busy);
1161 ret = ipath_sdma_verbs_send(dd, ss, dwords, tx);
1162 if (ret) {
1163 /* save ss and length in dwords */
1164 tx->ss = ss;
1165 tx->len = dwords;
1166 qp->s_tx = tx;
1167 decrement_dma_busy(qp);
1168 }
1169 goto bail;
1170 }
1171
1172 /* Allocate a buffer and copy the header and payload to it. */
1173 tx->map_len = (plen + 1) << 2;
1174 piobuf = kmalloc(tx->map_len, GFP_ATOMIC);
1175 if (unlikely(piobuf == NULL)) {
1176 ret = -EBUSY;
1177 goto err_tx;
1178 }
1179 tx->txreq.map_addr = piobuf;
1180 tx->txreq.flags |= IPATH_SDMA_TXREQ_F_FREEBUF;
1181 tx->txreq.sg_count = 1;
1182
1183 *piobuf++ = (__force u32) cpu_to_le32(plen);
1184 *piobuf++ = (__force u32) cpu_to_le32(control);
1185 memcpy(piobuf, hdr, hdrwords << 2);
1186 ipath_copy_from_sge(piobuf + hdrwords, ss, len);
1187
1188 atomic_inc(&qp->s_dma_busy);
1189 ret = ipath_sdma_verbs_send(dd, NULL, 0, tx);
1190 /*
1191 * If we couldn't queue the DMA request, save the info
1192 * and try again later rather than destroying the
1193 * buffer and undoing the side effects of the copy.
1194 */
1195 if (ret) {
1196 tx->ss = NULL;
1197 tx->len = 0;
1198 qp->s_tx = tx;
1199 decrement_dma_busy(qp);
1200 }
1201 dev->n_unaligned++;
1202 goto bail;
1203
1204 err_tx:
1205 if (atomic_dec_and_test(&qp->refcount))
1206 wake_up(&qp->wait);
1207 put_txreq(dev, tx);
1208 bail:
1209 return ret;
1210 }
1211
1212 static int ipath_verbs_send_pio(struct ipath_qp *qp,
1213 struct ipath_ib_header *ibhdr, u32 hdrwords,
1214 struct ipath_sge_state *ss, u32 len,
1215 u32 plen, u32 dwords)
1216 {
1217 struct ipath_devdata *dd = to_idev(qp->ibqp.device)->dd;
1218 u32 *hdr = (u32 *) ibhdr;
1219 u32 __iomem *piobuf;
1220 unsigned flush_wc;
1221 u32 control;
1222 int ret;
1223 unsigned int flags;
1224
1225 piobuf = ipath_getpiobuf(dd, plen, NULL);
1226 if (unlikely(piobuf == NULL)) {
1227 ret = -EBUSY;
1228 goto bail;
1229 }
1230
1231 /*
1232 * Get the saved delay count we computed for the previous packet
1233 * and save the delay count for this packet to be used next time
1234 * we get here.
1235 */
1236 control = qp->s_pkt_delay;
1237 qp->s_pkt_delay = ipath_pkt_delay(plen, dd->delay_mult, qp->s_dmult);
1238
1239 /* VL15 packets bypass credit check */
1240 if ((be16_to_cpu(ibhdr->lrh[0]) >> 12) == 15)
1241 control |= 1ULL << 31;
1242
1243 /*
1244 * Write the length to the control qword plus any needed flags.
1245 * We have to flush after the PBC for correctness on some cpus
1246 * or WC buffer can be written out of order.
1247 */
1248 writeq(((u64) control << 32) | plen, piobuf);
1249 piobuf += 2;
1250
1251 flush_wc = dd->ipath_flags & IPATH_PIO_FLUSH_WC;
1252 if (len == 0) {
1253 /*
1254 * If there is just the header portion, must flush before
1255 * writing last word of header for correctness, and after
1256 * the last header word (trigger word).
1257 */
1258 if (flush_wc) {
1259 ipath_flush_wc();
1260 __iowrite32_copy(piobuf, hdr, hdrwords - 1);
1261 ipath_flush_wc();
1262 __raw_writel(hdr[hdrwords - 1], piobuf + hdrwords - 1);
1263 ipath_flush_wc();
1264 } else
1265 __iowrite32_copy(piobuf, hdr, hdrwords);
1266 goto done;
1267 }
1268
1269 if (flush_wc)
1270 ipath_flush_wc();
1271 __iowrite32_copy(piobuf, hdr, hdrwords);
1272 piobuf += hdrwords;
1273
1274 /* The common case is aligned and contained in one segment. */
1275 if (likely(ss->num_sge == 1 && len <= ss->sge.length &&
1276 !((unsigned long)ss->sge.vaddr & (sizeof(u32) - 1)))) {
1277 u32 *addr = (u32 *) ss->sge.vaddr;
1278
1279 /* Update address before sending packet. */
1280 update_sge(ss, len);
1281 if (flush_wc) {
1282 __iowrite32_copy(piobuf, addr, dwords - 1);
1283 /* must flush early everything before trigger word */
1284 ipath_flush_wc();
1285 __raw_writel(addr[dwords - 1], piobuf + dwords - 1);
1286 /* be sure trigger word is written */
1287 ipath_flush_wc();
1288 } else
1289 __iowrite32_copy(piobuf, addr, dwords);
1290 goto done;
1291 }
1292 copy_io(piobuf, ss, len, flush_wc);
1293 done:
1294 if (qp->s_wqe) {
1295 spin_lock_irqsave(&qp->s_lock, flags);
1296 ipath_send_complete(qp, qp->s_wqe, IB_WC_SUCCESS);
1297 spin_unlock_irqrestore(&qp->s_lock, flags);
1298 }
1299 ret = 0;
1300 bail:
1301 return ret;
1302 }
1303
1304 /**
1305 * ipath_verbs_send - send a packet
1306 * @qp: the QP to send on
1307 * @hdr: the packet header
1308 * @hdrwords: the number of 32-bit words in the header
1309 * @ss: the SGE to send
1310 * @len: the length of the packet in bytes
1311 */
1312 int ipath_verbs_send(struct ipath_qp *qp, struct ipath_ib_header *hdr,
1313 u32 hdrwords, struct ipath_sge_state *ss, u32 len)
1314 {
1315 struct ipath_devdata *dd = to_idev(qp->ibqp.device)->dd;
1316 u32 plen;
1317 int ret;
1318 u32 dwords = (len + 3) >> 2;
1319
1320 /*
1321 * Calculate the send buffer trigger address.
1322 * The +1 counts for the pbc control dword following the pbc length.
1323 */
1324 plen = hdrwords + dwords + 1;
1325
1326 /*
1327 * VL15 packets (IB_QPT_SMI) will always use PIO, so we
1328 * can defer SDMA restart until link goes ACTIVE without
1329 * worrying about just how we got there.
1330 */
1331 if (qp->ibqp.qp_type == IB_QPT_SMI ||
1332 !(dd->ipath_flags & IPATH_HAS_SEND_DMA))
1333 ret = ipath_verbs_send_pio(qp, hdr, hdrwords, ss, len,
1334 plen, dwords);
1335 else
1336 ret = ipath_verbs_send_dma(qp, hdr, hdrwords, ss, len,
1337 plen, dwords);
1338
1339 return ret;
1340 }
1341
1342 int ipath_snapshot_counters(struct ipath_devdata *dd, u64 *swords,
1343 u64 *rwords, u64 *spkts, u64 *rpkts,
1344 u64 *xmit_wait)
1345 {
1346 int ret;
1347
1348 if (!(dd->ipath_flags & IPATH_INITTED)) {
1349 /* no hardware, freeze, etc. */
1350 ret = -EINVAL;
1351 goto bail;
1352 }
1353 *swords = ipath_snap_cntr(dd, dd->ipath_cregs->cr_wordsendcnt);
1354 *rwords = ipath_snap_cntr(dd, dd->ipath_cregs->cr_wordrcvcnt);
1355 *spkts = ipath_snap_cntr(dd, dd->ipath_cregs->cr_pktsendcnt);
1356 *rpkts = ipath_snap_cntr(dd, dd->ipath_cregs->cr_pktrcvcnt);
1357 *xmit_wait = ipath_snap_cntr(dd, dd->ipath_cregs->cr_sendstallcnt);
1358
1359 ret = 0;
1360
1361 bail:
1362 return ret;
1363 }
1364
1365 /**
1366 * ipath_get_counters - get various chip counters
1367 * @dd: the infinipath device
1368 * @cntrs: counters are placed here
1369 *
1370 * Return the counters needed by recv_pma_get_portcounters().
1371 */
1372 int ipath_get_counters(struct ipath_devdata *dd,
1373 struct ipath_verbs_counters *cntrs)
1374 {
1375 struct ipath_cregs const *crp = dd->ipath_cregs;
1376 int ret;
1377
1378 if (!(dd->ipath_flags & IPATH_INITTED)) {
1379 /* no hardware, freeze, etc. */
1380 ret = -EINVAL;
1381 goto bail;
1382 }
1383 cntrs->symbol_error_counter =
1384 ipath_snap_cntr(dd, crp->cr_ibsymbolerrcnt);
1385 cntrs->link_error_recovery_counter =
1386 ipath_snap_cntr(dd, crp->cr_iblinkerrrecovcnt);
1387 /*
1388 * The link downed counter counts when the other side downs the
1389 * connection. We add in the number of times we downed the link
1390 * due to local link integrity errors to compensate.
1391 */
1392 cntrs->link_downed_counter =
1393 ipath_snap_cntr(dd, crp->cr_iblinkdowncnt);
1394 cntrs->port_rcv_errors =
1395 ipath_snap_cntr(dd, crp->cr_rxdroppktcnt) +
1396 ipath_snap_cntr(dd, crp->cr_rcvovflcnt) +
1397 ipath_snap_cntr(dd, crp->cr_portovflcnt) +
1398 ipath_snap_cntr(dd, crp->cr_err_rlencnt) +
1399 ipath_snap_cntr(dd, crp->cr_invalidrlencnt) +
1400 ipath_snap_cntr(dd, crp->cr_errlinkcnt) +
1401 ipath_snap_cntr(dd, crp->cr_erricrccnt) +
1402 ipath_snap_cntr(dd, crp->cr_errvcrccnt) +
1403 ipath_snap_cntr(dd, crp->cr_errlpcrccnt) +
1404 ipath_snap_cntr(dd, crp->cr_badformatcnt) +
1405 dd->ipath_rxfc_unsupvl_errs;
1406 if (crp->cr_rxotherlocalphyerrcnt)
1407 cntrs->port_rcv_errors +=
1408 ipath_snap_cntr(dd, crp->cr_rxotherlocalphyerrcnt);
1409 if (crp->cr_rxvlerrcnt)
1410 cntrs->port_rcv_errors +=
1411 ipath_snap_cntr(dd, crp->cr_rxvlerrcnt);
1412 cntrs->port_rcv_remphys_errors =
1413 ipath_snap_cntr(dd, crp->cr_rcvebpcnt);
1414 cntrs->port_xmit_discards = ipath_snap_cntr(dd, crp->cr_unsupvlcnt);
1415 cntrs->port_xmit_data = ipath_snap_cntr(dd, crp->cr_wordsendcnt);
1416 cntrs->port_rcv_data = ipath_snap_cntr(dd, crp->cr_wordrcvcnt);
1417 cntrs->port_xmit_packets = ipath_snap_cntr(dd, crp->cr_pktsendcnt);
1418 cntrs->port_rcv_packets = ipath_snap_cntr(dd, crp->cr_pktrcvcnt);
1419 cntrs->local_link_integrity_errors =
1420 crp->cr_locallinkintegrityerrcnt ?
1421 ipath_snap_cntr(dd, crp->cr_locallinkintegrityerrcnt) :
1422 ((dd->ipath_flags & IPATH_GPIO_ERRINTRS) ?
1423 dd->ipath_lli_errs : dd->ipath_lli_errors);
1424 cntrs->excessive_buffer_overrun_errors =
1425 crp->cr_excessbufferovflcnt ?
1426 ipath_snap_cntr(dd, crp->cr_excessbufferovflcnt) :
1427 dd->ipath_overrun_thresh_errs;
1428 cntrs->vl15_dropped = crp->cr_vl15droppedpktcnt ?
1429 ipath_snap_cntr(dd, crp->cr_vl15droppedpktcnt) : 0;
1430
1431 ret = 0;
1432
1433 bail:
1434 return ret;
1435 }
1436
1437 /**
1438 * ipath_ib_piobufavail - callback when a PIO buffer is available
1439 * @arg: the device pointer
1440 *
1441 * This is called from ipath_intr() at interrupt level when a PIO buffer is
1442 * available after ipath_verbs_send() returned an error that no buffers were
1443 * available. Return 1 if we consumed all the PIO buffers and we still have
1444 * QPs waiting for buffers (for now, just restart the send tasklet and
1445 * return zero).
1446 */
1447 int ipath_ib_piobufavail(struct ipath_ibdev *dev)
1448 {
1449 struct list_head *list;
1450 struct ipath_qp *qplist;
1451 struct ipath_qp *qp;
1452 unsigned long flags;
1453
1454 if (dev == NULL)
1455 goto bail;
1456
1457 list = &dev->piowait;
1458 qplist = NULL;
1459
1460 spin_lock_irqsave(&dev->pending_lock, flags);
1461 while (!list_empty(list)) {
1462 qp = list_entry(list->next, struct ipath_qp, piowait);
1463 list_del_init(&qp->piowait);
1464 qp->pio_next = qplist;
1465 qplist = qp;
1466 atomic_inc(&qp->refcount);
1467 }
1468 spin_unlock_irqrestore(&dev->pending_lock, flags);
1469
1470 while (qplist != NULL) {
1471 qp = qplist;
1472 qplist = qp->pio_next;
1473
1474 spin_lock_irqsave(&qp->s_lock, flags);
1475 if (ib_ipath_state_ops[qp->state] & IPATH_PROCESS_SEND_OK)
1476 ipath_schedule_send(qp);
1477 spin_unlock_irqrestore(&qp->s_lock, flags);
1478
1479 /* Notify ipath_destroy_qp() if it is waiting. */
1480 if (atomic_dec_and_test(&qp->refcount))
1481 wake_up(&qp->wait);
1482 }
1483
1484 bail:
1485 return 0;
1486 }
1487
1488 static int ipath_query_device(struct ib_device *ibdev,
1489 struct ib_device_attr *props)
1490 {
1491 struct ipath_ibdev *dev = to_idev(ibdev);
1492
1493 memset(props, 0, sizeof(*props));
1494
1495 props->device_cap_flags = IB_DEVICE_BAD_PKEY_CNTR |
1496 IB_DEVICE_BAD_QKEY_CNTR | IB_DEVICE_SHUTDOWN_PORT |
1497 IB_DEVICE_SYS_IMAGE_GUID | IB_DEVICE_RC_RNR_NAK_GEN |
1498 IB_DEVICE_PORT_ACTIVE_EVENT | IB_DEVICE_SRQ_RESIZE;
1499 props->page_size_cap = PAGE_SIZE;
1500 props->vendor_id = dev->dd->ipath_vendorid;
1501 props->vendor_part_id = dev->dd->ipath_deviceid;
1502 props->hw_ver = dev->dd->ipath_pcirev;
1503
1504 props->sys_image_guid = dev->sys_image_guid;
1505
1506 props->max_mr_size = ~0ull;
1507 props->max_qp = ib_ipath_max_qps;
1508 props->max_qp_wr = ib_ipath_max_qp_wrs;
1509 props->max_sge = ib_ipath_max_sges;
1510 props->max_cq = ib_ipath_max_cqs;
1511 props->max_ah = ib_ipath_max_ahs;
1512 props->max_cqe = ib_ipath_max_cqes;
1513 props->max_mr = dev->lk_table.max;
1514 props->max_fmr = dev->lk_table.max;
1515 props->max_map_per_fmr = 32767;
1516 props->max_pd = ib_ipath_max_pds;
1517 props->max_qp_rd_atom = IPATH_MAX_RDMA_ATOMIC;
1518 props->max_qp_init_rd_atom = 255;
1519 /* props->max_res_rd_atom */
1520 props->max_srq = ib_ipath_max_srqs;
1521 props->max_srq_wr = ib_ipath_max_srq_wrs;
1522 props->max_srq_sge = ib_ipath_max_srq_sges;
1523 /* props->local_ca_ack_delay */
1524 props->atomic_cap = IB_ATOMIC_GLOB;
1525 props->max_pkeys = ipath_get_npkeys(dev->dd);
1526 props->max_mcast_grp = ib_ipath_max_mcast_grps;
1527 props->max_mcast_qp_attach = ib_ipath_max_mcast_qp_attached;
1528 props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
1529 props->max_mcast_grp;
1530
1531 return 0;
1532 }
1533
1534 const u8 ipath_cvt_physportstate[32] = {
1535 [INFINIPATH_IBCS_LT_STATE_DISABLED] = IB_PHYSPORTSTATE_DISABLED,
1536 [INFINIPATH_IBCS_LT_STATE_LINKUP] = IB_PHYSPORTSTATE_LINKUP,
1537 [INFINIPATH_IBCS_LT_STATE_POLLACTIVE] = IB_PHYSPORTSTATE_POLL,
1538 [INFINIPATH_IBCS_LT_STATE_POLLQUIET] = IB_PHYSPORTSTATE_POLL,
1539 [INFINIPATH_IBCS_LT_STATE_SLEEPDELAY] = IB_PHYSPORTSTATE_SLEEP,
1540 [INFINIPATH_IBCS_LT_STATE_SLEEPQUIET] = IB_PHYSPORTSTATE_SLEEP,
1541 [INFINIPATH_IBCS_LT_STATE_CFGDEBOUNCE] =
1542 IB_PHYSPORTSTATE_CFG_TRAIN,
1543 [INFINIPATH_IBCS_LT_STATE_CFGRCVFCFG] =
1544 IB_PHYSPORTSTATE_CFG_TRAIN,
1545 [INFINIPATH_IBCS_LT_STATE_CFGWAITRMT] =
1546 IB_PHYSPORTSTATE_CFG_TRAIN,
1547 [INFINIPATH_IBCS_LT_STATE_CFGIDLE] = IB_PHYSPORTSTATE_CFG_TRAIN,
1548 [INFINIPATH_IBCS_LT_STATE_RECOVERRETRAIN] =
1549 IB_PHYSPORTSTATE_LINK_ERR_RECOVER,
1550 [INFINIPATH_IBCS_LT_STATE_RECOVERWAITRMT] =
1551 IB_PHYSPORTSTATE_LINK_ERR_RECOVER,
1552 [INFINIPATH_IBCS_LT_STATE_RECOVERIDLE] =
1553 IB_PHYSPORTSTATE_LINK_ERR_RECOVER,
1554 [0x10] = IB_PHYSPORTSTATE_CFG_TRAIN,
1555 [0x11] = IB_PHYSPORTSTATE_CFG_TRAIN,
1556 [0x12] = IB_PHYSPORTSTATE_CFG_TRAIN,
1557 [0x13] = IB_PHYSPORTSTATE_CFG_TRAIN,
1558 [0x14] = IB_PHYSPORTSTATE_CFG_TRAIN,
1559 [0x15] = IB_PHYSPORTSTATE_CFG_TRAIN,
1560 [0x16] = IB_PHYSPORTSTATE_CFG_TRAIN,
1561 [0x17] = IB_PHYSPORTSTATE_CFG_TRAIN
1562 };
1563
1564 u32 ipath_get_cr_errpkey(struct ipath_devdata *dd)
1565 {
1566 return ipath_read_creg32(dd, dd->ipath_cregs->cr_errpkey);
1567 }
1568
1569 static int ipath_query_port(struct ib_device *ibdev,
1570 u8 port, struct ib_port_attr *props)
1571 {
1572 struct ipath_ibdev *dev = to_idev(ibdev);
1573 struct ipath_devdata *dd = dev->dd;
1574 enum ib_mtu mtu;
1575 u16 lid = dd->ipath_lid;
1576 u64 ibcstat;
1577
1578 memset(props, 0, sizeof(*props));
1579 props->lid = lid ? lid : __constant_be16_to_cpu(IB_LID_PERMISSIVE);
1580 props->lmc = dd->ipath_lmc;
1581 props->sm_lid = dev->sm_lid;
1582 props->sm_sl = dev->sm_sl;
1583 ibcstat = dd->ipath_lastibcstat;
1584 /* map LinkState to IB portinfo values. */
1585 props->state = ipath_ib_linkstate(dd, ibcstat) + 1;
1586
1587 /* See phys_state_show() */
1588 props->phys_state = /* MEA: assumes shift == 0 */
1589 ipath_cvt_physportstate[dd->ipath_lastibcstat &
1590 dd->ibcs_lts_mask];
1591 props->port_cap_flags = dev->port_cap_flags;
1592 props->gid_tbl_len = 1;
1593 props->max_msg_sz = 0x80000000;
1594 props->pkey_tbl_len = ipath_get_npkeys(dd);
1595 props->bad_pkey_cntr = ipath_get_cr_errpkey(dd) -
1596 dev->z_pkey_violations;
1597 props->qkey_viol_cntr = dev->qkey_violations;
1598 props->active_width = dd->ipath_link_width_active;
1599 /* See rate_show() */
1600 props->active_speed = dd->ipath_link_speed_active;
1601 props->max_vl_num = 1; /* VLCap = VL0 */
1602 props->init_type_reply = 0;
1603
1604 props->max_mtu = ipath_mtu4096 ? IB_MTU_4096 : IB_MTU_2048;
1605 switch (dd->ipath_ibmtu) {
1606 case 4096:
1607 mtu = IB_MTU_4096;
1608 break;
1609 case 2048:
1610 mtu = IB_MTU_2048;
1611 break;
1612 case 1024:
1613 mtu = IB_MTU_1024;
1614 break;
1615 case 512:
1616 mtu = IB_MTU_512;
1617 break;
1618 case 256:
1619 mtu = IB_MTU_256;
1620 break;
1621 default:
1622 mtu = IB_MTU_2048;
1623 }
1624 props->active_mtu = mtu;
1625 props->subnet_timeout = dev->subnet_timeout;
1626
1627 return 0;
1628 }
1629
1630 static int ipath_modify_device(struct ib_device *device,
1631 int device_modify_mask,
1632 struct ib_device_modify *device_modify)
1633 {
1634 int ret;
1635
1636 if (device_modify_mask & ~(IB_DEVICE_MODIFY_SYS_IMAGE_GUID |
1637 IB_DEVICE_MODIFY_NODE_DESC)) {
1638 ret = -EOPNOTSUPP;
1639 goto bail;
1640 }
1641
1642 if (device_modify_mask & IB_DEVICE_MODIFY_NODE_DESC)
1643 memcpy(device->node_desc, device_modify->node_desc, 64);
1644
1645 if (device_modify_mask & IB_DEVICE_MODIFY_SYS_IMAGE_GUID)
1646 to_idev(device)->sys_image_guid =
1647 cpu_to_be64(device_modify->sys_image_guid);
1648
1649 ret = 0;
1650
1651 bail:
1652 return ret;
1653 }
1654
1655 static int ipath_modify_port(struct ib_device *ibdev,
1656 u8 port, int port_modify_mask,
1657 struct ib_port_modify *props)
1658 {
1659 struct ipath_ibdev *dev = to_idev(ibdev);
1660
1661 dev->port_cap_flags |= props->set_port_cap_mask;
1662 dev->port_cap_flags &= ~props->clr_port_cap_mask;
1663 if (port_modify_mask & IB_PORT_SHUTDOWN)
1664 ipath_set_linkstate(dev->dd, IPATH_IB_LINKDOWN);
1665 if (port_modify_mask & IB_PORT_RESET_QKEY_CNTR)
1666 dev->qkey_violations = 0;
1667 return 0;
1668 }
1669
1670 static int ipath_query_gid(struct ib_device *ibdev, u8 port,
1671 int index, union ib_gid *gid)
1672 {
1673 struct ipath_ibdev *dev = to_idev(ibdev);
1674 int ret;
1675
1676 if (index >= 1) {
1677 ret = -EINVAL;
1678 goto bail;
1679 }
1680 gid->global.subnet_prefix = dev->gid_prefix;
1681 gid->global.interface_id = dev->dd->ipath_guid;
1682
1683 ret = 0;
1684
1685 bail:
1686 return ret;
1687 }
1688
1689 static struct ib_pd *ipath_alloc_pd(struct ib_device *ibdev,
1690 struct ib_ucontext *context,
1691 struct ib_udata *udata)
1692 {
1693 struct ipath_ibdev *dev = to_idev(ibdev);
1694 struct ipath_pd *pd;
1695 struct ib_pd *ret;
1696
1697 /*
1698 * This is actually totally arbitrary. Some correctness tests
1699 * assume there's a maximum number of PDs that can be allocated.
1700 * We don't actually have this limit, but we fail the test if
1701 * we allow allocations of more than we report for this value.
1702 */
1703
1704 pd = kmalloc(sizeof *pd, GFP_KERNEL);
1705 if (!pd) {
1706 ret = ERR_PTR(-ENOMEM);
1707 goto bail;
1708 }
1709
1710 spin_lock(&dev->n_pds_lock);
1711 if (dev->n_pds_allocated == ib_ipath_max_pds) {
1712 spin_unlock(&dev->n_pds_lock);
1713 kfree(pd);
1714 ret = ERR_PTR(-ENOMEM);
1715 goto bail;
1716 }
1717
1718 dev->n_pds_allocated++;
1719 spin_unlock(&dev->n_pds_lock);
1720
1721 /* ib_alloc_pd() will initialize pd->ibpd. */
1722 pd->user = udata != NULL;
1723
1724 ret = &pd->ibpd;
1725
1726 bail:
1727 return ret;
1728 }
1729
1730 static int ipath_dealloc_pd(struct ib_pd *ibpd)
1731 {
1732 struct ipath_pd *pd = to_ipd(ibpd);
1733 struct ipath_ibdev *dev = to_idev(ibpd->device);
1734
1735 spin_lock(&dev->n_pds_lock);
1736 dev->n_pds_allocated--;
1737 spin_unlock(&dev->n_pds_lock);
1738
1739 kfree(pd);
1740
1741 return 0;
1742 }
1743
1744 /**
1745 * ipath_create_ah - create an address handle
1746 * @pd: the protection domain
1747 * @ah_attr: the attributes of the AH
1748 *
1749 * This may be called from interrupt context.
1750 */
1751 static struct ib_ah *ipath_create_ah(struct ib_pd *pd,
1752 struct ib_ah_attr *ah_attr)
1753 {
1754 struct ipath_ah *ah;
1755 struct ib_ah *ret;
1756 struct ipath_ibdev *dev = to_idev(pd->device);
1757 unsigned long flags;
1758
1759 /* A multicast address requires a GRH (see ch. 8.4.1). */
1760 if (ah_attr->dlid >= IPATH_MULTICAST_LID_BASE &&
1761 ah_attr->dlid != IPATH_PERMISSIVE_LID &&
1762 !(ah_attr->ah_flags & IB_AH_GRH)) {
1763 ret = ERR_PTR(-EINVAL);
1764 goto bail;
1765 }
1766
1767 if (ah_attr->dlid == 0) {
1768 ret = ERR_PTR(-EINVAL);
1769 goto bail;
1770 }
1771
1772 if (ah_attr->port_num < 1 ||
1773 ah_attr->port_num > pd->device->phys_port_cnt) {
1774 ret = ERR_PTR(-EINVAL);
1775 goto bail;
1776 }
1777
1778 ah = kmalloc(sizeof *ah, GFP_ATOMIC);
1779 if (!ah) {
1780 ret = ERR_PTR(-ENOMEM);
1781 goto bail;
1782 }
1783
1784 spin_lock_irqsave(&dev->n_ahs_lock, flags);
1785 if (dev->n_ahs_allocated == ib_ipath_max_ahs) {
1786 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
1787 kfree(ah);
1788 ret = ERR_PTR(-ENOMEM);
1789 goto bail;
1790 }
1791
1792 dev->n_ahs_allocated++;
1793 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
1794
1795 /* ib_create_ah() will initialize ah->ibah. */
1796 ah->attr = *ah_attr;
1797 ah->attr.static_rate = ipath_ib_rate_to_mult(ah_attr->static_rate);
1798
1799 ret = &ah->ibah;
1800
1801 bail:
1802 return ret;
1803 }
1804
1805 /**
1806 * ipath_destroy_ah - destroy an address handle
1807 * @ibah: the AH to destroy
1808 *
1809 * This may be called from interrupt context.
1810 */
1811 static int ipath_destroy_ah(struct ib_ah *ibah)
1812 {
1813 struct ipath_ibdev *dev = to_idev(ibah->device);
1814 struct ipath_ah *ah = to_iah(ibah);
1815 unsigned long flags;
1816
1817 spin_lock_irqsave(&dev->n_ahs_lock, flags);
1818 dev->n_ahs_allocated--;
1819 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
1820
1821 kfree(ah);
1822
1823 return 0;
1824 }
1825
1826 static int ipath_query_ah(struct ib_ah *ibah, struct ib_ah_attr *ah_attr)
1827 {
1828 struct ipath_ah *ah = to_iah(ibah);
1829
1830 *ah_attr = ah->attr;
1831 ah_attr->static_rate = ipath_mult_to_ib_rate(ah->attr.static_rate);
1832
1833 return 0;
1834 }
1835
1836 /**
1837 * ipath_get_npkeys - return the size of the PKEY table for port 0
1838 * @dd: the infinipath device
1839 */
1840 unsigned ipath_get_npkeys(struct ipath_devdata *dd)
1841 {
1842 return ARRAY_SIZE(dd->ipath_pd[0]->port_pkeys);
1843 }
1844
1845 /**
1846 * ipath_get_pkey - return the indexed PKEY from the port 0 PKEY table
1847 * @dd: the infinipath device
1848 * @index: the PKEY index
1849 */
1850 unsigned ipath_get_pkey(struct ipath_devdata *dd, unsigned index)
1851 {
1852 unsigned ret;
1853
1854 if (index >= ARRAY_SIZE(dd->ipath_pd[0]->port_pkeys))
1855 ret = 0;
1856 else
1857 ret = dd->ipath_pd[0]->port_pkeys[index];
1858
1859 return ret;
1860 }
1861
1862 static int ipath_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
1863 u16 *pkey)
1864 {
1865 struct ipath_ibdev *dev = to_idev(ibdev);
1866 int ret;
1867
1868 if (index >= ipath_get_npkeys(dev->dd)) {
1869 ret = -EINVAL;
1870 goto bail;
1871 }
1872
1873 *pkey = ipath_get_pkey(dev->dd, index);
1874 ret = 0;
1875
1876 bail:
1877 return ret;
1878 }
1879
1880 /**
1881 * ipath_alloc_ucontext - allocate a ucontest
1882 * @ibdev: the infiniband device
1883 * @udata: not used by the InfiniPath driver
1884 */
1885
1886 static struct ib_ucontext *ipath_alloc_ucontext(struct ib_device *ibdev,
1887 struct ib_udata *udata)
1888 {
1889 struct ipath_ucontext *context;
1890 struct ib_ucontext *ret;
1891
1892 context = kmalloc(sizeof *context, GFP_KERNEL);
1893 if (!context) {
1894 ret = ERR_PTR(-ENOMEM);
1895 goto bail;
1896 }
1897
1898 ret = &context->ibucontext;
1899
1900 bail:
1901 return ret;
1902 }
1903
1904 static int ipath_dealloc_ucontext(struct ib_ucontext *context)
1905 {
1906 kfree(to_iucontext(context));
1907 return 0;
1908 }
1909
1910 static int ipath_verbs_register_sysfs(struct ib_device *dev);
1911
1912 static void __verbs_timer(unsigned long arg)
1913 {
1914 struct ipath_devdata *dd = (struct ipath_devdata *) arg;
1915
1916 /* Handle verbs layer timeouts. */
1917 ipath_ib_timer(dd->verbs_dev);
1918
1919 mod_timer(&dd->verbs_timer, jiffies + 1);
1920 }
1921
1922 static int enable_timer(struct ipath_devdata *dd)
1923 {
1924 /*
1925 * Early chips had a design flaw where the chip and kernel idea
1926 * of the tail register don't always agree, and therefore we won't
1927 * get an interrupt on the next packet received.
1928 * If the board supports per packet receive interrupts, use it.
1929 * Otherwise, the timer function periodically checks for packets
1930 * to cover this case.
1931 * Either way, the timer is needed for verbs layer related
1932 * processing.
1933 */
1934 if (dd->ipath_flags & IPATH_GPIO_INTR) {
1935 ipath_write_kreg(dd, dd->ipath_kregs->kr_debugportselect,
1936 0x2074076542310ULL);
1937 /* Enable GPIO bit 2 interrupt */
1938 dd->ipath_gpio_mask |= (u64) (1 << IPATH_GPIO_PORT0_BIT);
1939 ipath_write_kreg(dd, dd->ipath_kregs->kr_gpio_mask,
1940 dd->ipath_gpio_mask);
1941 }
1942
1943 init_timer(&dd->verbs_timer);
1944 dd->verbs_timer.function = __verbs_timer;
1945 dd->verbs_timer.data = (unsigned long)dd;
1946 dd->verbs_timer.expires = jiffies + 1;
1947 add_timer(&dd->verbs_timer);
1948
1949 return 0;
1950 }
1951
1952 static int disable_timer(struct ipath_devdata *dd)
1953 {
1954 /* Disable GPIO bit 2 interrupt */
1955 if (dd->ipath_flags & IPATH_GPIO_INTR) {
1956 /* Disable GPIO bit 2 interrupt */
1957 dd->ipath_gpio_mask &= ~((u64) (1 << IPATH_GPIO_PORT0_BIT));
1958 ipath_write_kreg(dd, dd->ipath_kregs->kr_gpio_mask,
1959 dd->ipath_gpio_mask);
1960 /*
1961 * We might want to undo changes to debugportselect,
1962 * but how?
1963 */
1964 }
1965
1966 del_timer_sync(&dd->verbs_timer);
1967
1968 return 0;
1969 }
1970
1971 /**
1972 * ipath_register_ib_device - register our device with the infiniband core
1973 * @dd: the device data structure
1974 * Return the allocated ipath_ibdev pointer or NULL on error.
1975 */
1976 int ipath_register_ib_device(struct ipath_devdata *dd)
1977 {
1978 struct ipath_verbs_counters cntrs;
1979 struct ipath_ibdev *idev;
1980 struct ib_device *dev;
1981 struct ipath_verbs_txreq *tx;
1982 unsigned i;
1983 int ret;
1984
1985 idev = (struct ipath_ibdev *)ib_alloc_device(sizeof *idev);
1986 if (idev == NULL) {
1987 ret = -ENOMEM;
1988 goto bail;
1989 }
1990
1991 dev = &idev->ibdev;
1992
1993 if (dd->ipath_sdma_descq_cnt) {
1994 tx = kmalloc(dd->ipath_sdma_descq_cnt * sizeof *tx,
1995 GFP_KERNEL);
1996 if (tx == NULL) {
1997 ret = -ENOMEM;
1998 goto err_tx;
1999 }
2000 } else
2001 tx = NULL;
2002 idev->txreq_bufs = tx;
2003
2004 /* Only need to initialize non-zero fields. */
2005 spin_lock_init(&idev->n_pds_lock);
2006 spin_lock_init(&idev->n_ahs_lock);
2007 spin_lock_init(&idev->n_cqs_lock);
2008 spin_lock_init(&idev->n_qps_lock);
2009 spin_lock_init(&idev->n_srqs_lock);
2010 spin_lock_init(&idev->n_mcast_grps_lock);
2011
2012 spin_lock_init(&idev->qp_table.lock);
2013 spin_lock_init(&idev->lk_table.lock);
2014 idev->sm_lid = __constant_be16_to_cpu(IB_LID_PERMISSIVE);
2015 /* Set the prefix to the default value (see ch. 4.1.1) */
2016 idev->gid_prefix = __constant_cpu_to_be64(0xfe80000000000000ULL);
2017
2018 ret = ipath_init_qp_table(idev, ib_ipath_qp_table_size);
2019 if (ret)
2020 goto err_qp;
2021
2022 /*
2023 * The top ib_ipath_lkey_table_size bits are used to index the
2024 * table. The lower 8 bits can be owned by the user (copied from
2025 * the LKEY). The remaining bits act as a generation number or tag.
2026 */
2027 idev->lk_table.max = 1 << ib_ipath_lkey_table_size;
2028 idev->lk_table.table = kzalloc(idev->lk_table.max *
2029 sizeof(*idev->lk_table.table),
2030 GFP_KERNEL);
2031 if (idev->lk_table.table == NULL) {
2032 ret = -ENOMEM;
2033 goto err_lk;
2034 }
2035 INIT_LIST_HEAD(&idev->pending_mmaps);
2036 spin_lock_init(&idev->pending_lock);
2037 idev->mmap_offset = PAGE_SIZE;
2038 spin_lock_init(&idev->mmap_offset_lock);
2039 INIT_LIST_HEAD(&idev->pending[0]);
2040 INIT_LIST_HEAD(&idev->pending[1]);
2041 INIT_LIST_HEAD(&idev->pending[2]);
2042 INIT_LIST_HEAD(&idev->piowait);
2043 INIT_LIST_HEAD(&idev->rnrwait);
2044 INIT_LIST_HEAD(&idev->txreq_free);
2045 idev->pending_index = 0;
2046 idev->port_cap_flags =
2047 IB_PORT_SYS_IMAGE_GUID_SUP | IB_PORT_CLIENT_REG_SUP;
2048 if (dd->ipath_flags & IPATH_HAS_LINK_LATENCY)
2049 idev->port_cap_flags |= IB_PORT_LINK_LATENCY_SUP;
2050 idev->pma_counter_select[0] = IB_PMA_PORT_XMIT_DATA;
2051 idev->pma_counter_select[1] = IB_PMA_PORT_RCV_DATA;
2052 idev->pma_counter_select[2] = IB_PMA_PORT_XMIT_PKTS;
2053 idev->pma_counter_select[3] = IB_PMA_PORT_RCV_PKTS;
2054 idev->pma_counter_select[4] = IB_PMA_PORT_XMIT_WAIT;
2055
2056 /* Snapshot current HW counters to "clear" them. */
2057 ipath_get_counters(dd, &cntrs);
2058 idev->z_symbol_error_counter = cntrs.symbol_error_counter;
2059 idev->z_link_error_recovery_counter =
2060 cntrs.link_error_recovery_counter;
2061 idev->z_link_downed_counter = cntrs.link_downed_counter;
2062 idev->z_port_rcv_errors = cntrs.port_rcv_errors;
2063 idev->z_port_rcv_remphys_errors =
2064 cntrs.port_rcv_remphys_errors;
2065 idev->z_port_xmit_discards = cntrs.port_xmit_discards;
2066 idev->z_port_xmit_data = cntrs.port_xmit_data;
2067 idev->z_port_rcv_data = cntrs.port_rcv_data;
2068 idev->z_port_xmit_packets = cntrs.port_xmit_packets;
2069 idev->z_port_rcv_packets = cntrs.port_rcv_packets;
2070 idev->z_local_link_integrity_errors =
2071 cntrs.local_link_integrity_errors;
2072 idev->z_excessive_buffer_overrun_errors =
2073 cntrs.excessive_buffer_overrun_errors;
2074 idev->z_vl15_dropped = cntrs.vl15_dropped;
2075
2076 for (i = 0; i < dd->ipath_sdma_descq_cnt; i++, tx++)
2077 list_add(&tx->txreq.list, &idev->txreq_free);
2078
2079 /*
2080 * The system image GUID is supposed to be the same for all
2081 * IB HCAs in a single system but since there can be other
2082 * device types in the system, we can't be sure this is unique.
2083 */
2084 if (!sys_image_guid)
2085 sys_image_guid = dd->ipath_guid;
2086 idev->sys_image_guid = sys_image_guid;
2087 idev->ib_unit = dd->ipath_unit;
2088 idev->dd = dd;
2089
2090 strlcpy(dev->name, "ipath%d", IB_DEVICE_NAME_MAX);
2091 dev->owner = THIS_MODULE;
2092 dev->node_guid = dd->ipath_guid;
2093 dev->uverbs_abi_ver = IPATH_UVERBS_ABI_VERSION;
2094 dev->uverbs_cmd_mask =
2095 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
2096 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
2097 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
2098 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
2099 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
2100 (1ull << IB_USER_VERBS_CMD_CREATE_AH) |
2101 (1ull << IB_USER_VERBS_CMD_DESTROY_AH) |
2102 (1ull << IB_USER_VERBS_CMD_QUERY_AH) |
2103 (1ull << IB_USER_VERBS_CMD_REG_MR) |
2104 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
2105 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
2106 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
2107 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
2108 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
2109 (1ull << IB_USER_VERBS_CMD_POLL_CQ) |
2110 (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) |
2111 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
2112 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
2113 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
2114 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
2115 (1ull << IB_USER_VERBS_CMD_POST_SEND) |
2116 (1ull << IB_USER_VERBS_CMD_POST_RECV) |
2117 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) |
2118 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST) |
2119 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
2120 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
2121 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
2122 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ) |
2123 (1ull << IB_USER_VERBS_CMD_POST_SRQ_RECV);
2124 dev->node_type = RDMA_NODE_IB_CA;
2125 dev->phys_port_cnt = 1;
2126 dev->num_comp_vectors = 1;
2127 dev->dma_device = &dd->pcidev->dev;
2128 dev->query_device = ipath_query_device;
2129 dev->modify_device = ipath_modify_device;
2130 dev->query_port = ipath_query_port;
2131 dev->modify_port = ipath_modify_port;
2132 dev->query_pkey = ipath_query_pkey;
2133 dev->query_gid = ipath_query_gid;
2134 dev->alloc_ucontext = ipath_alloc_ucontext;
2135 dev->dealloc_ucontext = ipath_dealloc_ucontext;
2136 dev->alloc_pd = ipath_alloc_pd;
2137 dev->dealloc_pd = ipath_dealloc_pd;
2138 dev->create_ah = ipath_create_ah;
2139 dev->destroy_ah = ipath_destroy_ah;
2140 dev->query_ah = ipath_query_ah;
2141 dev->create_srq = ipath_create_srq;
2142 dev->modify_srq = ipath_modify_srq;
2143 dev->query_srq = ipath_query_srq;
2144 dev->destroy_srq = ipath_destroy_srq;
2145 dev->create_qp = ipath_create_qp;
2146 dev->modify_qp = ipath_modify_qp;
2147 dev->query_qp = ipath_query_qp;
2148 dev->destroy_qp = ipath_destroy_qp;
2149 dev->post_send = ipath_post_send;
2150 dev->post_recv = ipath_post_receive;
2151 dev->post_srq_recv = ipath_post_srq_receive;
2152 dev->create_cq = ipath_create_cq;
2153 dev->destroy_cq = ipath_destroy_cq;
2154 dev->resize_cq = ipath_resize_cq;
2155 dev->poll_cq = ipath_poll_cq;
2156 dev->req_notify_cq = ipath_req_notify_cq;
2157 dev->get_dma_mr = ipath_get_dma_mr;
2158 dev->reg_phys_mr = ipath_reg_phys_mr;
2159 dev->reg_user_mr = ipath_reg_user_mr;
2160 dev->dereg_mr = ipath_dereg_mr;
2161 dev->alloc_fmr = ipath_alloc_fmr;
2162 dev->map_phys_fmr = ipath_map_phys_fmr;
2163 dev->unmap_fmr = ipath_unmap_fmr;
2164 dev->dealloc_fmr = ipath_dealloc_fmr;
2165 dev->attach_mcast = ipath_multicast_attach;
2166 dev->detach_mcast = ipath_multicast_detach;
2167 dev->process_mad = ipath_process_mad;
2168 dev->mmap = ipath_mmap;
2169 dev->dma_ops = &ipath_dma_mapping_ops;
2170
2171 snprintf(dev->node_desc, sizeof(dev->node_desc),
2172 IPATH_IDSTR " %s", init_utsname()->nodename);
2173
2174 ret = ib_register_device(dev);
2175 if (ret)
2176 goto err_reg;
2177
2178 if (ipath_verbs_register_sysfs(dev))
2179 goto err_class;
2180
2181 enable_timer(dd);
2182
2183 goto bail;
2184
2185 err_class:
2186 ib_unregister_device(dev);
2187 err_reg:
2188 kfree(idev->lk_table.table);
2189 err_lk:
2190 kfree(idev->qp_table.table);
2191 err_qp:
2192 kfree(idev->txreq_bufs);
2193 err_tx:
2194 ib_dealloc_device(dev);
2195 ipath_dev_err(dd, "cannot register verbs: %d!\n", -ret);
2196 idev = NULL;
2197
2198 bail:
2199 dd->verbs_dev = idev;
2200 return ret;
2201 }
2202
2203 void ipath_unregister_ib_device(struct ipath_ibdev *dev)
2204 {
2205 struct ib_device *ibdev = &dev->ibdev;
2206 u32 qps_inuse;
2207
2208 ib_unregister_device(ibdev);
2209
2210 disable_timer(dev->dd);
2211
2212 if (!list_empty(&dev->pending[0]) ||
2213 !list_empty(&dev->pending[1]) ||
2214 !list_empty(&dev->pending[2]))
2215 ipath_dev_err(dev->dd, "pending list not empty!\n");
2216 if (!list_empty(&dev->piowait))
2217 ipath_dev_err(dev->dd, "piowait list not empty!\n");
2218 if (!list_empty(&dev->rnrwait))
2219 ipath_dev_err(dev->dd, "rnrwait list not empty!\n");
2220 if (!ipath_mcast_tree_empty())
2221 ipath_dev_err(dev->dd, "multicast table memory leak!\n");
2222 /*
2223 * Note that ipath_unregister_ib_device() can be called before all
2224 * the QPs are destroyed!
2225 */
2226 qps_inuse = ipath_free_all_qps(&dev->qp_table);
2227 if (qps_inuse)
2228 ipath_dev_err(dev->dd, "QP memory leak! %u still in use\n",
2229 qps_inuse);
2230 kfree(dev->qp_table.table);
2231 kfree(dev->lk_table.table);
2232 kfree(dev->txreq_bufs);
2233 ib_dealloc_device(ibdev);
2234 }
2235
2236 static ssize_t show_rev(struct device *device, struct device_attribute *attr,
2237 char *buf)
2238 {
2239 struct ipath_ibdev *dev =
2240 container_of(device, struct ipath_ibdev, ibdev.dev);
2241
2242 return sprintf(buf, "%x\n", dev->dd->ipath_pcirev);
2243 }
2244
2245 static ssize_t show_hca(struct device *device, struct device_attribute *attr,
2246 char *buf)
2247 {
2248 struct ipath_ibdev *dev =
2249 container_of(device, struct ipath_ibdev, ibdev.dev);
2250 int ret;
2251
2252 ret = dev->dd->ipath_f_get_boardname(dev->dd, buf, 128);
2253 if (ret < 0)
2254 goto bail;
2255 strcat(buf, "\n");
2256 ret = strlen(buf);
2257
2258 bail:
2259 return ret;
2260 }
2261
2262 static ssize_t show_stats(struct device *device, struct device_attribute *attr,
2263 char *buf)
2264 {
2265 struct ipath_ibdev *dev =
2266 container_of(device, struct ipath_ibdev, ibdev.dev);
2267 int i;
2268 int len;
2269
2270 len = sprintf(buf,
2271 "RC resends %d\n"
2272 "RC no QACK %d\n"
2273 "RC ACKs %d\n"
2274 "RC SEQ NAKs %d\n"
2275 "RC RDMA seq %d\n"
2276 "RC RNR NAKs %d\n"
2277 "RC OTH NAKs %d\n"
2278 "RC timeouts %d\n"
2279 "RC RDMA dup %d\n"
2280 "piobuf wait %d\n"
2281 "unaligned %d\n"
2282 "PKT drops %d\n"
2283 "WQE errs %d\n",
2284 dev->n_rc_resends, dev->n_rc_qacks, dev->n_rc_acks,
2285 dev->n_seq_naks, dev->n_rdma_seq, dev->n_rnr_naks,
2286 dev->n_other_naks, dev->n_timeouts,
2287 dev->n_rdma_dup_busy, dev->n_piowait, dev->n_unaligned,
2288 dev->n_pkt_drops, dev->n_wqe_errs);
2289 for (i = 0; i < ARRAY_SIZE(dev->opstats); i++) {
2290 const struct ipath_opcode_stats *si = &dev->opstats[i];
2291
2292 if (!si->n_packets && !si->n_bytes)
2293 continue;
2294 len += sprintf(buf + len, "%02x %llu/%llu\n", i,
2295 (unsigned long long) si->n_packets,
2296 (unsigned long long) si->n_bytes);
2297 }
2298 return len;
2299 }
2300
2301 static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
2302 static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
2303 static DEVICE_ATTR(board_id, S_IRUGO, show_hca, NULL);
2304 static DEVICE_ATTR(stats, S_IRUGO, show_stats, NULL);
2305
2306 static struct device_attribute *ipath_class_attributes[] = {
2307 &dev_attr_hw_rev,
2308 &dev_attr_hca_type,
2309 &dev_attr_board_id,
2310 &dev_attr_stats
2311 };
2312
2313 static int ipath_verbs_register_sysfs(struct ib_device *dev)
2314 {
2315 int i;
2316 int ret;
2317
2318 for (i = 0; i < ARRAY_SIZE(ipath_class_attributes); ++i)
2319 if (device_create_file(&dev->dev,
2320 ipath_class_attributes[i])) {
2321 ret = 1;
2322 goto bail;
2323 }
2324
2325 ret = 0;
2326
2327 bail:
2328 return ret;
2329 }