blob: c76ea0e0b02418a71193a87bf41857010977a58a [file] [log] [blame]
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001/*
John Gregor87427da2007-06-11 10:21:14 -07002 * Copyright (c) 2006, 2007 QLogic Corporation. All rights reserved.
Bryan O'Sullivan65221082006-03-29 15:23:38 -08003 * 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>
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -070036#include <linux/io.h>
Bryan O'Sullivan65221082006-03-29 15:23:38 -080037#include <linux/utsname.h>
38
39#include "ipath_kernel.h"
40#include "ipath_verbs.h"
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -070041#include "ipath_common.h"
Bryan O'Sullivan65221082006-03-29 15:23:38 -080042
Roland Dreierac2ae4c2006-04-19 11:40:12 -070043static unsigned int ib_ipath_qp_table_size = 251;
Bryan O'Sullivan65221082006-03-29 15:23:38 -080044module_param_named(qp_table_size, ib_ipath_qp_table_size, uint, S_IRUGO);
45MODULE_PARM_DESC(qp_table_size, "QP table size");
46
47unsigned int ib_ipath_lkey_table_size = 12;
48module_param_named(lkey_table_size, ib_ipath_lkey_table_size, uint,
49 S_IRUGO);
50MODULE_PARM_DESC(lkey_table_size,
51 "LKEY table size in bits (2^n, 1 <= n <= 23)");
52
Bryan O'Sullivanfe625462006-07-01 04:35:58 -070053static unsigned int ib_ipath_max_pds = 0xFFFF;
54module_param_named(max_pds, ib_ipath_max_pds, uint, S_IWUSR | S_IRUGO);
55MODULE_PARM_DESC(max_pds,
56 "Maximum number of protection domains to support");
57
58static unsigned int ib_ipath_max_ahs = 0xFFFF;
59module_param_named(max_ahs, ib_ipath_max_ahs, uint, S_IWUSR | S_IRUGO);
60MODULE_PARM_DESC(max_ahs, "Maximum number of address handles to support");
61
62unsigned int ib_ipath_max_cqes = 0x2FFFF;
63module_param_named(max_cqes, ib_ipath_max_cqes, uint, S_IWUSR | S_IRUGO);
64MODULE_PARM_DESC(max_cqes,
65 "Maximum number of completion queue entries to support");
66
67unsigned int ib_ipath_max_cqs = 0x1FFFF;
68module_param_named(max_cqs, ib_ipath_max_cqs, uint, S_IWUSR | S_IRUGO);
69MODULE_PARM_DESC(max_cqs, "Maximum number of completion queues to support");
70
71unsigned int ib_ipath_max_qp_wrs = 0x3FFF;
72module_param_named(max_qp_wrs, ib_ipath_max_qp_wrs, uint,
73 S_IWUSR | S_IRUGO);
74MODULE_PARM_DESC(max_qp_wrs, "Maximum number of QP WRs to support");
75
Bryan O'Sullivan0b81e4f2006-08-25 11:24:43 -070076unsigned int ib_ipath_max_qps = 16384;
77module_param_named(max_qps, ib_ipath_max_qps, uint, S_IWUSR | S_IRUGO);
78MODULE_PARM_DESC(max_qps, "Maximum number of QPs to support");
79
Bryan O'Sullivanfe625462006-07-01 04:35:58 -070080unsigned int ib_ipath_max_sges = 0x60;
81module_param_named(max_sges, ib_ipath_max_sges, uint, S_IWUSR | S_IRUGO);
82MODULE_PARM_DESC(max_sges, "Maximum number of SGEs to support");
83
84unsigned int ib_ipath_max_mcast_grps = 16384;
85module_param_named(max_mcast_grps, ib_ipath_max_mcast_grps, uint,
86 S_IWUSR | S_IRUGO);
87MODULE_PARM_DESC(max_mcast_grps,
88 "Maximum number of multicast groups to support");
89
90unsigned int ib_ipath_max_mcast_qp_attached = 16;
91module_param_named(max_mcast_qp_attached, ib_ipath_max_mcast_qp_attached,
92 uint, S_IWUSR | S_IRUGO);
93MODULE_PARM_DESC(max_mcast_qp_attached,
94 "Maximum number of attached QPs to support");
95
96unsigned int ib_ipath_max_srqs = 1024;
97module_param_named(max_srqs, ib_ipath_max_srqs, uint, S_IWUSR | S_IRUGO);
98MODULE_PARM_DESC(max_srqs, "Maximum number of SRQs to support");
99
100unsigned int ib_ipath_max_srq_sges = 128;
101module_param_named(max_srq_sges, ib_ipath_max_srq_sges,
102 uint, S_IWUSR | S_IRUGO);
103MODULE_PARM_DESC(max_srq_sges, "Maximum number of SRQ SGEs to support");
104
105unsigned int ib_ipath_max_srq_wrs = 0x1FFFF;
106module_param_named(max_srq_wrs, ib_ipath_max_srq_wrs,
107 uint, S_IWUSR | S_IRUGO);
108MODULE_PARM_DESC(max_srq_wrs, "Maximum number of SRQ WRs support");
109
Bryan O'Sullivand821f022006-08-25 11:24:45 -0700110static unsigned int ib_ipath_disable_sma;
111module_param_named(disable_sma, ib_ipath_disable_sma, uint, S_IWUSR | S_IRUGO);
112MODULE_PARM_DESC(ib_ipath_disable_sma, "Disable the SMA");
113
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800114const int ib_ipath_state_ops[IB_QPS_ERR + 1] = {
115 [IB_QPS_RESET] = 0,
116 [IB_QPS_INIT] = IPATH_POST_RECV_OK,
117 [IB_QPS_RTR] = IPATH_POST_RECV_OK | IPATH_PROCESS_RECV_OK,
118 [IB_QPS_RTS] = IPATH_POST_RECV_OK | IPATH_PROCESS_RECV_OK |
119 IPATH_POST_SEND_OK | IPATH_PROCESS_SEND_OK,
120 [IB_QPS_SQD] = IPATH_POST_RECV_OK | IPATH_PROCESS_RECV_OK |
121 IPATH_POST_SEND_OK,
122 [IB_QPS_SQE] = IPATH_POST_RECV_OK | IPATH_PROCESS_RECV_OK,
123 [IB_QPS_ERR] = 0,
124};
125
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700126struct ipath_ucontext {
127 struct ib_ucontext ibucontext;
128};
129
130static inline struct ipath_ucontext *to_iucontext(struct ib_ucontext
131 *ibucontext)
132{
133 return container_of(ibucontext, struct ipath_ucontext, ibucontext);
134}
135
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800136/*
137 * Translate ib_wr_opcode into ib_wc_opcode.
138 */
139const enum ib_wc_opcode ib_ipath_wc_opcode[] = {
140 [IB_WR_RDMA_WRITE] = IB_WC_RDMA_WRITE,
141 [IB_WR_RDMA_WRITE_WITH_IMM] = IB_WC_RDMA_WRITE,
142 [IB_WR_SEND] = IB_WC_SEND,
143 [IB_WR_SEND_WITH_IMM] = IB_WC_SEND,
144 [IB_WR_RDMA_READ] = IB_WC_RDMA_READ,
145 [IB_WR_ATOMIC_CMP_AND_SWP] = IB_WC_COMP_SWAP,
146 [IB_WR_ATOMIC_FETCH_AND_ADD] = IB_WC_FETCH_ADD
147};
148
149/*
150 * System image GUID.
151 */
Roland Dreierac2ae4c2006-04-19 11:40:12 -0700152static __be64 sys_image_guid;
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800153
154/**
155 * ipath_copy_sge - copy data to SGE memory
156 * @ss: the SGE state
157 * @data: the data to copy
158 * @length: the length of the data
159 */
160void ipath_copy_sge(struct ipath_sge_state *ss, void *data, u32 length)
161{
162 struct ipath_sge *sge = &ss->sge;
163
164 while (length) {
165 u32 len = sge->length;
166
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800167 if (len > length)
168 len = length;
Ralph Campbell30d149a2007-06-18 14:24:44 -0700169 if (len > sge->sge_length)
170 len = sge->sge_length;
171 BUG_ON(len == 0);
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800172 memcpy(sge->vaddr, data, len);
173 sge->vaddr += len;
174 sge->length -= len;
175 sge->sge_length -= len;
176 if (sge->sge_length == 0) {
177 if (--ss->num_sge)
178 *sge = *ss->sg_list++;
179 } else if (sge->length == 0 && sge->mr != NULL) {
180 if (++sge->n >= IPATH_SEGSZ) {
181 if (++sge->m >= sge->mr->mapsz)
182 break;
183 sge->n = 0;
184 }
185 sge->vaddr =
186 sge->mr->map[sge->m]->segs[sge->n].vaddr;
187 sge->length =
188 sge->mr->map[sge->m]->segs[sge->n].length;
189 }
190 data += len;
191 length -= len;
192 }
193}
194
195/**
196 * ipath_skip_sge - skip over SGE memory - XXX almost dup of prev func
197 * @ss: the SGE state
198 * @length: the number of bytes to skip
199 */
200void ipath_skip_sge(struct ipath_sge_state *ss, u32 length)
201{
202 struct ipath_sge *sge = &ss->sge;
203
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800204 while (length) {
205 u32 len = sge->length;
206
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800207 if (len > length)
208 len = length;
Ralph Campbell30d149a2007-06-18 14:24:44 -0700209 if (len > sge->sge_length)
210 len = sge->sge_length;
211 BUG_ON(len == 0);
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800212 sge->vaddr += len;
213 sge->length -= len;
214 sge->sge_length -= len;
215 if (sge->sge_length == 0) {
216 if (--ss->num_sge)
217 *sge = *ss->sg_list++;
218 } else if (sge->length == 0 && sge->mr != NULL) {
219 if (++sge->n >= IPATH_SEGSZ) {
220 if (++sge->m >= sge->mr->mapsz)
221 break;
222 sge->n = 0;
223 }
224 sge->vaddr =
225 sge->mr->map[sge->m]->segs[sge->n].vaddr;
226 sge->length =
227 sge->mr->map[sge->m]->segs[sge->n].length;
228 }
229 length -= len;
230 }
231}
232
233/**
234 * ipath_post_send - post a send on a QP
235 * @ibqp: the QP to post the send on
236 * @wr: the list of work requests to post
237 * @bad_wr: the first bad WR is put here
238 *
239 * This may be called from interrupt context.
240 */
241static int ipath_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
242 struct ib_send_wr **bad_wr)
243{
244 struct ipath_qp *qp = to_iqp(ibqp);
245 int err = 0;
246
247 /* Check that state is OK to post send. */
248 if (!(ib_ipath_state_ops[qp->state] & IPATH_POST_SEND_OK)) {
249 *bad_wr = wr;
250 err = -EINVAL;
251 goto bail;
252 }
253
254 for (; wr; wr = wr->next) {
255 switch (qp->ibqp.qp_type) {
256 case IB_QPT_UC:
257 case IB_QPT_RC:
Bryan O'Sullivanddd4bb22006-07-01 04:35:50 -0700258 err = ipath_post_ruc_send(qp, wr);
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800259 break;
260
261 case IB_QPT_SMI:
262 case IB_QPT_GSI:
263 case IB_QPT_UD:
264 err = ipath_post_ud_send(qp, wr);
265 break;
266
267 default:
268 err = -EINVAL;
269 }
270 if (err) {
271 *bad_wr = wr;
272 break;
273 }
274 }
275
276bail:
277 return err;
278}
279
280/**
281 * ipath_post_receive - post a receive on a QP
282 * @ibqp: the QP to post the receive on
283 * @wr: the WR to post
284 * @bad_wr: the first bad WR is put here
285 *
286 * This may be called from interrupt context.
287 */
288static int ipath_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
289 struct ib_recv_wr **bad_wr)
290{
291 struct ipath_qp *qp = to_iqp(ibqp);
Ralph Campbell373d9912006-09-22 15:22:26 -0700292 struct ipath_rwq *wq = qp->r_rq.wq;
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800293 unsigned long flags;
294 int ret;
295
296 /* Check that state is OK to post receive. */
Ralph Campbell373d9912006-09-22 15:22:26 -0700297 if (!(ib_ipath_state_ops[qp->state] & IPATH_POST_RECV_OK) || !wq) {
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800298 *bad_wr = wr;
299 ret = -EINVAL;
300 goto bail;
301 }
302
303 for (; wr; wr = wr->next) {
304 struct ipath_rwqe *wqe;
305 u32 next;
Ralph Campbell373d9912006-09-22 15:22:26 -0700306 int i;
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800307
Ralph Campbell373d9912006-09-22 15:22:26 -0700308 if ((unsigned) wr->num_sge > qp->r_rq.max_sge) {
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800309 *bad_wr = wr;
310 ret = -ENOMEM;
311 goto bail;
312 }
313
314 spin_lock_irqsave(&qp->r_rq.lock, flags);
Ralph Campbell373d9912006-09-22 15:22:26 -0700315 next = wq->head + 1;
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800316 if (next >= qp->r_rq.size)
317 next = 0;
Ralph Campbell373d9912006-09-22 15:22:26 -0700318 if (next == wq->tail) {
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800319 spin_unlock_irqrestore(&qp->r_rq.lock, flags);
320 *bad_wr = wr;
321 ret = -ENOMEM;
322 goto bail;
323 }
324
Ralph Campbell373d9912006-09-22 15:22:26 -0700325 wqe = get_rwqe_ptr(&qp->r_rq, wq->head);
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800326 wqe->wr_id = wr->wr_id;
Ralph Campbell373d9912006-09-22 15:22:26 -0700327 wqe->num_sge = wr->num_sge;
328 for (i = 0; i < wr->num_sge; i++)
329 wqe->sg_list[i] = wr->sg_list[i];
Ralph Campbell4fc570b2007-07-06 12:48:23 -0700330 /* Make sure queue entry is written before the head index. */
331 smp_wmb();
Ralph Campbell373d9912006-09-22 15:22:26 -0700332 wq->head = next;
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800333 spin_unlock_irqrestore(&qp->r_rq.lock, flags);
334 }
335 ret = 0;
336
337bail:
338 return ret;
339}
340
341/**
342 * ipath_qp_rcv - processing an incoming packet on a QP
343 * @dev: the device the packet came on
344 * @hdr: the packet header
345 * @has_grh: true if the packet has a GRH
346 * @data: the packet data
347 * @tlen: the packet length
348 * @qp: the QP the packet came on
349 *
350 * This is called from ipath_ib_rcv() to process an incoming packet
351 * for the given QP.
352 * Called at interrupt level.
353 */
354static void ipath_qp_rcv(struct ipath_ibdev *dev,
355 struct ipath_ib_header *hdr, int has_grh,
356 void *data, u32 tlen, struct ipath_qp *qp)
357{
358 /* Check for valid receive state. */
359 if (!(ib_ipath_state_ops[qp->state] & IPATH_PROCESS_RECV_OK)) {
360 dev->n_pkt_drops++;
361 return;
362 }
363
364 switch (qp->ibqp.qp_type) {
365 case IB_QPT_SMI:
366 case IB_QPT_GSI:
Bryan O'Sullivand821f022006-08-25 11:24:45 -0700367 if (ib_ipath_disable_sma)
368 break;
369 /* FALLTHROUGH */
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800370 case IB_QPT_UD:
371 ipath_ud_rcv(dev, hdr, has_grh, data, tlen, qp);
372 break;
373
374 case IB_QPT_RC:
375 ipath_rc_rcv(dev, hdr, has_grh, data, tlen, qp);
376 break;
377
378 case IB_QPT_UC:
379 ipath_uc_rcv(dev, hdr, has_grh, data, tlen, qp);
380 break;
381
382 default:
383 break;
384 }
385}
386
387/**
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -0700388 * ipath_ib_rcv - process an incoming packet
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800389 * @arg: the device pointer
390 * @rhdr: the header of the packet
391 * @data: the packet data
392 * @tlen: the packet length
393 *
394 * This is called from ipath_kreceive() to process an incoming packet at
395 * interrupt level. Tlen is the length of the header + data + CRC in bytes.
396 */
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -0700397void ipath_ib_rcv(struct ipath_ibdev *dev, void *rhdr, void *data,
398 u32 tlen)
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800399{
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800400 struct ipath_ib_header *hdr = rhdr;
401 struct ipath_other_headers *ohdr;
402 struct ipath_qp *qp;
403 u32 qp_num;
404 int lnh;
405 u8 opcode;
406 u16 lid;
407
408 if (unlikely(dev == NULL))
409 goto bail;
410
411 if (unlikely(tlen < 24)) { /* LRH+BTH+CRC */
412 dev->rcv_errors++;
413 goto bail;
414 }
415
416 /* Check for a valid destination LID (see ch. 7.11.1). */
417 lid = be16_to_cpu(hdr->lrh[1]);
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700418 if (lid < IPATH_MULTICAST_LID_BASE) {
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800419 lid &= ~((1 << (dev->mkeyprot_resv_lmc & 7)) - 1);
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700420 if (unlikely(lid != dev->dd->ipath_lid)) {
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800421 dev->rcv_errors++;
422 goto bail;
423 }
424 }
425
426 /* Check for GRH */
427 lnh = be16_to_cpu(hdr->lrh[0]) & 3;
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700428 if (lnh == IPATH_LRH_BTH)
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800429 ohdr = &hdr->u.oth;
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700430 else if (lnh == IPATH_LRH_GRH)
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800431 ohdr = &hdr->u.l.oth;
432 else {
433 dev->rcv_errors++;
434 goto bail;
435 }
436
437 opcode = be32_to_cpu(ohdr->bth[0]) >> 24;
438 dev->opstats[opcode].n_bytes += tlen;
439 dev->opstats[opcode].n_packets++;
440
441 /* Get the destination QP number. */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700442 qp_num = be32_to_cpu(ohdr->bth[1]) & IPATH_QPN_MASK;
443 if (qp_num == IPATH_MULTICAST_QPN) {
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800444 struct ipath_mcast *mcast;
445 struct ipath_mcast_qp *p;
446
Bryan O'Sullivan5a7d4ee2007-03-15 14:45:03 -0700447 if (lnh != IPATH_LRH_GRH) {
448 dev->n_pkt_drops++;
449 goto bail;
450 }
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800451 mcast = ipath_mcast_find(&hdr->u.l.grh.dgid);
452 if (mcast == NULL) {
453 dev->n_pkt_drops++;
454 goto bail;
455 }
456 dev->n_multicast_rcv++;
457 list_for_each_entry_rcu(p, &mcast->qp_list, list)
Bryan O'Sullivan5a7d4ee2007-03-15 14:45:03 -0700458 ipath_qp_rcv(dev, hdr, 1, data, tlen, p->qp);
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800459 /*
460 * Notify ipath_multicast_detach() if it is waiting for us
461 * to finish.
462 */
463 if (atomic_dec_return(&mcast->refcount) <= 1)
464 wake_up(&mcast->wait);
465 } else {
466 qp = ipath_lookup_qpn(&dev->qp_table, qp_num);
467 if (qp) {
468 dev->n_unicast_rcv++;
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700469 ipath_qp_rcv(dev, hdr, lnh == IPATH_LRH_GRH, data,
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800470 tlen, qp);
471 /*
472 * Notify ipath_destroy_qp() if it is waiting
473 * for us to finish.
474 */
475 if (atomic_dec_and_test(&qp->refcount))
476 wake_up(&qp->wait);
477 } else
478 dev->n_pkt_drops++;
479 }
480
481bail:;
482}
483
484/**
485 * ipath_ib_timer - verbs timer
486 * @arg: the device pointer
487 *
488 * This is called from ipath_do_rcv_timer() at interrupt level to check for
489 * QPs which need retransmits and to collect performance numbers.
490 */
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -0700491void ipath_ib_timer(struct ipath_ibdev *dev)
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800492{
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800493 struct ipath_qp *resend = NULL;
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800494 struct list_head *last;
495 struct ipath_qp *qp;
496 unsigned long flags;
497
498 if (dev == NULL)
499 return;
500
501 spin_lock_irqsave(&dev->pending_lock, flags);
502 /* Start filling the next pending queue. */
503 if (++dev->pending_index >= ARRAY_SIZE(dev->pending))
504 dev->pending_index = 0;
505 /* Save any requests still in the new queue, they have timed out. */
506 last = &dev->pending[dev->pending_index];
507 while (!list_empty(last)) {
508 qp = list_entry(last->next, struct ipath_qp, timerwait);
Bryan O'Sullivan94b8d9f2006-05-23 11:32:32 -0700509 list_del_init(&qp->timerwait);
Bryan O'Sullivan9b2017f2006-04-24 14:23:06 -0700510 qp->timer_next = resend;
511 resend = qp;
512 atomic_inc(&qp->refcount);
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800513 }
514 last = &dev->rnrwait;
515 if (!list_empty(last)) {
516 qp = list_entry(last->next, struct ipath_qp, timerwait);
517 if (--qp->s_rnr_timeout == 0) {
518 do {
Bryan O'Sullivan94b8d9f2006-05-23 11:32:32 -0700519 list_del_init(&qp->timerwait);
Bryan O'Sullivan9b2017f2006-04-24 14:23:06 -0700520 tasklet_hi_schedule(&qp->s_task);
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800521 if (list_empty(last))
522 break;
523 qp = list_entry(last->next, struct ipath_qp,
524 timerwait);
525 } while (qp->s_rnr_timeout == 0);
526 }
527 }
528 /*
529 * We should only be in the started state if pma_sample_start != 0
530 */
531 if (dev->pma_sample_status == IB_PMA_SAMPLE_STATUS_STARTED &&
532 --dev->pma_sample_start == 0) {
533 dev->pma_sample_status = IB_PMA_SAMPLE_STATUS_RUNNING;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700534 ipath_snapshot_counters(dev->dd, &dev->ipath_sword,
535 &dev->ipath_rword,
536 &dev->ipath_spkts,
537 &dev->ipath_rpkts,
538 &dev->ipath_xmit_wait);
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800539 }
540 if (dev->pma_sample_status == IB_PMA_SAMPLE_STATUS_RUNNING) {
541 if (dev->pma_sample_interval == 0) {
542 u64 ta, tb, tc, td, te;
543
544 dev->pma_sample_status = IB_PMA_SAMPLE_STATUS_DONE;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700545 ipath_snapshot_counters(dev->dd, &ta, &tb,
546 &tc, &td, &te);
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800547
548 dev->ipath_sword = ta - dev->ipath_sword;
549 dev->ipath_rword = tb - dev->ipath_rword;
550 dev->ipath_spkts = tc - dev->ipath_spkts;
551 dev->ipath_rpkts = td - dev->ipath_rpkts;
552 dev->ipath_xmit_wait = te - dev->ipath_xmit_wait;
553 }
554 else
555 dev->pma_sample_interval--;
556 }
557 spin_unlock_irqrestore(&dev->pending_lock, flags);
558
559 /* XXX What if timer fires again while this is running? */
Bryan O'Sullivan9b2017f2006-04-24 14:23:06 -0700560 for (qp = resend; qp != NULL; qp = qp->timer_next) {
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800561 struct ib_wc wc;
562
563 spin_lock_irqsave(&qp->s_lock, flags);
564 if (qp->s_last != qp->s_tail && qp->state == IB_QPS_RTS) {
565 dev->n_timeouts++;
566 ipath_restart_rc(qp, qp->s_last_psn + 1, &wc);
567 }
568 spin_unlock_irqrestore(&qp->s_lock, flags);
569
570 /* Notify ipath_destroy_qp() if it is waiting. */
571 if (atomic_dec_and_test(&qp->refcount))
572 wake_up(&qp->wait);
573 }
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800574}
575
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700576static void update_sge(struct ipath_sge_state *ss, u32 length)
577{
578 struct ipath_sge *sge = &ss->sge;
579
580 sge->vaddr += length;
581 sge->length -= length;
582 sge->sge_length -= length;
583 if (sge->sge_length == 0) {
584 if (--ss->num_sge)
585 *sge = *ss->sg_list++;
586 } else if (sge->length == 0 && sge->mr != NULL) {
587 if (++sge->n >= IPATH_SEGSZ) {
588 if (++sge->m >= sge->mr->mapsz)
589 return;
590 sge->n = 0;
591 }
592 sge->vaddr = sge->mr->map[sge->m]->segs[sge->n].vaddr;
593 sge->length = sge->mr->map[sge->m]->segs[sge->n].length;
594 }
595}
596
597#ifdef __LITTLE_ENDIAN
598static inline u32 get_upper_bits(u32 data, u32 shift)
599{
600 return data >> shift;
601}
602
603static inline u32 set_upper_bits(u32 data, u32 shift)
604{
605 return data << shift;
606}
607
608static inline u32 clear_upper_bytes(u32 data, u32 n, u32 off)
609{
610 data <<= ((sizeof(u32) - n) * BITS_PER_BYTE);
611 data >>= ((sizeof(u32) - n - off) * BITS_PER_BYTE);
612 return data;
613}
614#else
615static inline u32 get_upper_bits(u32 data, u32 shift)
616{
617 return data << shift;
618}
619
620static inline u32 set_upper_bits(u32 data, u32 shift)
621{
622 return data >> shift;
623}
624
625static inline u32 clear_upper_bytes(u32 data, u32 n, u32 off)
626{
627 data >>= ((sizeof(u32) - n) * BITS_PER_BYTE);
628 data <<= ((sizeof(u32) - n - off) * BITS_PER_BYTE);
629 return data;
630}
631#endif
632
633static void copy_io(u32 __iomem *piobuf, struct ipath_sge_state *ss,
634 u32 length)
635{
636 u32 extra = 0;
637 u32 data = 0;
638 u32 last;
639
640 while (1) {
641 u32 len = ss->sge.length;
642 u32 off;
643
644 BUG_ON(len == 0);
645 if (len > length)
646 len = length;
647 if (len > ss->sge.sge_length)
648 len = ss->sge.sge_length;
649 /* If the source address is not aligned, try to align it. */
650 off = (unsigned long)ss->sge.vaddr & (sizeof(u32) - 1);
651 if (off) {
652 u32 *addr = (u32 *)((unsigned long)ss->sge.vaddr &
653 ~(sizeof(u32) - 1));
654 u32 v = get_upper_bits(*addr, off * BITS_PER_BYTE);
655 u32 y;
656
657 y = sizeof(u32) - off;
658 if (len > y)
659 len = y;
660 if (len + extra >= sizeof(u32)) {
661 data |= set_upper_bits(v, extra *
662 BITS_PER_BYTE);
663 len = sizeof(u32) - extra;
664 if (len == length) {
665 last = data;
666 break;
667 }
668 __raw_writel(data, piobuf);
669 piobuf++;
670 extra = 0;
671 data = 0;
672 } else {
673 /* Clear unused upper bytes */
674 data |= clear_upper_bytes(v, len, extra);
675 if (len == length) {
676 last = data;
677 break;
678 }
679 extra += len;
680 }
681 } else if (extra) {
682 /* Source address is aligned. */
683 u32 *addr = (u32 *) ss->sge.vaddr;
684 int shift = extra * BITS_PER_BYTE;
685 int ushift = 32 - shift;
686 u32 l = len;
687
688 while (l >= sizeof(u32)) {
689 u32 v = *addr;
690
691 data |= set_upper_bits(v, shift);
692 __raw_writel(data, piobuf);
693 data = get_upper_bits(v, ushift);
694 piobuf++;
695 addr++;
696 l -= sizeof(u32);
697 }
698 /*
699 * We still have 'extra' number of bytes leftover.
700 */
701 if (l) {
702 u32 v = *addr;
703
704 if (l + extra >= sizeof(u32)) {
705 data |= set_upper_bits(v, shift);
706 len -= l + extra - sizeof(u32);
707 if (len == length) {
708 last = data;
709 break;
710 }
711 __raw_writel(data, piobuf);
712 piobuf++;
713 extra = 0;
714 data = 0;
715 } else {
716 /* Clear unused upper bytes */
717 data |= clear_upper_bytes(v, l,
718 extra);
719 if (len == length) {
720 last = data;
721 break;
722 }
723 extra += l;
724 }
725 } else if (len == length) {
726 last = data;
727 break;
728 }
729 } else if (len == length) {
730 u32 w;
731
732 /*
733 * Need to round up for the last dword in the
734 * packet.
735 */
736 w = (len + 3) >> 2;
737 __iowrite32_copy(piobuf, ss->sge.vaddr, w - 1);
738 piobuf += w - 1;
739 last = ((u32 *) ss->sge.vaddr)[w - 1];
740 break;
741 } else {
742 u32 w = len >> 2;
743
744 __iowrite32_copy(piobuf, ss->sge.vaddr, w);
745 piobuf += w;
746
747 extra = len & (sizeof(u32) - 1);
748 if (extra) {
749 u32 v = ((u32 *) ss->sge.vaddr)[w];
750
751 /* Clear unused upper bytes */
752 data = clear_upper_bytes(v, extra, 0);
753 }
754 }
755 update_sge(ss, len);
756 length -= len;
757 }
758 /* Update address before sending packet. */
759 update_sge(ss, length);
760 /* must flush early everything before trigger word */
761 ipath_flush_wc();
762 __raw_writel(last, piobuf);
763 /* be sure trigger word is written */
764 ipath_flush_wc();
765}
766
767/**
768 * ipath_verbs_send - send a packet
769 * @dd: the infinipath device
770 * @hdrwords: the number of words in the header
771 * @hdr: the packet header
772 * @len: the length of the packet in bytes
773 * @ss: the SGE to send
774 */
775int ipath_verbs_send(struct ipath_devdata *dd, u32 hdrwords,
776 u32 *hdr, u32 len, struct ipath_sge_state *ss)
777{
778 u32 __iomem *piobuf;
779 u32 plen;
780 int ret;
781
782 /* +1 is for the qword padding of pbc */
783 plen = hdrwords + ((len + 3) >> 2) + 1;
784 if (unlikely((plen << 2) > dd->ipath_ibmaxlen)) {
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700785 ret = -EINVAL;
786 goto bail;
787 }
788
789 /* Get a PIO buffer to use. */
790 piobuf = ipath_getpiobuf(dd, NULL);
791 if (unlikely(piobuf == NULL)) {
792 ret = -EBUSY;
793 goto bail;
794 }
795
796 /*
797 * Write len to control qword, no flags.
798 * We have to flush after the PBC for correctness on some cpus
799 * or WC buffer can be written out of order.
800 */
801 writeq(plen, piobuf);
802 ipath_flush_wc();
803 piobuf += 2;
804 if (len == 0) {
805 /*
806 * If there is just the header portion, must flush before
807 * writing last word of header for correctness, and after
808 * the last header word (trigger word).
809 */
810 __iowrite32_copy(piobuf, hdr, hdrwords - 1);
811 ipath_flush_wc();
812 __raw_writel(hdr[hdrwords - 1], piobuf + hdrwords - 1);
813 ipath_flush_wc();
814 ret = 0;
815 goto bail;
816 }
817
818 __iowrite32_copy(piobuf, hdr, hdrwords);
819 piobuf += hdrwords;
820
821 /* The common case is aligned and contained in one segment. */
822 if (likely(ss->num_sge == 1 && len <= ss->sge.length &&
823 !((unsigned long)ss->sge.vaddr & (sizeof(u32) - 1)))) {
824 u32 w;
825 u32 *addr = (u32 *) ss->sge.vaddr;
826
827 /* Update address before sending packet. */
828 update_sge(ss, len);
829 /* Need to round up for the last dword in the packet. */
830 w = (len + 3) >> 2;
831 __iowrite32_copy(piobuf, addr, w - 1);
832 /* must flush early everything before trigger word */
833 ipath_flush_wc();
834 __raw_writel(addr[w - 1], piobuf + w - 1);
835 /* be sure trigger word is written */
836 ipath_flush_wc();
837 ret = 0;
838 goto bail;
839 }
840 copy_io(piobuf, ss, len);
841 ret = 0;
842
843bail:
844 return ret;
845}
846
847int ipath_snapshot_counters(struct ipath_devdata *dd, u64 *swords,
848 u64 *rwords, u64 *spkts, u64 *rpkts,
849 u64 *xmit_wait)
850{
851 int ret;
852
853 if (!(dd->ipath_flags & IPATH_INITTED)) {
854 /* no hardware, freeze, etc. */
855 ipath_dbg("unit %u not usable\n", dd->ipath_unit);
856 ret = -EINVAL;
857 goto bail;
858 }
859 *swords = ipath_snap_cntr(dd, dd->ipath_cregs->cr_wordsendcnt);
860 *rwords = ipath_snap_cntr(dd, dd->ipath_cregs->cr_wordrcvcnt);
861 *spkts = ipath_snap_cntr(dd, dd->ipath_cregs->cr_pktsendcnt);
862 *rpkts = ipath_snap_cntr(dd, dd->ipath_cregs->cr_pktrcvcnt);
863 *xmit_wait = ipath_snap_cntr(dd, dd->ipath_cregs->cr_sendstallcnt);
864
865 ret = 0;
866
867bail:
868 return ret;
869}
870
871/**
872 * ipath_get_counters - get various chip counters
873 * @dd: the infinipath device
874 * @cntrs: counters are placed here
875 *
876 * Return the counters needed by recv_pma_get_portcounters().
877 */
878int ipath_get_counters(struct ipath_devdata *dd,
879 struct ipath_verbs_counters *cntrs)
880{
881 int ret;
882
883 if (!(dd->ipath_flags & IPATH_INITTED)) {
884 /* no hardware, freeze, etc. */
885 ipath_dbg("unit %u not usable\n", dd->ipath_unit);
886 ret = -EINVAL;
887 goto bail;
888 }
889 cntrs->symbol_error_counter =
890 ipath_snap_cntr(dd, dd->ipath_cregs->cr_ibsymbolerrcnt);
891 cntrs->link_error_recovery_counter =
892 ipath_snap_cntr(dd, dd->ipath_cregs->cr_iblinkerrrecovcnt);
893 /*
894 * The link downed counter counts when the other side downs the
895 * connection. We add in the number of times we downed the link
896 * due to local link integrity errors to compensate.
897 */
898 cntrs->link_downed_counter =
899 ipath_snap_cntr(dd, dd->ipath_cregs->cr_iblinkdowncnt);
900 cntrs->port_rcv_errors =
901 ipath_snap_cntr(dd, dd->ipath_cregs->cr_rxdroppktcnt) +
902 ipath_snap_cntr(dd, dd->ipath_cregs->cr_rcvovflcnt) +
903 ipath_snap_cntr(dd, dd->ipath_cregs->cr_portovflcnt) +
904 ipath_snap_cntr(dd, dd->ipath_cregs->cr_err_rlencnt) +
905 ipath_snap_cntr(dd, dd->ipath_cregs->cr_invalidrlencnt) +
906 ipath_snap_cntr(dd, dd->ipath_cregs->cr_erricrccnt) +
907 ipath_snap_cntr(dd, dd->ipath_cregs->cr_errvcrccnt) +
908 ipath_snap_cntr(dd, dd->ipath_cregs->cr_errlpcrccnt) +
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -0700909 ipath_snap_cntr(dd, dd->ipath_cregs->cr_badformatcnt) +
910 dd->ipath_rxfc_unsupvl_errs;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700911 cntrs->port_rcv_remphys_errors =
912 ipath_snap_cntr(dd, dd->ipath_cregs->cr_rcvebpcnt);
913 cntrs->port_xmit_discards =
914 ipath_snap_cntr(dd, dd->ipath_cregs->cr_unsupvlcnt);
915 cntrs->port_xmit_data =
916 ipath_snap_cntr(dd, dd->ipath_cregs->cr_wordsendcnt);
917 cntrs->port_rcv_data =
918 ipath_snap_cntr(dd, dd->ipath_cregs->cr_wordrcvcnt);
919 cntrs->port_xmit_packets =
920 ipath_snap_cntr(dd, dd->ipath_cregs->cr_pktsendcnt);
921 cntrs->port_rcv_packets =
922 ipath_snap_cntr(dd, dd->ipath_cregs->cr_pktrcvcnt);
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -0700923 cntrs->local_link_integrity_errors =
924 (dd->ipath_flags & IPATH_GPIO_ERRINTRS) ?
925 dd->ipath_lli_errs : dd->ipath_lli_errors;
926 cntrs->excessive_buffer_overrun_errors = dd->ipath_overrun_thresh_errs;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700927
928 ret = 0;
929
930bail:
931 return ret;
932}
933
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800934/**
935 * ipath_ib_piobufavail - callback when a PIO buffer is available
936 * @arg: the device pointer
937 *
938 * This is called from ipath_intr() at interrupt level when a PIO buffer is
939 * available after ipath_verbs_send() returned an error that no buffers were
Bryan O'Sullivan9b2017f2006-04-24 14:23:06 -0700940 * available. Return 1 if we consumed all the PIO buffers and we still have
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800941 * QPs waiting for buffers (for now, just do a tasklet_hi_schedule and
Bryan O'Sullivan9b2017f2006-04-24 14:23:06 -0700942 * return zero).
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800943 */
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -0700944int ipath_ib_piobufavail(struct ipath_ibdev *dev)
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800945{
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800946 struct ipath_qp *qp;
947 unsigned long flags;
948
949 if (dev == NULL)
950 goto bail;
951
952 spin_lock_irqsave(&dev->pending_lock, flags);
953 while (!list_empty(&dev->piowait)) {
954 qp = list_entry(dev->piowait.next, struct ipath_qp,
955 piowait);
Bryan O'Sullivan94b8d9f2006-05-23 11:32:32 -0700956 list_del_init(&qp->piowait);
Ralph Campbelldb5518c2007-06-18 14:24:43 -0700957 clear_bit(IPATH_S_BUSY, &qp->s_busy);
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800958 tasklet_hi_schedule(&qp->s_task);
959 }
960 spin_unlock_irqrestore(&dev->pending_lock, flags);
961
962bail:
Bryan O'Sullivan9b2017f2006-04-24 14:23:06 -0700963 return 0;
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800964}
965
966static int ipath_query_device(struct ib_device *ibdev,
967 struct ib_device_attr *props)
968{
969 struct ipath_ibdev *dev = to_idev(ibdev);
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800970
971 memset(props, 0, sizeof(*props));
972
973 props->device_cap_flags = IB_DEVICE_BAD_PKEY_CNTR |
974 IB_DEVICE_BAD_QKEY_CNTR | IB_DEVICE_SHUTDOWN_PORT |
975 IB_DEVICE_SYS_IMAGE_GUID;
Ralph Campbellc9f79bd2006-07-17 18:19:54 -0700976 props->page_size_cap = PAGE_SIZE;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -0700977 props->vendor_id = dev->dd->ipath_vendorid;
978 props->vendor_part_id = dev->dd->ipath_deviceid;
979 props->hw_ver = dev->dd->ipath_pcirev;
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800980
981 props->sys_image_guid = dev->sys_image_guid;
982
983 props->max_mr_size = ~0ull;
Bryan O'Sullivan0b81e4f2006-08-25 11:24:43 -0700984 props->max_qp = ib_ipath_max_qps;
Bryan O'Sullivanfe625462006-07-01 04:35:58 -0700985 props->max_qp_wr = ib_ipath_max_qp_wrs;
986 props->max_sge = ib_ipath_max_sges;
987 props->max_cq = ib_ipath_max_cqs;
988 props->max_ah = ib_ipath_max_ahs;
989 props->max_cqe = ib_ipath_max_cqes;
990 props->max_mr = dev->lk_table.max;
Robert Walshfdc72152007-06-18 14:24:36 -0700991 props->max_fmr = dev->lk_table.max;
992 props->max_map_per_fmr = 32767;
Bryan O'Sullivanfe625462006-07-01 04:35:58 -0700993 props->max_pd = ib_ipath_max_pds;
Ralph Campbell3859e392007-03-15 14:44:51 -0700994 props->max_qp_rd_atom = IPATH_MAX_RDMA_ATOMIC;
995 props->max_qp_init_rd_atom = 255;
Bryan O'Sullivan65221082006-03-29 15:23:38 -0800996 /* props->max_res_rd_atom */
Bryan O'Sullivanfe625462006-07-01 04:35:58 -0700997 props->max_srq = ib_ipath_max_srqs;
998 props->max_srq_wr = ib_ipath_max_srq_wrs;
999 props->max_srq_sge = ib_ipath_max_srq_sges;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001000 /* props->local_ca_ack_delay */
Ralph Campbell3859e392007-03-15 14:44:51 -07001001 props->atomic_cap = IB_ATOMIC_GLOB;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001002 props->max_pkeys = ipath_get_npkeys(dev->dd);
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001003 props->max_mcast_grp = ib_ipath_max_mcast_grps;
1004 props->max_mcast_qp_attach = ib_ipath_max_mcast_qp_attached;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001005 props->max_total_mcast_qp_attach = props->max_mcast_qp_attach *
1006 props->max_mcast_grp;
1007
1008 return 0;
1009}
1010
1011const u8 ipath_cvt_physportstate[16] = {
1012 [INFINIPATH_IBCS_LT_STATE_DISABLED] = 3,
1013 [INFINIPATH_IBCS_LT_STATE_LINKUP] = 5,
1014 [INFINIPATH_IBCS_LT_STATE_POLLACTIVE] = 2,
1015 [INFINIPATH_IBCS_LT_STATE_POLLQUIET] = 2,
1016 [INFINIPATH_IBCS_LT_STATE_SLEEPDELAY] = 1,
1017 [INFINIPATH_IBCS_LT_STATE_SLEEPQUIET] = 1,
1018 [INFINIPATH_IBCS_LT_STATE_CFGDEBOUNCE] = 4,
1019 [INFINIPATH_IBCS_LT_STATE_CFGRCVFCFG] = 4,
1020 [INFINIPATH_IBCS_LT_STATE_CFGWAITRMT] = 4,
1021 [INFINIPATH_IBCS_LT_STATE_CFGIDLE] = 4,
1022 [INFINIPATH_IBCS_LT_STATE_RECOVERRETRAIN] = 6,
1023 [INFINIPATH_IBCS_LT_STATE_RECOVERWAITRMT] = 6,
1024 [INFINIPATH_IBCS_LT_STATE_RECOVERIDLE] = 6,
1025};
1026
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001027u32 ipath_get_cr_errpkey(struct ipath_devdata *dd)
1028{
1029 return ipath_read_creg32(dd, dd->ipath_cregs->cr_errpkey);
1030}
1031
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001032static int ipath_query_port(struct ib_device *ibdev,
1033 u8 port, struct ib_port_attr *props)
1034{
1035 struct ipath_ibdev *dev = to_idev(ibdev);
1036 enum ib_mtu mtu;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001037 u16 lid = dev->dd->ipath_lid;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001038 u64 ibcstat;
1039
1040 memset(props, 0, sizeof(*props));
1041 props->lid = lid ? lid : __constant_be16_to_cpu(IB_LID_PERMISSIVE);
1042 props->lmc = dev->mkeyprot_resv_lmc & 7;
1043 props->sm_lid = dev->sm_lid;
1044 props->sm_sl = dev->sm_sl;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001045 ibcstat = dev->dd->ipath_lastibcstat;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001046 props->state = ((ibcstat >> 4) & 0x3) + 1;
1047 /* See phys_state_show() */
1048 props->phys_state = ipath_cvt_physportstate[
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001049 dev->dd->ipath_lastibcstat & 0xf];
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001050 props->port_cap_flags = dev->port_cap_flags;
1051 props->gid_tbl_len = 1;
Bryan O'Sullivanc100f622006-07-01 04:36:07 -07001052 props->max_msg_sz = 0x80000000;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001053 props->pkey_tbl_len = ipath_get_npkeys(dev->dd);
1054 props->bad_pkey_cntr = ipath_get_cr_errpkey(dev->dd) -
Bryan O'Sullivan443a64a2006-07-01 04:35:48 -07001055 dev->z_pkey_violations;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001056 props->qkey_viol_cntr = dev->qkey_violations;
1057 props->active_width = IB_WIDTH_4X;
1058 /* See rate_show() */
1059 props->active_speed = 1; /* Regular 10Mbs speed. */
1060 props->max_vl_num = 1; /* VLCap = VL0 */
1061 props->init_type_reply = 0;
1062
Robert Walshe7340f02007-06-18 14:24:35 -07001063 /*
1064 * Note: the chips support a maximum MTU of 4096, but the driver
1065 * hasn't implemented this feature yet, so set the maximum value
1066 * to 2048.
1067 */
1068 props->max_mtu = IB_MTU_2048;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001069 switch (dev->dd->ipath_ibmtu) {
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001070 case 4096:
1071 mtu = IB_MTU_4096;
1072 break;
1073 case 2048:
1074 mtu = IB_MTU_2048;
1075 break;
1076 case 1024:
1077 mtu = IB_MTU_1024;
1078 break;
1079 case 512:
1080 mtu = IB_MTU_512;
1081 break;
1082 case 256:
1083 mtu = IB_MTU_256;
1084 break;
1085 default:
1086 mtu = IB_MTU_2048;
1087 }
1088 props->active_mtu = mtu;
1089 props->subnet_timeout = dev->subnet_timeout;
1090
1091 return 0;
1092}
1093
1094static int ipath_modify_device(struct ib_device *device,
1095 int device_modify_mask,
1096 struct ib_device_modify *device_modify)
1097{
1098 int ret;
1099
1100 if (device_modify_mask & ~(IB_DEVICE_MODIFY_SYS_IMAGE_GUID |
1101 IB_DEVICE_MODIFY_NODE_DESC)) {
1102 ret = -EOPNOTSUPP;
1103 goto bail;
1104 }
1105
1106 if (device_modify_mask & IB_DEVICE_MODIFY_NODE_DESC)
1107 memcpy(device->node_desc, device_modify->node_desc, 64);
1108
1109 if (device_modify_mask & IB_DEVICE_MODIFY_SYS_IMAGE_GUID)
1110 to_idev(device)->sys_image_guid =
1111 cpu_to_be64(device_modify->sys_image_guid);
1112
1113 ret = 0;
1114
1115bail:
1116 return ret;
1117}
1118
1119static int ipath_modify_port(struct ib_device *ibdev,
1120 u8 port, int port_modify_mask,
1121 struct ib_port_modify *props)
1122{
1123 struct ipath_ibdev *dev = to_idev(ibdev);
1124
1125 dev->port_cap_flags |= props->set_port_cap_mask;
1126 dev->port_cap_flags &= ~props->clr_port_cap_mask;
1127 if (port_modify_mask & IB_PORT_SHUTDOWN)
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001128 ipath_set_linkstate(dev->dd, IPATH_IB_LINKDOWN);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001129 if (port_modify_mask & IB_PORT_RESET_QKEY_CNTR)
1130 dev->qkey_violations = 0;
1131 return 0;
1132}
1133
1134static int ipath_query_gid(struct ib_device *ibdev, u8 port,
1135 int index, union ib_gid *gid)
1136{
1137 struct ipath_ibdev *dev = to_idev(ibdev);
1138 int ret;
1139
1140 if (index >= 1) {
1141 ret = -EINVAL;
1142 goto bail;
1143 }
1144 gid->global.subnet_prefix = dev->gid_prefix;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001145 gid->global.interface_id = dev->dd->ipath_guid;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001146
1147 ret = 0;
1148
1149bail:
1150 return ret;
1151}
1152
1153static struct ib_pd *ipath_alloc_pd(struct ib_device *ibdev,
1154 struct ib_ucontext *context,
1155 struct ib_udata *udata)
1156{
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001157 struct ipath_ibdev *dev = to_idev(ibdev);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001158 struct ipath_pd *pd;
1159 struct ib_pd *ret;
1160
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001161 /*
1162 * This is actually totally arbitrary. Some correctness tests
1163 * assume there's a maximum number of PDs that can be allocated.
1164 * We don't actually have this limit, but we fail the test if
1165 * we allow allocations of more than we report for this value.
1166 */
1167
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001168 pd = kmalloc(sizeof *pd, GFP_KERNEL);
1169 if (!pd) {
1170 ret = ERR_PTR(-ENOMEM);
1171 goto bail;
1172 }
1173
Bryan O'Sullivanc27fef22006-08-25 11:24:27 -07001174 spin_lock(&dev->n_pds_lock);
1175 if (dev->n_pds_allocated == ib_ipath_max_pds) {
1176 spin_unlock(&dev->n_pds_lock);
1177 kfree(pd);
1178 ret = ERR_PTR(-ENOMEM);
1179 goto bail;
1180 }
1181
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001182 dev->n_pds_allocated++;
Bryan O'Sullivanc27fef22006-08-25 11:24:27 -07001183 spin_unlock(&dev->n_pds_lock);
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001184
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001185 /* ib_alloc_pd() will initialize pd->ibpd. */
1186 pd->user = udata != NULL;
1187
1188 ret = &pd->ibpd;
1189
1190bail:
1191 return ret;
1192}
1193
1194static int ipath_dealloc_pd(struct ib_pd *ibpd)
1195{
1196 struct ipath_pd *pd = to_ipd(ibpd);
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001197 struct ipath_ibdev *dev = to_idev(ibpd->device);
1198
Bryan O'Sullivanc27fef22006-08-25 11:24:27 -07001199 spin_lock(&dev->n_pds_lock);
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001200 dev->n_pds_allocated--;
Bryan O'Sullivanc27fef22006-08-25 11:24:27 -07001201 spin_unlock(&dev->n_pds_lock);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001202
1203 kfree(pd);
1204
1205 return 0;
1206}
1207
1208/**
1209 * ipath_create_ah - create an address handle
1210 * @pd: the protection domain
1211 * @ah_attr: the attributes of the AH
1212 *
1213 * This may be called from interrupt context.
1214 */
1215static struct ib_ah *ipath_create_ah(struct ib_pd *pd,
1216 struct ib_ah_attr *ah_attr)
1217{
1218 struct ipath_ah *ah;
1219 struct ib_ah *ret;
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001220 struct ipath_ibdev *dev = to_idev(pd->device);
Bryan O'Sullivan3d27b002006-09-28 09:00:24 -07001221 unsigned long flags;
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001222
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001223 /* A multicast address requires a GRH (see ch. 8.4.1). */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -07001224 if (ah_attr->dlid >= IPATH_MULTICAST_LID_BASE &&
1225 ah_attr->dlid != IPATH_PERMISSIVE_LID &&
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001226 !(ah_attr->ah_flags & IB_AH_GRH)) {
1227 ret = ERR_PTR(-EINVAL);
1228 goto bail;
1229 }
1230
Bryan O'Sullivan4a45b7d2006-07-01 04:35:55 -07001231 if (ah_attr->dlid == 0) {
1232 ret = ERR_PTR(-EINVAL);
1233 goto bail;
1234 }
1235
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001236 if (ah_attr->port_num < 1 ||
Bryan O'Sullivan4a45b7d2006-07-01 04:35:55 -07001237 ah_attr->port_num > pd->device->phys_port_cnt) {
1238 ret = ERR_PTR(-EINVAL);
1239 goto bail;
1240 }
1241
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001242 ah = kmalloc(sizeof *ah, GFP_ATOMIC);
1243 if (!ah) {
1244 ret = ERR_PTR(-ENOMEM);
1245 goto bail;
1246 }
1247
Bryan O'Sullivan3d27b002006-09-28 09:00:24 -07001248 spin_lock_irqsave(&dev->n_ahs_lock, flags);
Bryan O'Sullivanc27fef22006-08-25 11:24:27 -07001249 if (dev->n_ahs_allocated == ib_ipath_max_ahs) {
Bryan O'Sullivan3d27b002006-09-28 09:00:24 -07001250 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
Bryan O'Sullivanc27fef22006-08-25 11:24:27 -07001251 kfree(ah);
1252 ret = ERR_PTR(-ENOMEM);
1253 goto bail;
1254 }
1255
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001256 dev->n_ahs_allocated++;
Bryan O'Sullivan3d27b002006-09-28 09:00:24 -07001257 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001258
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001259 /* ib_create_ah() will initialize ah->ibah. */
1260 ah->attr = *ah_attr;
1261
1262 ret = &ah->ibah;
1263
1264bail:
1265 return ret;
1266}
1267
1268/**
1269 * ipath_destroy_ah - destroy an address handle
1270 * @ibah: the AH to destroy
1271 *
1272 * This may be called from interrupt context.
1273 */
1274static int ipath_destroy_ah(struct ib_ah *ibah)
1275{
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001276 struct ipath_ibdev *dev = to_idev(ibah->device);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001277 struct ipath_ah *ah = to_iah(ibah);
Bryan O'Sullivan3d27b002006-09-28 09:00:24 -07001278 unsigned long flags;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001279
Bryan O'Sullivan3d27b002006-09-28 09:00:24 -07001280 spin_lock_irqsave(&dev->n_ahs_lock, flags);
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001281 dev->n_ahs_allocated--;
Bryan O'Sullivan3d27b002006-09-28 09:00:24 -07001282 spin_unlock_irqrestore(&dev->n_ahs_lock, flags);
Bryan O'Sullivanfe625462006-07-01 04:35:58 -07001283
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001284 kfree(ah);
1285
1286 return 0;
1287}
1288
1289static int ipath_query_ah(struct ib_ah *ibah, struct ib_ah_attr *ah_attr)
1290{
1291 struct ipath_ah *ah = to_iah(ibah);
1292
1293 *ah_attr = ah->attr;
1294
1295 return 0;
1296}
1297
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001298/**
1299 * ipath_get_npkeys - return the size of the PKEY table for port 0
1300 * @dd: the infinipath device
1301 */
1302unsigned ipath_get_npkeys(struct ipath_devdata *dd)
1303{
1304 return ARRAY_SIZE(dd->ipath_pd[0]->port_pkeys);
1305}
1306
1307/**
1308 * ipath_get_pkey - return the indexed PKEY from the port 0 PKEY table
1309 * @dd: the infinipath device
1310 * @index: the PKEY index
1311 */
1312unsigned ipath_get_pkey(struct ipath_devdata *dd, unsigned index)
1313{
1314 unsigned ret;
1315
1316 if (index >= ARRAY_SIZE(dd->ipath_pd[0]->port_pkeys))
1317 ret = 0;
1318 else
1319 ret = dd->ipath_pd[0]->port_pkeys[index];
1320
1321 return ret;
1322}
1323
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001324static int ipath_query_pkey(struct ib_device *ibdev, u8 port, u16 index,
1325 u16 *pkey)
1326{
1327 struct ipath_ibdev *dev = to_idev(ibdev);
1328 int ret;
1329
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001330 if (index >= ipath_get_npkeys(dev->dd)) {
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001331 ret = -EINVAL;
1332 goto bail;
1333 }
1334
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001335 *pkey = ipath_get_pkey(dev->dd, index);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001336 ret = 0;
1337
1338bail:
1339 return ret;
1340}
1341
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001342/**
1343 * ipath_alloc_ucontext - allocate a ucontest
1344 * @ibdev: the infiniband device
1345 * @udata: not used by the InfiniPath driver
1346 */
1347
1348static struct ib_ucontext *ipath_alloc_ucontext(struct ib_device *ibdev,
1349 struct ib_udata *udata)
1350{
1351 struct ipath_ucontext *context;
1352 struct ib_ucontext *ret;
1353
1354 context = kmalloc(sizeof *context, GFP_KERNEL);
1355 if (!context) {
1356 ret = ERR_PTR(-ENOMEM);
1357 goto bail;
1358 }
1359
1360 ret = &context->ibucontext;
1361
1362bail:
1363 return ret;
1364}
1365
1366static int ipath_dealloc_ucontext(struct ib_ucontext *context)
1367{
1368 kfree(to_iucontext(context));
1369 return 0;
1370}
1371
1372static int ipath_verbs_register_sysfs(struct ib_device *dev);
1373
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001374static void __verbs_timer(unsigned long arg)
1375{
1376 struct ipath_devdata *dd = (struct ipath_devdata *) arg;
1377
1378 /*
1379 * If port 0 receive packet interrupts are not available, or
1380 * can be missed, poll the receive queue
1381 */
1382 if (dd->ipath_flags & IPATH_POLL_RX_INTR)
1383 ipath_kreceive(dd);
1384
1385 /* Handle verbs layer timeouts. */
1386 ipath_ib_timer(dd->verbs_dev);
1387
1388 mod_timer(&dd->verbs_timer, jiffies + 1);
1389}
1390
1391static int enable_timer(struct ipath_devdata *dd)
1392{
1393 /*
1394 * Early chips had a design flaw where the chip and kernel idea
1395 * of the tail register don't always agree, and therefore we won't
1396 * get an interrupt on the next packet received.
1397 * If the board supports per packet receive interrupts, use it.
1398 * Otherwise, the timer function periodically checks for packets
1399 * to cover this case.
1400 * Either way, the timer is needed for verbs layer related
1401 * processing.
1402 */
1403 if (dd->ipath_flags & IPATH_GPIO_INTR) {
1404 ipath_write_kreg(dd, dd->ipath_kregs->kr_debugportselect,
1405 0x2074076542310ULL);
1406 /* Enable GPIO bit 2 interrupt */
Arthur Jones8f140b42007-05-10 12:10:49 -07001407 dd->ipath_gpio_mask |= (u64) (1 << IPATH_GPIO_PORT0_BIT);
1408 ipath_write_kreg(dd, dd->ipath_kregs->kr_gpio_mask,
1409 dd->ipath_gpio_mask);
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001410 }
1411
1412 init_timer(&dd->verbs_timer);
1413 dd->verbs_timer.function = __verbs_timer;
1414 dd->verbs_timer.data = (unsigned long)dd;
1415 dd->verbs_timer.expires = jiffies + 1;
1416 add_timer(&dd->verbs_timer);
1417
1418 return 0;
1419}
1420
1421static int disable_timer(struct ipath_devdata *dd)
1422{
1423 /* Disable GPIO bit 2 interrupt */
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -07001424 if (dd->ipath_flags & IPATH_GPIO_INTR) {
1425 u64 val;
1426 /* Disable GPIO bit 2 interrupt */
1427 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_gpio_mask);
Arthur Jones8f140b42007-05-10 12:10:49 -07001428 dd->ipath_gpio_mask &= ~((u64) (1 << IPATH_GPIO_PORT0_BIT));
1429 ipath_write_kreg(dd, dd->ipath_kregs->kr_gpio_mask,
1430 dd->ipath_gpio_mask);
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -07001431 /*
1432 * We might want to undo changes to debugportselect,
1433 * but how?
1434 */
1435 }
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001436
1437 del_timer_sync(&dd->verbs_timer);
1438
1439 return 0;
1440}
1441
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001442/**
1443 * ipath_register_ib_device - register our device with the infiniband core
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001444 * @dd: the device data structure
1445 * Return the allocated ipath_ibdev pointer or NULL on error.
1446 */
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -07001447int ipath_register_ib_device(struct ipath_devdata *dd)
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001448{
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001449 struct ipath_verbs_counters cntrs;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001450 struct ipath_ibdev *idev;
1451 struct ib_device *dev;
1452 int ret;
1453
1454 idev = (struct ipath_ibdev *)ib_alloc_device(sizeof *idev);
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -07001455 if (idev == NULL) {
1456 ret = -ENOMEM;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001457 goto bail;
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -07001458 }
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001459
1460 dev = &idev->ibdev;
1461
1462 /* Only need to initialize non-zero fields. */
Bryan O'Sullivanc27fef22006-08-25 11:24:27 -07001463 spin_lock_init(&idev->n_pds_lock);
1464 spin_lock_init(&idev->n_ahs_lock);
1465 spin_lock_init(&idev->n_cqs_lock);
Bryan O'Sullivan0b81e4f2006-08-25 11:24:43 -07001466 spin_lock_init(&idev->n_qps_lock);
Bryan O'Sullivanc27fef22006-08-25 11:24:27 -07001467 spin_lock_init(&idev->n_srqs_lock);
1468 spin_lock_init(&idev->n_mcast_grps_lock);
1469
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001470 spin_lock_init(&idev->qp_table.lock);
1471 spin_lock_init(&idev->lk_table.lock);
1472 idev->sm_lid = __constant_be16_to_cpu(IB_LID_PERMISSIVE);
1473 /* Set the prefix to the default value (see ch. 4.1.1) */
1474 idev->gid_prefix = __constant_cpu_to_be64(0xfe80000000000000ULL);
1475
1476 ret = ipath_init_qp_table(idev, ib_ipath_qp_table_size);
1477 if (ret)
1478 goto err_qp;
1479
1480 /*
1481 * The top ib_ipath_lkey_table_size bits are used to index the
1482 * table. The lower 8 bits can be owned by the user (copied from
1483 * the LKEY). The remaining bits act as a generation number or tag.
1484 */
1485 idev->lk_table.max = 1 << ib_ipath_lkey_table_size;
1486 idev->lk_table.table = kzalloc(idev->lk_table.max *
1487 sizeof(*idev->lk_table.table),
1488 GFP_KERNEL);
1489 if (idev->lk_table.table == NULL) {
1490 ret = -ENOMEM;
1491 goto err_lk;
1492 }
Robert Walsh6b66b2da2007-04-27 21:07:23 -07001493 INIT_LIST_HEAD(&idev->pending_mmaps);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001494 spin_lock_init(&idev->pending_lock);
Robert Walsh6b66b2da2007-04-27 21:07:23 -07001495 idev->mmap_offset = PAGE_SIZE;
1496 spin_lock_init(&idev->mmap_offset_lock);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001497 INIT_LIST_HEAD(&idev->pending[0]);
1498 INIT_LIST_HEAD(&idev->pending[1]);
1499 INIT_LIST_HEAD(&idev->pending[2]);
1500 INIT_LIST_HEAD(&idev->piowait);
1501 INIT_LIST_HEAD(&idev->rnrwait);
1502 idev->pending_index = 0;
1503 idev->port_cap_flags =
1504 IB_PORT_SYS_IMAGE_GUID_SUP | IB_PORT_CLIENT_REG_SUP;
1505 idev->pma_counter_select[0] = IB_PMA_PORT_XMIT_DATA;
1506 idev->pma_counter_select[1] = IB_PMA_PORT_RCV_DATA;
1507 idev->pma_counter_select[2] = IB_PMA_PORT_XMIT_PKTS;
1508 idev->pma_counter_select[3] = IB_PMA_PORT_RCV_PKTS;
Roland Dreier53533e12006-11-29 15:33:07 -08001509 idev->pma_counter_select[4] = IB_PMA_PORT_XMIT_WAIT;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001510 idev->link_width_enabled = 3; /* 1x or 4x */
1511
Bryan O'Sullivanfba75202006-07-01 04:36:09 -07001512 /* Snapshot current HW counters to "clear" them. */
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001513 ipath_get_counters(dd, &cntrs);
Bryan O'Sullivanfba75202006-07-01 04:36:09 -07001514 idev->z_symbol_error_counter = cntrs.symbol_error_counter;
1515 idev->z_link_error_recovery_counter =
1516 cntrs.link_error_recovery_counter;
1517 idev->z_link_downed_counter = cntrs.link_downed_counter;
1518 idev->z_port_rcv_errors = cntrs.port_rcv_errors;
1519 idev->z_port_rcv_remphys_errors =
1520 cntrs.port_rcv_remphys_errors;
1521 idev->z_port_xmit_discards = cntrs.port_xmit_discards;
1522 idev->z_port_xmit_data = cntrs.port_xmit_data;
1523 idev->z_port_rcv_data = cntrs.port_rcv_data;
1524 idev->z_port_xmit_packets = cntrs.port_xmit_packets;
1525 idev->z_port_rcv_packets = cntrs.port_rcv_packets;
1526 idev->z_local_link_integrity_errors =
1527 cntrs.local_link_integrity_errors;
1528 idev->z_excessive_buffer_overrun_errors =
1529 cntrs.excessive_buffer_overrun_errors;
1530
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001531 /*
1532 * The system image GUID is supposed to be the same for all
1533 * IB HCAs in a single system but since there can be other
1534 * device types in the system, we can't be sure this is unique.
1535 */
1536 if (!sys_image_guid)
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001537 sys_image_guid = dd->ipath_guid;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001538 idev->sys_image_guid = sys_image_guid;
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -07001539 idev->ib_unit = dd->ipath_unit;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001540 idev->dd = dd;
1541
1542 strlcpy(dev->name, "ipath%d", IB_DEVICE_NAME_MAX);
Bryan O'Sullivan41c75a12006-05-23 11:32:36 -07001543 dev->owner = THIS_MODULE;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001544 dev->node_guid = dd->ipath_guid;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001545 dev->uverbs_abi_ver = IPATH_UVERBS_ABI_VERSION;
1546 dev->uverbs_cmd_mask =
1547 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
1548 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
1549 (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
1550 (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
1551 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
1552 (1ull << IB_USER_VERBS_CMD_CREATE_AH) |
1553 (1ull << IB_USER_VERBS_CMD_DESTROY_AH) |
1554 (1ull << IB_USER_VERBS_CMD_QUERY_AH) |
1555 (1ull << IB_USER_VERBS_CMD_REG_MR) |
1556 (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
1557 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
1558 (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
1559 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ) |
1560 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
1561 (1ull << IB_USER_VERBS_CMD_POLL_CQ) |
1562 (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) |
1563 (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
1564 (1ull << IB_USER_VERBS_CMD_QUERY_QP) |
1565 (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
1566 (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
1567 (1ull << IB_USER_VERBS_CMD_POST_SEND) |
1568 (1ull << IB_USER_VERBS_CMD_POST_RECV) |
1569 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) |
1570 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST) |
1571 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) |
1572 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) |
1573 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) |
1574 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ) |
1575 (1ull << IB_USER_VERBS_CMD_POST_SRQ_RECV);
Tom Tucker07ebafb2006-08-03 16:02:42 -05001576 dev->node_type = RDMA_NODE_IB_CA;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001577 dev->phys_port_cnt = 1;
Michael S. Tsirkinf4fd0b22007-05-03 13:48:47 +03001578 dev->num_comp_vectors = 1;
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001579 dev->dma_device = &dd->pcidev->dev;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001580 dev->query_device = ipath_query_device;
1581 dev->modify_device = ipath_modify_device;
1582 dev->query_port = ipath_query_port;
1583 dev->modify_port = ipath_modify_port;
1584 dev->query_pkey = ipath_query_pkey;
1585 dev->query_gid = ipath_query_gid;
1586 dev->alloc_ucontext = ipath_alloc_ucontext;
1587 dev->dealloc_ucontext = ipath_dealloc_ucontext;
1588 dev->alloc_pd = ipath_alloc_pd;
1589 dev->dealloc_pd = ipath_dealloc_pd;
1590 dev->create_ah = ipath_create_ah;
1591 dev->destroy_ah = ipath_destroy_ah;
1592 dev->query_ah = ipath_query_ah;
1593 dev->create_srq = ipath_create_srq;
1594 dev->modify_srq = ipath_modify_srq;
1595 dev->query_srq = ipath_query_srq;
1596 dev->destroy_srq = ipath_destroy_srq;
1597 dev->create_qp = ipath_create_qp;
1598 dev->modify_qp = ipath_modify_qp;
1599 dev->query_qp = ipath_query_qp;
1600 dev->destroy_qp = ipath_destroy_qp;
1601 dev->post_send = ipath_post_send;
1602 dev->post_recv = ipath_post_receive;
1603 dev->post_srq_recv = ipath_post_srq_receive;
1604 dev->create_cq = ipath_create_cq;
1605 dev->destroy_cq = ipath_destroy_cq;
1606 dev->resize_cq = ipath_resize_cq;
1607 dev->poll_cq = ipath_poll_cq;
1608 dev->req_notify_cq = ipath_req_notify_cq;
1609 dev->get_dma_mr = ipath_get_dma_mr;
1610 dev->reg_phys_mr = ipath_reg_phys_mr;
1611 dev->reg_user_mr = ipath_reg_user_mr;
1612 dev->dereg_mr = ipath_dereg_mr;
1613 dev->alloc_fmr = ipath_alloc_fmr;
1614 dev->map_phys_fmr = ipath_map_phys_fmr;
1615 dev->unmap_fmr = ipath_unmap_fmr;
1616 dev->dealloc_fmr = ipath_dealloc_fmr;
1617 dev->attach_mcast = ipath_multicast_attach;
1618 dev->detach_mcast = ipath_multicast_detach;
1619 dev->process_mad = ipath_process_mad;
Ralph Campbell373d9912006-09-22 15:22:26 -07001620 dev->mmap = ipath_mmap;
Ralph Campbellf2cbb662006-12-12 14:28:28 -08001621 dev->dma_ops = &ipath_dma_mapping_ops;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001622
1623 snprintf(dev->node_desc, sizeof(dev->node_desc),
Serge E. Hallyn96b644b2006-10-02 02:18:13 -07001624 IPATH_IDSTR " %s", init_utsname()->nodename);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001625
1626 ret = ib_register_device(dev);
1627 if (ret)
1628 goto err_reg;
1629
1630 if (ipath_verbs_register_sysfs(dev))
1631 goto err_class;
1632
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001633 enable_timer(dd);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001634
1635 goto bail;
1636
1637err_class:
1638 ib_unregister_device(dev);
1639err_reg:
1640 kfree(idev->lk_table.table);
1641err_lk:
1642 kfree(idev->qp_table.table);
1643err_qp:
1644 ib_dealloc_device(dev);
Bryan O'Sullivanb55f4f02006-08-25 11:24:33 -07001645 ipath_dev_err(dd, "cannot register verbs: %d!\n", -ret);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001646 idev = NULL;
1647
1648bail:
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -07001649 dd->verbs_dev = idev;
1650 return ret;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001651}
1652
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -07001653void ipath_unregister_ib_device(struct ipath_ibdev *dev)
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001654{
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001655 struct ib_device *ibdev = &dev->ibdev;
1656
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001657 disable_timer(dev->dd);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001658
1659 ib_unregister_device(ibdev);
1660
1661 if (!list_empty(&dev->pending[0]) ||
1662 !list_empty(&dev->pending[1]) ||
1663 !list_empty(&dev->pending[2]))
Bryan O'Sullivanb55f4f02006-08-25 11:24:33 -07001664 ipath_dev_err(dev->dd, "pending list not empty!\n");
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001665 if (!list_empty(&dev->piowait))
Bryan O'Sullivanb55f4f02006-08-25 11:24:33 -07001666 ipath_dev_err(dev->dd, "piowait list not empty!\n");
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001667 if (!list_empty(&dev->rnrwait))
Bryan O'Sullivanb55f4f02006-08-25 11:24:33 -07001668 ipath_dev_err(dev->dd, "rnrwait list not empty!\n");
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001669 if (!ipath_mcast_tree_empty())
Bryan O'Sullivanb55f4f02006-08-25 11:24:33 -07001670 ipath_dev_err(dev->dd, "multicast table memory leak!\n");
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001671 /*
1672 * Note that ipath_unregister_ib_device() can be called before all
1673 * the QPs are destroyed!
1674 */
1675 ipath_free_all_qps(&dev->qp_table);
1676 kfree(dev->qp_table.table);
1677 kfree(dev->lk_table.table);
1678 ib_dealloc_device(ibdev);
1679}
1680
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001681static ssize_t show_rev(struct class_device *cdev, char *buf)
1682{
Roland Dreier5494c222006-04-19 11:40:12 -07001683 struct ipath_ibdev *dev =
1684 container_of(cdev, struct ipath_ibdev, ibdev.class_dev);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001685
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001686 return sprintf(buf, "%x\n", dev->dd->ipath_pcirev);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001687}
1688
1689static ssize_t show_hca(struct class_device *cdev, char *buf)
1690{
Roland Dreier5494c222006-04-19 11:40:12 -07001691 struct ipath_ibdev *dev =
1692 container_of(cdev, struct ipath_ibdev, ibdev.class_dev);
1693 int ret;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001694
Bryan O'Sullivan34b2aaf2006-08-25 11:24:32 -07001695 ret = dev->dd->ipath_f_get_boardname(dev->dd, buf, 128);
Roland Dreier5494c222006-04-19 11:40:12 -07001696 if (ret < 0)
1697 goto bail;
1698 strcat(buf, "\n");
1699 ret = strlen(buf);
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001700
1701bail:
1702 return ret;
1703}
1704
1705static ssize_t show_stats(struct class_device *cdev, char *buf)
1706{
Roland Dreier5494c222006-04-19 11:40:12 -07001707 struct ipath_ibdev *dev =
1708 container_of(cdev, struct ipath_ibdev, ibdev.class_dev);
1709 int i;
1710 int len;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001711
Roland Dreier5494c222006-04-19 11:40:12 -07001712 len = sprintf(buf,
1713 "RC resends %d\n"
Bryan O'Sullivan9b2017f2006-04-24 14:23:06 -07001714 "RC no QACK %d\n"
Roland Dreier5494c222006-04-19 11:40:12 -07001715 "RC ACKs %d\n"
1716 "RC SEQ NAKs %d\n"
1717 "RC RDMA seq %d\n"
1718 "RC RNR NAKs %d\n"
1719 "RC OTH NAKs %d\n"
1720 "RC timeouts %d\n"
1721 "RC RDMA dup %d\n"
Bryan O'Sullivan60229432006-09-28 08:59:57 -07001722 "RC stalls %d\n"
Roland Dreier5494c222006-04-19 11:40:12 -07001723 "piobuf wait %d\n"
1724 "no piobuf %d\n"
1725 "PKT drops %d\n"
1726 "WQE errs %d\n",
1727 dev->n_rc_resends, dev->n_rc_qacks, dev->n_rc_acks,
1728 dev->n_seq_naks, dev->n_rdma_seq, dev->n_rnr_naks,
1729 dev->n_other_naks, dev->n_timeouts,
Bryan O'Sullivan60229432006-09-28 08:59:57 -07001730 dev->n_rdma_dup_busy, dev->n_rc_stalls, dev->n_piowait,
Roland Dreier5494c222006-04-19 11:40:12 -07001731 dev->n_no_piobuf, dev->n_pkt_drops, dev->n_wqe_errs);
1732 for (i = 0; i < ARRAY_SIZE(dev->opstats); i++) {
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001733 const struct ipath_opcode_stats *si = &dev->opstats[i];
1734
Roland Dreier5494c222006-04-19 11:40:12 -07001735 if (!si->n_packets && !si->n_bytes)
1736 continue;
1737 len += sprintf(buf + len, "%02x %llu/%llu\n", i,
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001738 (unsigned long long) si->n_packets,
Roland Dreier5494c222006-04-19 11:40:12 -07001739 (unsigned long long) si->n_bytes);
1740 }
1741 return len;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001742}
1743
1744static CLASS_DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
1745static CLASS_DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
1746static CLASS_DEVICE_ATTR(board_id, S_IRUGO, show_hca, NULL);
1747static CLASS_DEVICE_ATTR(stats, S_IRUGO, show_stats, NULL);
1748
1749static struct class_device_attribute *ipath_class_attributes[] = {
Roland Dreier5494c222006-04-19 11:40:12 -07001750 &class_device_attr_hw_rev,
1751 &class_device_attr_hca_type,
1752 &class_device_attr_board_id,
1753 &class_device_attr_stats
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001754};
1755
1756static int ipath_verbs_register_sysfs(struct ib_device *dev)
1757{
Roland Dreier5494c222006-04-19 11:40:12 -07001758 int i;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001759 int ret;
1760
Roland Dreier5494c222006-04-19 11:40:12 -07001761 for (i = 0; i < ARRAY_SIZE(ipath_class_attributes); ++i)
1762 if (class_device_create_file(&dev->class_dev,
1763 ipath_class_attributes[i])) {
1764 ret = 1;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001765 goto bail;
1766 }
1767
Roland Dreier5494c222006-04-19 11:40:12 -07001768 ret = 0;
Bryan O'Sullivan65221082006-03-29 15:23:38 -08001769
1770bail:
1771 return ret;
1772}