xref: /openbmc/linux/drivers/infiniband/hw/qib/qib_verbs.c (revision 019f118b94c895294debfaa394b267638fe2f648)
1f931551bSRalph Campbell /*
25d18ee67SSebastian Sanchez  * Copyright (c) 2012 - 2018 Intel Corporation.  All rights reserved.
31fb9fed6SMike Marciniszyn  * Copyright (c) 2006 - 2012 QLogic Corporation. All rights reserved.
4f931551bSRalph Campbell  * Copyright (c) 2005, 2006 PathScale, Inc. All rights reserved.
5f931551bSRalph Campbell  *
6f931551bSRalph Campbell  * This software is available to you under a choice of one of two
7f931551bSRalph Campbell  * licenses.  You may choose to be licensed under the terms of the GNU
8f931551bSRalph Campbell  * General Public License (GPL) Version 2, available from the file
9f931551bSRalph Campbell  * COPYING in the main directory of this source tree, or the
10f931551bSRalph Campbell  * OpenIB.org BSD license below:
11f931551bSRalph Campbell  *
12f931551bSRalph Campbell  *     Redistribution and use in source and binary forms, with or
13f931551bSRalph Campbell  *     without modification, are permitted provided that the following
14f931551bSRalph Campbell  *     conditions are met:
15f931551bSRalph Campbell  *
16f931551bSRalph Campbell  *      - Redistributions of source code must retain the above
17f931551bSRalph Campbell  *        copyright notice, this list of conditions and the following
18f931551bSRalph Campbell  *        disclaimer.
19f931551bSRalph Campbell  *
20f931551bSRalph Campbell  *      - Redistributions in binary form must reproduce the above
21f931551bSRalph Campbell  *        copyright notice, this list of conditions and the following
22f931551bSRalph Campbell  *        disclaimer in the documentation and/or other materials
23f931551bSRalph Campbell  *        provided with the distribution.
24f931551bSRalph Campbell  *
25f931551bSRalph Campbell  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26f931551bSRalph Campbell  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27f931551bSRalph Campbell  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28f931551bSRalph Campbell  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29f931551bSRalph Campbell  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30f931551bSRalph Campbell  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31f931551bSRalph Campbell  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32f931551bSRalph Campbell  * SOFTWARE.
33f931551bSRalph Campbell  */
34f931551bSRalph Campbell 
35f931551bSRalph Campbell #include <rdma/ib_mad.h>
36f931551bSRalph Campbell #include <rdma/ib_user_verbs.h>
37f931551bSRalph Campbell #include <linux/io.h>
38e4dd23d7SPaul Gortmaker #include <linux/module.h>
39f931551bSRalph Campbell #include <linux/utsname.h>
40f931551bSRalph Campbell #include <linux/rculist.h>
41f931551bSRalph Campbell #include <linux/mm.h>
42af061a64SMike Marciniszyn #include <linux/random.h>
43d6f1c17eSMike Marciniszyn #include <linux/vmalloc.h>
44eb636ac0SDennis Dalessandro #include <rdma/rdma_vt.h>
45f931551bSRalph Campbell 
46f931551bSRalph Campbell #include "qib.h"
47f931551bSRalph Campbell #include "qib_common.h"
48f931551bSRalph Campbell 
49af061a64SMike Marciniszyn static unsigned int ib_qib_qp_table_size = 256;
50f931551bSRalph Campbell module_param_named(qp_table_size, ib_qib_qp_table_size, uint, S_IRUGO);
51f931551bSRalph Campbell MODULE_PARM_DESC(qp_table_size, "QP table size");
52f931551bSRalph Campbell 
537c2e11feSDennis Dalessandro static unsigned int qib_lkey_table_size = 16;
547c2e11feSDennis Dalessandro module_param_named(lkey_table_size, qib_lkey_table_size, uint,
55f931551bSRalph Campbell 		   S_IRUGO);
56f931551bSRalph Campbell MODULE_PARM_DESC(lkey_table_size,
57f931551bSRalph Campbell 		 "LKEY table size in bits (2^n, 1 <= n <= 23)");
58f931551bSRalph Campbell 
59f931551bSRalph Campbell static unsigned int ib_qib_max_pds = 0xFFFF;
60f931551bSRalph Campbell module_param_named(max_pds, ib_qib_max_pds, uint, S_IRUGO);
61f931551bSRalph Campbell MODULE_PARM_DESC(max_pds,
62f931551bSRalph Campbell 		 "Maximum number of protection domains to support");
63f931551bSRalph Campbell 
64f931551bSRalph Campbell static unsigned int ib_qib_max_ahs = 0xFFFF;
65f931551bSRalph Campbell module_param_named(max_ahs, ib_qib_max_ahs, uint, S_IRUGO);
66f931551bSRalph Campbell MODULE_PARM_DESC(max_ahs, "Maximum number of address handles to support");
67f931551bSRalph Campbell 
68f931551bSRalph Campbell unsigned int ib_qib_max_cqes = 0x2FFFF;
69f931551bSRalph Campbell module_param_named(max_cqes, ib_qib_max_cqes, uint, S_IRUGO);
70f931551bSRalph Campbell MODULE_PARM_DESC(max_cqes,
71f931551bSRalph Campbell 		 "Maximum number of completion queue entries to support");
72f931551bSRalph Campbell 
73f931551bSRalph Campbell unsigned int ib_qib_max_cqs = 0x1FFFF;
74f931551bSRalph Campbell module_param_named(max_cqs, ib_qib_max_cqs, uint, S_IRUGO);
75f931551bSRalph Campbell MODULE_PARM_DESC(max_cqs, "Maximum number of completion queues to support");
76f931551bSRalph Campbell 
77f931551bSRalph Campbell unsigned int ib_qib_max_qp_wrs = 0x3FFF;
78f931551bSRalph Campbell module_param_named(max_qp_wrs, ib_qib_max_qp_wrs, uint, S_IRUGO);
79f931551bSRalph Campbell MODULE_PARM_DESC(max_qp_wrs, "Maximum number of QP WRs to support");
80f931551bSRalph Campbell 
81f931551bSRalph Campbell unsigned int ib_qib_max_qps = 16384;
82f931551bSRalph Campbell module_param_named(max_qps, ib_qib_max_qps, uint, S_IRUGO);
83f931551bSRalph Campbell MODULE_PARM_DESC(max_qps, "Maximum number of QPs to support");
84f931551bSRalph Campbell 
85f931551bSRalph Campbell unsigned int ib_qib_max_sges = 0x60;
86f931551bSRalph Campbell module_param_named(max_sges, ib_qib_max_sges, uint, S_IRUGO);
87f931551bSRalph Campbell MODULE_PARM_DESC(max_sges, "Maximum number of SGEs to support");
88f931551bSRalph Campbell 
89f931551bSRalph Campbell unsigned int ib_qib_max_mcast_grps = 16384;
90f931551bSRalph Campbell module_param_named(max_mcast_grps, ib_qib_max_mcast_grps, uint, S_IRUGO);
91f931551bSRalph Campbell MODULE_PARM_DESC(max_mcast_grps,
92f931551bSRalph Campbell 		 "Maximum number of multicast groups to support");
93f931551bSRalph Campbell 
94f931551bSRalph Campbell unsigned int ib_qib_max_mcast_qp_attached = 16;
95f931551bSRalph Campbell module_param_named(max_mcast_qp_attached, ib_qib_max_mcast_qp_attached,
96f931551bSRalph Campbell 		   uint, S_IRUGO);
97f931551bSRalph Campbell MODULE_PARM_DESC(max_mcast_qp_attached,
98f931551bSRalph Campbell 		 "Maximum number of attached QPs to support");
99f931551bSRalph Campbell 
100f931551bSRalph Campbell unsigned int ib_qib_max_srqs = 1024;
101f931551bSRalph Campbell module_param_named(max_srqs, ib_qib_max_srqs, uint, S_IRUGO);
102f931551bSRalph Campbell MODULE_PARM_DESC(max_srqs, "Maximum number of SRQs to support");
103f931551bSRalph Campbell 
104f931551bSRalph Campbell unsigned int ib_qib_max_srq_sges = 128;
105f931551bSRalph Campbell module_param_named(max_srq_sges, ib_qib_max_srq_sges, uint, S_IRUGO);
106f931551bSRalph Campbell MODULE_PARM_DESC(max_srq_sges, "Maximum number of SRQ SGEs to support");
107f931551bSRalph Campbell 
108f931551bSRalph Campbell unsigned int ib_qib_max_srq_wrs = 0x1FFFF;
109f931551bSRalph Campbell module_param_named(max_srq_wrs, ib_qib_max_srq_wrs, uint, S_IRUGO);
110f931551bSRalph Campbell MODULE_PARM_DESC(max_srq_wrs, "Maximum number of SRQ WRs support");
111f931551bSRalph Campbell 
112f931551bSRalph Campbell static unsigned int ib_qib_disable_sma;
113f931551bSRalph Campbell module_param_named(disable_sma, ib_qib_disable_sma, uint, S_IWUSR | S_IRUGO);
114f931551bSRalph Campbell MODULE_PARM_DESC(disable_sma, "Disable the SMA");
115f931551bSRalph Campbell 
116f931551bSRalph Campbell /*
11743a474aaSMike Marciniszyn  * Translate ib_wr_opcode into ib_wc_opcode.
11843a474aaSMike Marciniszyn  */
11943a474aaSMike Marciniszyn const enum ib_wc_opcode ib_qib_wc_opcode[] = {
12043a474aaSMike Marciniszyn 	[IB_WR_RDMA_WRITE] = IB_WC_RDMA_WRITE,
12143a474aaSMike Marciniszyn 	[IB_WR_RDMA_WRITE_WITH_IMM] = IB_WC_RDMA_WRITE,
12243a474aaSMike Marciniszyn 	[IB_WR_SEND] = IB_WC_SEND,
12343a474aaSMike Marciniszyn 	[IB_WR_SEND_WITH_IMM] = IB_WC_SEND,
12443a474aaSMike Marciniszyn 	[IB_WR_RDMA_READ] = IB_WC_RDMA_READ,
12543a474aaSMike Marciniszyn 	[IB_WR_ATOMIC_CMP_AND_SWP] = IB_WC_COMP_SWAP,
12643a474aaSMike Marciniszyn 	[IB_WR_ATOMIC_FETCH_AND_ADD] = IB_WC_FETCH_ADD
12743a474aaSMike Marciniszyn };
12843a474aaSMike Marciniszyn 
12943a474aaSMike Marciniszyn /*
130f931551bSRalph Campbell  * System image GUID.
131f931551bSRalph Campbell  */
132f931551bSRalph Campbell __be64 ib_qib_sys_image_guid;
133f931551bSRalph Campbell 
134f931551bSRalph Campbell /*
135f931551bSRalph Campbell  * Count the number of DMA descriptors needed to send length bytes of data.
136f931551bSRalph Campbell  * Don't modify the qib_sge_state to get the count.
137f931551bSRalph Campbell  * Return zero if any of the segments is not aligned.
138f931551bSRalph Campbell  */
1397c2e11feSDennis Dalessandro static u32 qib_count_sge(struct rvt_sge_state *ss, u32 length)
140f931551bSRalph Campbell {
1417c2e11feSDennis Dalessandro 	struct rvt_sge *sg_list = ss->sg_list;
1427c2e11feSDennis Dalessandro 	struct rvt_sge sge = ss->sge;
143f931551bSRalph Campbell 	u8 num_sge = ss->num_sge;
144f931551bSRalph Campbell 	u32 ndesc = 1;  /* count the header */
145f931551bSRalph Campbell 
146f931551bSRalph Campbell 	while (length) {
147f931551bSRalph Campbell 		u32 len = sge.length;
148f931551bSRalph Campbell 
149f931551bSRalph Campbell 		if (len > length)
150f931551bSRalph Campbell 			len = length;
151f931551bSRalph Campbell 		if (len > sge.sge_length)
152f931551bSRalph Campbell 			len = sge.sge_length;
153f931551bSRalph Campbell 		BUG_ON(len == 0);
154f931551bSRalph Campbell 		if (((long) sge.vaddr & (sizeof(u32) - 1)) ||
155f931551bSRalph Campbell 		    (len != length && (len & (sizeof(u32) - 1)))) {
156f931551bSRalph Campbell 			ndesc = 0;
157f931551bSRalph Campbell 			break;
158f931551bSRalph Campbell 		}
159f931551bSRalph Campbell 		ndesc++;
160f931551bSRalph Campbell 		sge.vaddr += len;
161f931551bSRalph Campbell 		sge.length -= len;
162f931551bSRalph Campbell 		sge.sge_length -= len;
163f931551bSRalph Campbell 		if (sge.sge_length == 0) {
164f931551bSRalph Campbell 			if (--num_sge)
165f931551bSRalph Campbell 				sge = *sg_list++;
166f931551bSRalph Campbell 		} else if (sge.length == 0 && sge.mr->lkey) {
1677c2e11feSDennis Dalessandro 			if (++sge.n >= RVT_SEGSZ) {
168f931551bSRalph Campbell 				if (++sge.m >= sge.mr->mapsz)
169f931551bSRalph Campbell 					break;
170f931551bSRalph Campbell 				sge.n = 0;
171f931551bSRalph Campbell 			}
172f931551bSRalph Campbell 			sge.vaddr =
173f931551bSRalph Campbell 				sge.mr->map[sge.m]->segs[sge.n].vaddr;
174f931551bSRalph Campbell 			sge.length =
175f931551bSRalph Campbell 				sge.mr->map[sge.m]->segs[sge.n].length;
176f931551bSRalph Campbell 		}
177f931551bSRalph Campbell 		length -= len;
178f931551bSRalph Campbell 	}
179f931551bSRalph Campbell 	return ndesc;
180f931551bSRalph Campbell }
181f931551bSRalph Campbell 
182f931551bSRalph Campbell /*
183f931551bSRalph Campbell  * Copy from the SGEs to the data buffer.
184f931551bSRalph Campbell  */
1857c2e11feSDennis Dalessandro static void qib_copy_from_sge(void *data, struct rvt_sge_state *ss, u32 length)
186f931551bSRalph Campbell {
1877c2e11feSDennis Dalessandro 	struct rvt_sge *sge = &ss->sge;
188f931551bSRalph Campbell 
189f931551bSRalph Campbell 	while (length) {
190f931551bSRalph Campbell 		u32 len = sge->length;
191f931551bSRalph Campbell 
192f931551bSRalph Campbell 		if (len > length)
193f931551bSRalph Campbell 			len = length;
194f931551bSRalph Campbell 		if (len > sge->sge_length)
195f931551bSRalph Campbell 			len = sge->sge_length;
196f931551bSRalph Campbell 		BUG_ON(len == 0);
197f931551bSRalph Campbell 		memcpy(data, sge->vaddr, len);
198f931551bSRalph Campbell 		sge->vaddr += len;
199f931551bSRalph Campbell 		sge->length -= len;
200f931551bSRalph Campbell 		sge->sge_length -= len;
201f931551bSRalph Campbell 		if (sge->sge_length == 0) {
202f931551bSRalph Campbell 			if (--ss->num_sge)
203f931551bSRalph Campbell 				*sge = *ss->sg_list++;
204f931551bSRalph Campbell 		} else if (sge->length == 0 && sge->mr->lkey) {
2057c2e11feSDennis Dalessandro 			if (++sge->n >= RVT_SEGSZ) {
206f931551bSRalph Campbell 				if (++sge->m >= sge->mr->mapsz)
207f931551bSRalph Campbell 					break;
208f931551bSRalph Campbell 				sge->n = 0;
209f931551bSRalph Campbell 			}
210f931551bSRalph Campbell 			sge->vaddr =
211f931551bSRalph Campbell 				sge->mr->map[sge->m]->segs[sge->n].vaddr;
212f931551bSRalph Campbell 			sge->length =
213f931551bSRalph Campbell 				sge->mr->map[sge->m]->segs[sge->n].length;
214f931551bSRalph Campbell 		}
215f931551bSRalph Campbell 		data += len;
216f931551bSRalph Campbell 		length -= len;
217f931551bSRalph Campbell 	}
218f931551bSRalph Campbell }
219f931551bSRalph Campbell 
220f931551bSRalph Campbell /**
221f931551bSRalph Campbell  * qib_qp_rcv - processing an incoming packet on a QP
222f931551bSRalph Campbell  * @rcd: the context pointer
223f931551bSRalph Campbell  * @hdr: the packet header
224f931551bSRalph Campbell  * @has_grh: true if the packet has a GRH
225f931551bSRalph Campbell  * @data: the packet data
226f931551bSRalph Campbell  * @tlen: the packet length
227f931551bSRalph Campbell  * @qp: the QP the packet came on
228f931551bSRalph Campbell  *
229f931551bSRalph Campbell  * This is called from qib_ib_rcv() to process an incoming packet
230f931551bSRalph Campbell  * for the given QP.
231f931551bSRalph Campbell  * Called at interrupt level.
232f931551bSRalph Campbell  */
233261a4351SMike Marciniszyn static void qib_qp_rcv(struct qib_ctxtdata *rcd, struct ib_header *hdr,
2347c2e11feSDennis Dalessandro 		       int has_grh, void *data, u32 tlen, struct rvt_qp *qp)
235f931551bSRalph Campbell {
236f931551bSRalph Campbell 	struct qib_ibport *ibp = &rcd->ppd->ibport_data;
237f931551bSRalph Campbell 
238a5210c12SRalph Campbell 	spin_lock(&qp->r_lock);
239a5210c12SRalph Campbell 
240f931551bSRalph Campbell 	/* Check for valid receive state. */
241db3ef0ebSHarish Chegondi 	if (!(ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK)) {
242f24a6d48SHarish Chegondi 		ibp->rvp.n_pkt_drops++;
243a5210c12SRalph Campbell 		goto unlock;
244f931551bSRalph Campbell 	}
245f931551bSRalph Campbell 
246f931551bSRalph Campbell 	switch (qp->ibqp.qp_type) {
247f931551bSRalph Campbell 	case IB_QPT_SMI:
248f931551bSRalph Campbell 	case IB_QPT_GSI:
249f931551bSRalph Campbell 		if (ib_qib_disable_sma)
250f931551bSRalph Campbell 			break;
251f931551bSRalph Campbell 		/* FALLTHROUGH */
252f931551bSRalph Campbell 	case IB_QPT_UD:
253f931551bSRalph Campbell 		qib_ud_rcv(ibp, hdr, has_grh, data, tlen, qp);
254f931551bSRalph Campbell 		break;
255f931551bSRalph Campbell 
256f931551bSRalph Campbell 	case IB_QPT_RC:
257f931551bSRalph Campbell 		qib_rc_rcv(rcd, hdr, has_grh, data, tlen, qp);
258f931551bSRalph Campbell 		break;
259f931551bSRalph Campbell 
260f931551bSRalph Campbell 	case IB_QPT_UC:
261f931551bSRalph Campbell 		qib_uc_rcv(ibp, hdr, has_grh, data, tlen, qp);
262f931551bSRalph Campbell 		break;
263f931551bSRalph Campbell 
264f931551bSRalph Campbell 	default:
265f931551bSRalph Campbell 		break;
266f931551bSRalph Campbell 	}
267a5210c12SRalph Campbell 
268a5210c12SRalph Campbell unlock:
269a5210c12SRalph Campbell 	spin_unlock(&qp->r_lock);
270f931551bSRalph Campbell }
271f931551bSRalph Campbell 
272f931551bSRalph Campbell /**
273f931551bSRalph Campbell  * qib_ib_rcv - process an incoming packet
274f931551bSRalph Campbell  * @rcd: the context pointer
275f931551bSRalph Campbell  * @rhdr: the header of the packet
276f931551bSRalph Campbell  * @data: the packet payload
277f931551bSRalph Campbell  * @tlen: the packet length
278f931551bSRalph Campbell  *
279f931551bSRalph Campbell  * This is called from qib_kreceive() to process an incoming packet at
280f931551bSRalph Campbell  * interrupt level. Tlen is the length of the header + data + CRC in bytes.
281f931551bSRalph Campbell  */
282f931551bSRalph Campbell void qib_ib_rcv(struct qib_ctxtdata *rcd, void *rhdr, void *data, u32 tlen)
283f931551bSRalph Campbell {
284f931551bSRalph Campbell 	struct qib_pportdata *ppd = rcd->ppd;
285f931551bSRalph Campbell 	struct qib_ibport *ibp = &ppd->ibport_data;
286261a4351SMike Marciniszyn 	struct ib_header *hdr = rhdr;
2871cefc2cdSHarish Chegondi 	struct qib_devdata *dd = ppd->dd;
2881cefc2cdSHarish Chegondi 	struct rvt_dev_info *rdi = &dd->verbs_dev.rdi;
289261a4351SMike Marciniszyn 	struct ib_other_headers *ohdr;
2907c2e11feSDennis Dalessandro 	struct rvt_qp *qp;
291f931551bSRalph Campbell 	u32 qp_num;
292f931551bSRalph Campbell 	int lnh;
293f931551bSRalph Campbell 	u8 opcode;
294f931551bSRalph Campbell 	u16 lid;
295f931551bSRalph Campbell 
296f931551bSRalph Campbell 	/* 24 == LRH+BTH+CRC */
297f931551bSRalph Campbell 	if (unlikely(tlen < 24))
298f931551bSRalph Campbell 		goto drop;
299f931551bSRalph Campbell 
300f931551bSRalph Campbell 	/* Check for a valid destination LID (see ch. 7.11.1). */
301f931551bSRalph Campbell 	lid = be16_to_cpu(hdr->lrh[1]);
3029ff198f5SDennis Dalessandro 	if (lid < be16_to_cpu(IB_MULTICAST_LID_BASE)) {
303f931551bSRalph Campbell 		lid &= ~((1 << ppd->lmc) - 1);
304f931551bSRalph Campbell 		if (unlikely(lid != ppd->lid))
305f931551bSRalph Campbell 			goto drop;
306f931551bSRalph Campbell 	}
307f931551bSRalph Campbell 
308f931551bSRalph Campbell 	/* Check for GRH */
309f931551bSRalph Campbell 	lnh = be16_to_cpu(hdr->lrh[0]) & 3;
310f931551bSRalph Campbell 	if (lnh == QIB_LRH_BTH)
311f931551bSRalph Campbell 		ohdr = &hdr->u.oth;
312f931551bSRalph Campbell 	else if (lnh == QIB_LRH_GRH) {
313f931551bSRalph Campbell 		u32 vtf;
314f931551bSRalph Campbell 
315f931551bSRalph Campbell 		ohdr = &hdr->u.l.oth;
316f931551bSRalph Campbell 		if (hdr->u.l.grh.next_hdr != IB_GRH_NEXT_HDR)
317f931551bSRalph Campbell 			goto drop;
318f931551bSRalph Campbell 		vtf = be32_to_cpu(hdr->u.l.grh.version_tclass_flow);
319f931551bSRalph Campbell 		if ((vtf >> IB_GRH_VERSION_SHIFT) != IB_GRH_VERSION)
320f931551bSRalph Campbell 			goto drop;
321f931551bSRalph Campbell 	} else
322f931551bSRalph Campbell 		goto drop;
323f931551bSRalph Campbell 
324ddb88765SMike Marciniszyn 	opcode = (be32_to_cpu(ohdr->bth[0]) >> 24) & 0x7f;
325ddb88765SMike Marciniszyn #ifdef CONFIG_DEBUG_FS
326ddb88765SMike Marciniszyn 	rcd->opstats->stats[opcode].n_bytes += tlen;
327ddb88765SMike Marciniszyn 	rcd->opstats->stats[opcode].n_packets++;
328ddb88765SMike Marciniszyn #endif
329f931551bSRalph Campbell 
330f931551bSRalph Campbell 	/* Get the destination QP number. */
33170696ea7SHarish Chegondi 	qp_num = be32_to_cpu(ohdr->bth[1]) & RVT_QPN_MASK;
332f931551bSRalph Campbell 	if (qp_num == QIB_MULTICAST_QPN) {
33318f6c582SHarish Chegondi 		struct rvt_mcast *mcast;
33418f6c582SHarish Chegondi 		struct rvt_mcast_qp *p;
335f931551bSRalph Campbell 
336f931551bSRalph Campbell 		if (lnh != QIB_LRH_GRH)
337f931551bSRalph Campbell 			goto drop;
338aad9ff97SMichael J. Ruhl 		mcast = rvt_mcast_find(&ibp->rvp, &hdr->u.l.grh.dgid, lid);
339f931551bSRalph Campbell 		if (mcast == NULL)
340f931551bSRalph Campbell 			goto drop;
3417d7632adSMike Marciniszyn 		this_cpu_inc(ibp->pmastats->n_multicast_rcv);
342f931551bSRalph Campbell 		list_for_each_entry_rcu(p, &mcast->qp_list, list)
343f931551bSRalph Campbell 			qib_qp_rcv(rcd, hdr, 1, data, tlen, p->qp);
344f931551bSRalph Campbell 		/*
34518f6c582SHarish Chegondi 		 * Notify rvt_multicast_detach() if it is waiting for us
346f931551bSRalph Campbell 		 * to finish.
347f931551bSRalph Campbell 		 */
348f931551bSRalph Campbell 		if (atomic_dec_return(&mcast->refcount) <= 1)
349f931551bSRalph Campbell 			wake_up(&mcast->wait);
350f931551bSRalph Campbell 	} else {
3511cefc2cdSHarish Chegondi 		rcu_read_lock();
3521cefc2cdSHarish Chegondi 		qp = rvt_lookup_qpn(rdi, &ibp->rvp, qp_num);
3531cefc2cdSHarish Chegondi 		if (!qp) {
3541cefc2cdSHarish Chegondi 			rcu_read_unlock();
355f931551bSRalph Campbell 			goto drop;
3561cefc2cdSHarish Chegondi 		}
3577d7632adSMike Marciniszyn 		this_cpu_inc(ibp->pmastats->n_unicast_rcv);
358f931551bSRalph Campbell 		qib_qp_rcv(rcd, hdr, lnh == QIB_LRH_GRH, data, tlen, qp);
3591cefc2cdSHarish Chegondi 		rcu_read_unlock();
360f931551bSRalph Campbell 	}
361f931551bSRalph Campbell 	return;
362f931551bSRalph Campbell 
363f931551bSRalph Campbell drop:
364f24a6d48SHarish Chegondi 	ibp->rvp.n_pkt_drops++;
365f931551bSRalph Campbell }
366f931551bSRalph Campbell 
367f931551bSRalph Campbell /*
368f931551bSRalph Campbell  * This is called from a timer to check for QPs
369f931551bSRalph Campbell  * which need kernel memory in order to send a packet.
370f931551bSRalph Campbell  */
3714037c92fSKees Cook static void mem_timer(struct timer_list *t)
372f931551bSRalph Campbell {
3734037c92fSKees Cook 	struct qib_ibdev *dev = from_timer(dev, t, mem_timer);
374f931551bSRalph Campbell 	struct list_head *list = &dev->memwait;
3757c2e11feSDennis Dalessandro 	struct rvt_qp *qp = NULL;
376ffc26907SDennis Dalessandro 	struct qib_qp_priv *priv = NULL;
377f931551bSRalph Campbell 	unsigned long flags;
378f931551bSRalph Campbell 
379cd18201fSHarish Chegondi 	spin_lock_irqsave(&dev->rdi.pending_lock, flags);
380f931551bSRalph Campbell 	if (!list_empty(list)) {
381ffc26907SDennis Dalessandro 		priv = list_entry(list->next, struct qib_qp_priv, iowait);
382ffc26907SDennis Dalessandro 		qp = priv->owner;
383ffc26907SDennis Dalessandro 		list_del_init(&priv->iowait);
384238b1862SSebastian Sanchez 		rvt_get_qp(qp);
385f931551bSRalph Campbell 		if (!list_empty(list))
386f931551bSRalph Campbell 			mod_timer(&dev->mem_timer, jiffies + 1);
387f931551bSRalph Campbell 	}
388cd18201fSHarish Chegondi 	spin_unlock_irqrestore(&dev->rdi.pending_lock, flags);
389f931551bSRalph Campbell 
390f931551bSRalph Campbell 	if (qp) {
391f931551bSRalph Campbell 		spin_lock_irqsave(&qp->s_lock, flags);
39201ba79d4SHarish Chegondi 		if (qp->s_flags & RVT_S_WAIT_KMEM) {
39301ba79d4SHarish Chegondi 			qp->s_flags &= ~RVT_S_WAIT_KMEM;
394f931551bSRalph Campbell 			qib_schedule_send(qp);
395f931551bSRalph Campbell 		}
396f931551bSRalph Campbell 		spin_unlock_irqrestore(&qp->s_lock, flags);
397238b1862SSebastian Sanchez 		rvt_put_qp(qp);
398f931551bSRalph Campbell 	}
399f931551bSRalph Campbell }
400f931551bSRalph Campbell 
401f931551bSRalph Campbell #ifdef __LITTLE_ENDIAN
402f931551bSRalph Campbell static inline u32 get_upper_bits(u32 data, u32 shift)
403f931551bSRalph Campbell {
404f931551bSRalph Campbell 	return data >> shift;
405f931551bSRalph Campbell }
406f931551bSRalph Campbell 
407f931551bSRalph Campbell static inline u32 set_upper_bits(u32 data, u32 shift)
408f931551bSRalph Campbell {
409f931551bSRalph Campbell 	return data << shift;
410f931551bSRalph Campbell }
411f931551bSRalph Campbell 
412f931551bSRalph Campbell static inline u32 clear_upper_bytes(u32 data, u32 n, u32 off)
413f931551bSRalph Campbell {
414f931551bSRalph Campbell 	data <<= ((sizeof(u32) - n) * BITS_PER_BYTE);
415f931551bSRalph Campbell 	data >>= ((sizeof(u32) - n - off) * BITS_PER_BYTE);
416f931551bSRalph Campbell 	return data;
417f931551bSRalph Campbell }
418f931551bSRalph Campbell #else
419f931551bSRalph Campbell static inline u32 get_upper_bits(u32 data, u32 shift)
420f931551bSRalph Campbell {
421f931551bSRalph Campbell 	return data << shift;
422f931551bSRalph Campbell }
423f931551bSRalph Campbell 
424f931551bSRalph Campbell static inline u32 set_upper_bits(u32 data, u32 shift)
425f931551bSRalph Campbell {
426f931551bSRalph Campbell 	return data >> shift;
427f931551bSRalph Campbell }
428f931551bSRalph Campbell 
429f931551bSRalph Campbell static inline u32 clear_upper_bytes(u32 data, u32 n, u32 off)
430f931551bSRalph Campbell {
431f931551bSRalph Campbell 	data >>= ((sizeof(u32) - n) * BITS_PER_BYTE);
432f931551bSRalph Campbell 	data <<= ((sizeof(u32) - n - off) * BITS_PER_BYTE);
433f931551bSRalph Campbell 	return data;
434f931551bSRalph Campbell }
435f931551bSRalph Campbell #endif
436f931551bSRalph Campbell 
4377c2e11feSDennis Dalessandro static void copy_io(u32 __iomem *piobuf, struct rvt_sge_state *ss,
438f931551bSRalph Campbell 		    u32 length, unsigned flush_wc)
439f931551bSRalph Campbell {
440f931551bSRalph Campbell 	u32 extra = 0;
441f931551bSRalph Campbell 	u32 data = 0;
442f931551bSRalph Campbell 	u32 last;
443f931551bSRalph Campbell 
444f931551bSRalph Campbell 	while (1) {
445f931551bSRalph Campbell 		u32 len = ss->sge.length;
446f931551bSRalph Campbell 		u32 off;
447f931551bSRalph Campbell 
448f931551bSRalph Campbell 		if (len > length)
449f931551bSRalph Campbell 			len = length;
450f931551bSRalph Campbell 		if (len > ss->sge.sge_length)
451f931551bSRalph Campbell 			len = ss->sge.sge_length;
452f931551bSRalph Campbell 		BUG_ON(len == 0);
453f931551bSRalph Campbell 		/* If the source address is not aligned, try to align it. */
454f931551bSRalph Campbell 		off = (unsigned long)ss->sge.vaddr & (sizeof(u32) - 1);
455f931551bSRalph Campbell 		if (off) {
456f931551bSRalph Campbell 			u32 *addr = (u32 *)((unsigned long)ss->sge.vaddr &
457f931551bSRalph Campbell 					    ~(sizeof(u32) - 1));
458f931551bSRalph Campbell 			u32 v = get_upper_bits(*addr, off * BITS_PER_BYTE);
459f931551bSRalph Campbell 			u32 y;
460f931551bSRalph Campbell 
461f931551bSRalph Campbell 			y = sizeof(u32) - off;
462f931551bSRalph Campbell 			if (len > y)
463f931551bSRalph Campbell 				len = y;
464f931551bSRalph Campbell 			if (len + extra >= sizeof(u32)) {
465f931551bSRalph Campbell 				data |= set_upper_bits(v, extra *
466f931551bSRalph Campbell 						       BITS_PER_BYTE);
467f931551bSRalph Campbell 				len = sizeof(u32) - extra;
468f931551bSRalph Campbell 				if (len == length) {
469f931551bSRalph Campbell 					last = data;
470f931551bSRalph Campbell 					break;
471f931551bSRalph Campbell 				}
472f931551bSRalph Campbell 				__raw_writel(data, piobuf);
473f931551bSRalph Campbell 				piobuf++;
474f931551bSRalph Campbell 				extra = 0;
475f931551bSRalph Campbell 				data = 0;
476f931551bSRalph Campbell 			} else {
477f931551bSRalph Campbell 				/* Clear unused upper bytes */
478f931551bSRalph Campbell 				data |= clear_upper_bytes(v, len, extra);
479f931551bSRalph Campbell 				if (len == length) {
480f931551bSRalph Campbell 					last = data;
481f931551bSRalph Campbell 					break;
482f931551bSRalph Campbell 				}
483f931551bSRalph Campbell 				extra += len;
484f931551bSRalph Campbell 			}
485f931551bSRalph Campbell 		} else if (extra) {
486f931551bSRalph Campbell 			/* Source address is aligned. */
487f931551bSRalph Campbell 			u32 *addr = (u32 *) ss->sge.vaddr;
488f931551bSRalph Campbell 			int shift = extra * BITS_PER_BYTE;
489f931551bSRalph Campbell 			int ushift = 32 - shift;
490f931551bSRalph Campbell 			u32 l = len;
491f931551bSRalph Campbell 
492f931551bSRalph Campbell 			while (l >= sizeof(u32)) {
493f931551bSRalph Campbell 				u32 v = *addr;
494f931551bSRalph Campbell 
495f931551bSRalph Campbell 				data |= set_upper_bits(v, shift);
496f931551bSRalph Campbell 				__raw_writel(data, piobuf);
497f931551bSRalph Campbell 				data = get_upper_bits(v, ushift);
498f931551bSRalph Campbell 				piobuf++;
499f931551bSRalph Campbell 				addr++;
500f931551bSRalph Campbell 				l -= sizeof(u32);
501f931551bSRalph Campbell 			}
502f931551bSRalph Campbell 			/*
503f931551bSRalph Campbell 			 * We still have 'extra' number of bytes leftover.
504f931551bSRalph Campbell 			 */
505f931551bSRalph Campbell 			if (l) {
506f931551bSRalph Campbell 				u32 v = *addr;
507f931551bSRalph Campbell 
508f931551bSRalph Campbell 				if (l + extra >= sizeof(u32)) {
509f931551bSRalph Campbell 					data |= set_upper_bits(v, shift);
510f931551bSRalph Campbell 					len -= l + extra - sizeof(u32);
511f931551bSRalph Campbell 					if (len == length) {
512f931551bSRalph Campbell 						last = data;
513f931551bSRalph Campbell 						break;
514f931551bSRalph Campbell 					}
515f931551bSRalph Campbell 					__raw_writel(data, piobuf);
516f931551bSRalph Campbell 					piobuf++;
517f931551bSRalph Campbell 					extra = 0;
518f931551bSRalph Campbell 					data = 0;
519f931551bSRalph Campbell 				} else {
520f931551bSRalph Campbell 					/* Clear unused upper bytes */
521f931551bSRalph Campbell 					data |= clear_upper_bytes(v, l, extra);
522f931551bSRalph Campbell 					if (len == length) {
523f931551bSRalph Campbell 						last = data;
524f931551bSRalph Campbell 						break;
525f931551bSRalph Campbell 					}
526f931551bSRalph Campbell 					extra += l;
527f931551bSRalph Campbell 				}
528f931551bSRalph Campbell 			} else if (len == length) {
529f931551bSRalph Campbell 				last = data;
530f931551bSRalph Campbell 				break;
531f931551bSRalph Campbell 			}
532f931551bSRalph Campbell 		} else if (len == length) {
533f931551bSRalph Campbell 			u32 w;
534f931551bSRalph Campbell 
535f931551bSRalph Campbell 			/*
536f931551bSRalph Campbell 			 * Need to round up for the last dword in the
537f931551bSRalph Campbell 			 * packet.
538f931551bSRalph Campbell 			 */
539f931551bSRalph Campbell 			w = (len + 3) >> 2;
540f931551bSRalph Campbell 			qib_pio_copy(piobuf, ss->sge.vaddr, w - 1);
541f931551bSRalph Campbell 			piobuf += w - 1;
542f931551bSRalph Campbell 			last = ((u32 *) ss->sge.vaddr)[w - 1];
543f931551bSRalph Campbell 			break;
544f931551bSRalph Campbell 		} else {
545f931551bSRalph Campbell 			u32 w = len >> 2;
546f931551bSRalph Campbell 
547f931551bSRalph Campbell 			qib_pio_copy(piobuf, ss->sge.vaddr, w);
548f931551bSRalph Campbell 			piobuf += w;
549f931551bSRalph Campbell 
550f931551bSRalph Campbell 			extra = len & (sizeof(u32) - 1);
551f931551bSRalph Campbell 			if (extra) {
552f931551bSRalph Campbell 				u32 v = ((u32 *) ss->sge.vaddr)[w];
553f931551bSRalph Campbell 
554f931551bSRalph Campbell 				/* Clear unused upper bytes */
555f931551bSRalph Campbell 				data = clear_upper_bytes(v, extra, 0);
556f931551bSRalph Campbell 			}
557f931551bSRalph Campbell 		}
5583fc4a090SBrian Welty 		rvt_update_sge(ss, len, false);
559f931551bSRalph Campbell 		length -= len;
560f931551bSRalph Campbell 	}
561f931551bSRalph Campbell 	/* Update address before sending packet. */
5623fc4a090SBrian Welty 	rvt_update_sge(ss, length, false);
563f931551bSRalph Campbell 	if (flush_wc) {
564f931551bSRalph Campbell 		/* must flush early everything before trigger word */
565f931551bSRalph Campbell 		qib_flush_wc();
566f931551bSRalph Campbell 		__raw_writel(last, piobuf);
567f931551bSRalph Campbell 		/* be sure trigger word is written */
568f931551bSRalph Campbell 		qib_flush_wc();
569f931551bSRalph Campbell 	} else
570f931551bSRalph Campbell 		__raw_writel(last, piobuf);
571f931551bSRalph Campbell }
572f931551bSRalph Campbell 
57348947109SMike Marciniszyn static noinline struct qib_verbs_txreq *__get_txreq(struct qib_ibdev *dev,
5747c2e11feSDennis Dalessandro 					   struct rvt_qp *qp)
575f931551bSRalph Campbell {
576ffc26907SDennis Dalessandro 	struct qib_qp_priv *priv = qp->priv;
577f931551bSRalph Campbell 	struct qib_verbs_txreq *tx;
578f931551bSRalph Campbell 	unsigned long flags;
579f931551bSRalph Campbell 
580f931551bSRalph Campbell 	spin_lock_irqsave(&qp->s_lock, flags);
581cd18201fSHarish Chegondi 	spin_lock(&dev->rdi.pending_lock);
582f931551bSRalph Campbell 
583f931551bSRalph Campbell 	if (!list_empty(&dev->txreq_free)) {
584f931551bSRalph Campbell 		struct list_head *l = dev->txreq_free.next;
585f931551bSRalph Campbell 
586f931551bSRalph Campbell 		list_del(l);
587cd18201fSHarish Chegondi 		spin_unlock(&dev->rdi.pending_lock);
58848947109SMike Marciniszyn 		spin_unlock_irqrestore(&qp->s_lock, flags);
589f931551bSRalph Campbell 		tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
590f931551bSRalph Campbell 	} else {
591db3ef0ebSHarish Chegondi 		if (ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK &&
592ffc26907SDennis Dalessandro 		    list_empty(&priv->iowait)) {
593f931551bSRalph Campbell 			dev->n_txwait++;
59401ba79d4SHarish Chegondi 			qp->s_flags |= RVT_S_WAIT_TX;
595ffc26907SDennis Dalessandro 			list_add_tail(&priv->iowait, &dev->txwait);
596f931551bSRalph Campbell 		}
59701ba79d4SHarish Chegondi 		qp->s_flags &= ~RVT_S_BUSY;
598cd18201fSHarish Chegondi 		spin_unlock(&dev->rdi.pending_lock);
599f931551bSRalph Campbell 		spin_unlock_irqrestore(&qp->s_lock, flags);
60048947109SMike Marciniszyn 		tx = ERR_PTR(-EBUSY);
60148947109SMike Marciniszyn 	}
60248947109SMike Marciniszyn 	return tx;
60348947109SMike Marciniszyn }
604f931551bSRalph Campbell 
60548947109SMike Marciniszyn static inline struct qib_verbs_txreq *get_txreq(struct qib_ibdev *dev,
6067c2e11feSDennis Dalessandro 					 struct rvt_qp *qp)
60748947109SMike Marciniszyn {
60848947109SMike Marciniszyn 	struct qib_verbs_txreq *tx;
60948947109SMike Marciniszyn 	unsigned long flags;
61048947109SMike Marciniszyn 
611cd18201fSHarish Chegondi 	spin_lock_irqsave(&dev->rdi.pending_lock, flags);
61248947109SMike Marciniszyn 	/* assume the list non empty */
61348947109SMike Marciniszyn 	if (likely(!list_empty(&dev->txreq_free))) {
61448947109SMike Marciniszyn 		struct list_head *l = dev->txreq_free.next;
61548947109SMike Marciniszyn 
61648947109SMike Marciniszyn 		list_del(l);
617cd18201fSHarish Chegondi 		spin_unlock_irqrestore(&dev->rdi.pending_lock, flags);
61848947109SMike Marciniszyn 		tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
61948947109SMike Marciniszyn 	} else {
62048947109SMike Marciniszyn 		/* call slow path to get the extra lock */
621cd18201fSHarish Chegondi 		spin_unlock_irqrestore(&dev->rdi.pending_lock, flags);
62248947109SMike Marciniszyn 		tx =  __get_txreq(dev, qp);
62348947109SMike Marciniszyn 	}
624f931551bSRalph Campbell 	return tx;
625f931551bSRalph Campbell }
626f931551bSRalph Campbell 
627f931551bSRalph Campbell void qib_put_txreq(struct qib_verbs_txreq *tx)
628f931551bSRalph Campbell {
629f931551bSRalph Campbell 	struct qib_ibdev *dev;
6307c2e11feSDennis Dalessandro 	struct rvt_qp *qp;
631ffc26907SDennis Dalessandro 	struct qib_qp_priv *priv;
632f931551bSRalph Campbell 	unsigned long flags;
633f931551bSRalph Campbell 
634f931551bSRalph Campbell 	qp = tx->qp;
635f931551bSRalph Campbell 	dev = to_idev(qp->ibqp.device);
636f931551bSRalph Campbell 
637f931551bSRalph Campbell 	if (tx->mr) {
6387c2e11feSDennis Dalessandro 		rvt_put_mr(tx->mr);
639f931551bSRalph Campbell 		tx->mr = NULL;
640f931551bSRalph Campbell 	}
641f931551bSRalph Campbell 	if (tx->txreq.flags & QIB_SDMA_TXREQ_F_FREEBUF) {
642f931551bSRalph Campbell 		tx->txreq.flags &= ~QIB_SDMA_TXREQ_F_FREEBUF;
643f931551bSRalph Campbell 		dma_unmap_single(&dd_from_dev(dev)->pcidev->dev,
644f931551bSRalph Campbell 				 tx->txreq.addr, tx->hdr_dwords << 2,
645f931551bSRalph Campbell 				 DMA_TO_DEVICE);
646f931551bSRalph Campbell 		kfree(tx->align_buf);
647f931551bSRalph Campbell 	}
648f931551bSRalph Campbell 
649cd18201fSHarish Chegondi 	spin_lock_irqsave(&dev->rdi.pending_lock, flags);
650f931551bSRalph Campbell 
651f931551bSRalph Campbell 	/* Put struct back on free list */
652f931551bSRalph Campbell 	list_add(&tx->txreq.list, &dev->txreq_free);
653f931551bSRalph Campbell 
654f931551bSRalph Campbell 	if (!list_empty(&dev->txwait)) {
655f931551bSRalph Campbell 		/* Wake up first QP wanting a free struct */
656ffc26907SDennis Dalessandro 		priv = list_entry(dev->txwait.next, struct qib_qp_priv,
657ffc26907SDennis Dalessandro 				  iowait);
658ffc26907SDennis Dalessandro 		qp = priv->owner;
659ffc26907SDennis Dalessandro 		list_del_init(&priv->iowait);
660238b1862SSebastian Sanchez 		rvt_get_qp(qp);
661cd18201fSHarish Chegondi 		spin_unlock_irqrestore(&dev->rdi.pending_lock, flags);
662f931551bSRalph Campbell 
663f931551bSRalph Campbell 		spin_lock_irqsave(&qp->s_lock, flags);
66401ba79d4SHarish Chegondi 		if (qp->s_flags & RVT_S_WAIT_TX) {
66501ba79d4SHarish Chegondi 			qp->s_flags &= ~RVT_S_WAIT_TX;
666f931551bSRalph Campbell 			qib_schedule_send(qp);
667f931551bSRalph Campbell 		}
668f931551bSRalph Campbell 		spin_unlock_irqrestore(&qp->s_lock, flags);
669f931551bSRalph Campbell 
670238b1862SSebastian Sanchez 		rvt_put_qp(qp);
671f931551bSRalph Campbell 	} else
672cd18201fSHarish Chegondi 		spin_unlock_irqrestore(&dev->rdi.pending_lock, flags);
673f931551bSRalph Campbell }
674f931551bSRalph Campbell 
675f931551bSRalph Campbell /*
676f931551bSRalph Campbell  * This is called when there are send DMA descriptors that might be
677f931551bSRalph Campbell  * available.
678f931551bSRalph Campbell  *
679f931551bSRalph Campbell  * This is called with ppd->sdma_lock held.
680f931551bSRalph Campbell  */
681f931551bSRalph Campbell void qib_verbs_sdma_desc_avail(struct qib_pportdata *ppd, unsigned avail)
682f931551bSRalph Campbell {
6832055d1f0SBart Van Assche 	struct rvt_qp *qp;
684ffc26907SDennis Dalessandro 	struct qib_qp_priv *qpp, *nqpp;
6857c2e11feSDennis Dalessandro 	struct rvt_qp *qps[20];
686f931551bSRalph Campbell 	struct qib_ibdev *dev;
687f931551bSRalph Campbell 	unsigned i, n;
688f931551bSRalph Campbell 
689f931551bSRalph Campbell 	n = 0;
690f931551bSRalph Campbell 	dev = &ppd->dd->verbs_dev;
691cd18201fSHarish Chegondi 	spin_lock(&dev->rdi.pending_lock);
692f931551bSRalph Campbell 
693f931551bSRalph Campbell 	/* Search wait list for first QP wanting DMA descriptors. */
694ffc26907SDennis Dalessandro 	list_for_each_entry_safe(qpp, nqpp, &dev->dmawait, iowait) {
695ffc26907SDennis Dalessandro 		qp = qpp->owner;
696f931551bSRalph Campbell 		if (qp->port_num != ppd->port)
697f931551bSRalph Campbell 			continue;
698f931551bSRalph Campbell 		if (n == ARRAY_SIZE(qps))
699f931551bSRalph Campbell 			break;
700ffc26907SDennis Dalessandro 		if (qpp->s_tx->txreq.sg_count > avail)
701f931551bSRalph Campbell 			break;
702ffc26907SDennis Dalessandro 		avail -= qpp->s_tx->txreq.sg_count;
703ffc26907SDennis Dalessandro 		list_del_init(&qpp->iowait);
704238b1862SSebastian Sanchez 		rvt_get_qp(qp);
705f931551bSRalph Campbell 		qps[n++] = qp;
706f931551bSRalph Campbell 	}
707f931551bSRalph Campbell 
708cd18201fSHarish Chegondi 	spin_unlock(&dev->rdi.pending_lock);
709f931551bSRalph Campbell 
710f931551bSRalph Campbell 	for (i = 0; i < n; i++) {
711f931551bSRalph Campbell 		qp = qps[i];
712f931551bSRalph Campbell 		spin_lock(&qp->s_lock);
71301ba79d4SHarish Chegondi 		if (qp->s_flags & RVT_S_WAIT_DMA_DESC) {
71401ba79d4SHarish Chegondi 			qp->s_flags &= ~RVT_S_WAIT_DMA_DESC;
715f931551bSRalph Campbell 			qib_schedule_send(qp);
716f931551bSRalph Campbell 		}
717f931551bSRalph Campbell 		spin_unlock(&qp->s_lock);
718238b1862SSebastian Sanchez 		rvt_put_qp(qp);
719f931551bSRalph Campbell 	}
720f931551bSRalph Campbell }
721f931551bSRalph Campbell 
722f931551bSRalph Campbell /*
723f931551bSRalph Campbell  * This is called with ppd->sdma_lock held.
724f931551bSRalph Campbell  */
725f931551bSRalph Campbell static void sdma_complete(struct qib_sdma_txreq *cookie, int status)
726f931551bSRalph Campbell {
727f931551bSRalph Campbell 	struct qib_verbs_txreq *tx =
728f931551bSRalph Campbell 		container_of(cookie, struct qib_verbs_txreq, txreq);
7297c2e11feSDennis Dalessandro 	struct rvt_qp *qp = tx->qp;
730ffc26907SDennis Dalessandro 	struct qib_qp_priv *priv = qp->priv;
731f931551bSRalph Campbell 
732f931551bSRalph Campbell 	spin_lock(&qp->s_lock);
733f931551bSRalph Campbell 	if (tx->wqe)
734f931551bSRalph Campbell 		qib_send_complete(qp, tx->wqe, IB_WC_SUCCESS);
735f931551bSRalph Campbell 	else if (qp->ibqp.qp_type == IB_QPT_RC) {
736261a4351SMike Marciniszyn 		struct ib_header *hdr;
737f931551bSRalph Campbell 
738f931551bSRalph Campbell 		if (tx->txreq.flags & QIB_SDMA_TXREQ_F_FREEBUF)
739f931551bSRalph Campbell 			hdr = &tx->align_buf->hdr;
740f931551bSRalph Campbell 		else {
741f931551bSRalph Campbell 			struct qib_ibdev *dev = to_idev(qp->ibqp.device);
742f931551bSRalph Campbell 
743f931551bSRalph Campbell 			hdr = &dev->pio_hdrs[tx->hdr_inx].hdr;
744f931551bSRalph Campbell 		}
745f931551bSRalph Campbell 		qib_rc_send_complete(qp, hdr);
746f931551bSRalph Campbell 	}
747ffc26907SDennis Dalessandro 	if (atomic_dec_and_test(&priv->s_dma_busy)) {
748f931551bSRalph Campbell 		if (qp->state == IB_QPS_RESET)
749ffc26907SDennis Dalessandro 			wake_up(&priv->wait_dma);
75001ba79d4SHarish Chegondi 		else if (qp->s_flags & RVT_S_WAIT_DMA) {
75101ba79d4SHarish Chegondi 			qp->s_flags &= ~RVT_S_WAIT_DMA;
752f931551bSRalph Campbell 			qib_schedule_send(qp);
753f931551bSRalph Campbell 		}
754f931551bSRalph Campbell 	}
755f931551bSRalph Campbell 	spin_unlock(&qp->s_lock);
756f931551bSRalph Campbell 
757f931551bSRalph Campbell 	qib_put_txreq(tx);
758f931551bSRalph Campbell }
759f931551bSRalph Campbell 
7607c2e11feSDennis Dalessandro static int wait_kmem(struct qib_ibdev *dev, struct rvt_qp *qp)
761f931551bSRalph Campbell {
762ffc26907SDennis Dalessandro 	struct qib_qp_priv *priv = qp->priv;
763f931551bSRalph Campbell 	unsigned long flags;
764f931551bSRalph Campbell 	int ret = 0;
765f931551bSRalph Campbell 
766f931551bSRalph Campbell 	spin_lock_irqsave(&qp->s_lock, flags);
767db3ef0ebSHarish Chegondi 	if (ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK) {
768cd18201fSHarish Chegondi 		spin_lock(&dev->rdi.pending_lock);
769ffc26907SDennis Dalessandro 		if (list_empty(&priv->iowait)) {
770f931551bSRalph Campbell 			if (list_empty(&dev->memwait))
771f931551bSRalph Campbell 				mod_timer(&dev->mem_timer, jiffies + 1);
77201ba79d4SHarish Chegondi 			qp->s_flags |= RVT_S_WAIT_KMEM;
773ffc26907SDennis Dalessandro 			list_add_tail(&priv->iowait, &dev->memwait);
774f931551bSRalph Campbell 		}
775cd18201fSHarish Chegondi 		spin_unlock(&dev->rdi.pending_lock);
77601ba79d4SHarish Chegondi 		qp->s_flags &= ~RVT_S_BUSY;
777f931551bSRalph Campbell 		ret = -EBUSY;
778f931551bSRalph Campbell 	}
779f931551bSRalph Campbell 	spin_unlock_irqrestore(&qp->s_lock, flags);
780f931551bSRalph Campbell 
781f931551bSRalph Campbell 	return ret;
782f931551bSRalph Campbell }
783f931551bSRalph Campbell 
784261a4351SMike Marciniszyn static int qib_verbs_send_dma(struct rvt_qp *qp, struct ib_header *hdr,
7857c2e11feSDennis Dalessandro 			      u32 hdrwords, struct rvt_sge_state *ss, u32 len,
786f931551bSRalph Campbell 			      u32 plen, u32 dwords)
787f931551bSRalph Campbell {
788ffc26907SDennis Dalessandro 	struct qib_qp_priv *priv = qp->priv;
789f931551bSRalph Campbell 	struct qib_ibdev *dev = to_idev(qp->ibqp.device);
790f931551bSRalph Campbell 	struct qib_devdata *dd = dd_from_dev(dev);
791f931551bSRalph Campbell 	struct qib_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
792f931551bSRalph Campbell 	struct qib_pportdata *ppd = ppd_from_ibp(ibp);
793f931551bSRalph Campbell 	struct qib_verbs_txreq *tx;
794f931551bSRalph Campbell 	struct qib_pio_header *phdr;
795f931551bSRalph Campbell 	u32 control;
796f931551bSRalph Campbell 	u32 ndesc;
797f931551bSRalph Campbell 	int ret;
798f931551bSRalph Campbell 
799ffc26907SDennis Dalessandro 	tx = priv->s_tx;
800f931551bSRalph Campbell 	if (tx) {
801ffc26907SDennis Dalessandro 		priv->s_tx = NULL;
802f931551bSRalph Campbell 		/* resend previously constructed packet */
803f931551bSRalph Campbell 		ret = qib_sdma_verbs_send(ppd, tx->ss, tx->dwords, tx);
804f931551bSRalph Campbell 		goto bail;
805f931551bSRalph Campbell 	}
806f931551bSRalph Campbell 
80748947109SMike Marciniszyn 	tx = get_txreq(dev, qp);
80848947109SMike Marciniszyn 	if (IS_ERR(tx))
80948947109SMike Marciniszyn 		goto bail_tx;
810f931551bSRalph Campbell 
811f931551bSRalph Campbell 	control = dd->f_setpbc_control(ppd, plen, qp->s_srate,
812f931551bSRalph Campbell 				       be16_to_cpu(hdr->lrh[0]) >> 12);
813f931551bSRalph Campbell 	tx->qp = qp;
814f931551bSRalph Campbell 	tx->wqe = qp->s_wqe;
815f931551bSRalph Campbell 	tx->mr = qp->s_rdma_mr;
816f931551bSRalph Campbell 	if (qp->s_rdma_mr)
817f931551bSRalph Campbell 		qp->s_rdma_mr = NULL;
818f931551bSRalph Campbell 	tx->txreq.callback = sdma_complete;
819f931551bSRalph Campbell 	if (dd->flags & QIB_HAS_SDMA_TIMEOUT)
820f931551bSRalph Campbell 		tx->txreq.flags = QIB_SDMA_TXREQ_F_HEADTOHOST;
821f931551bSRalph Campbell 	else
822f931551bSRalph Campbell 		tx->txreq.flags = QIB_SDMA_TXREQ_F_INTREQ;
823f931551bSRalph Campbell 	if (plen + 1 > dd->piosize2kmax_dwords)
824f931551bSRalph Campbell 		tx->txreq.flags |= QIB_SDMA_TXREQ_F_USELARGEBUF;
825f931551bSRalph Campbell 
826f931551bSRalph Campbell 	if (len) {
827f931551bSRalph Campbell 		/*
828f931551bSRalph Campbell 		 * Don't try to DMA if it takes more descriptors than
829f931551bSRalph Campbell 		 * the queue holds.
830f931551bSRalph Campbell 		 */
831f931551bSRalph Campbell 		ndesc = qib_count_sge(ss, len);
832f931551bSRalph Campbell 		if (ndesc >= ppd->sdma_descq_cnt)
833f931551bSRalph Campbell 			ndesc = 0;
834f931551bSRalph Campbell 	} else
835f931551bSRalph Campbell 		ndesc = 1;
836f931551bSRalph Campbell 	if (ndesc) {
837f931551bSRalph Campbell 		phdr = &dev->pio_hdrs[tx->hdr_inx];
838f931551bSRalph Campbell 		phdr->pbc[0] = cpu_to_le32(plen);
839f931551bSRalph Campbell 		phdr->pbc[1] = cpu_to_le32(control);
840f931551bSRalph Campbell 		memcpy(&phdr->hdr, hdr, hdrwords << 2);
841f931551bSRalph Campbell 		tx->txreq.flags |= QIB_SDMA_TXREQ_F_FREEDESC;
842f931551bSRalph Campbell 		tx->txreq.sg_count = ndesc;
843f931551bSRalph Campbell 		tx->txreq.addr = dev->pio_hdrs_phys +
844f931551bSRalph Campbell 			tx->hdr_inx * sizeof(struct qib_pio_header);
845f931551bSRalph Campbell 		tx->hdr_dwords = hdrwords + 2; /* add PBC length */
846f931551bSRalph Campbell 		ret = qib_sdma_verbs_send(ppd, ss, dwords, tx);
847f931551bSRalph Campbell 		goto bail;
848f931551bSRalph Campbell 	}
849f931551bSRalph Campbell 
850f931551bSRalph Campbell 	/* Allocate a buffer and copy the header and payload to it. */
851f931551bSRalph Campbell 	tx->hdr_dwords = plen + 1;
852f931551bSRalph Campbell 	phdr = kmalloc(tx->hdr_dwords << 2, GFP_ATOMIC);
853f931551bSRalph Campbell 	if (!phdr)
854f931551bSRalph Campbell 		goto err_tx;
855f931551bSRalph Campbell 	phdr->pbc[0] = cpu_to_le32(plen);
856f931551bSRalph Campbell 	phdr->pbc[1] = cpu_to_le32(control);
857f931551bSRalph Campbell 	memcpy(&phdr->hdr, hdr, hdrwords << 2);
858f931551bSRalph Campbell 	qib_copy_from_sge((u32 *) &phdr->hdr + hdrwords, ss, len);
859f931551bSRalph Campbell 
860f931551bSRalph Campbell 	tx->txreq.addr = dma_map_single(&dd->pcidev->dev, phdr,
861f931551bSRalph Campbell 					tx->hdr_dwords << 2, DMA_TO_DEVICE);
862f931551bSRalph Campbell 	if (dma_mapping_error(&dd->pcidev->dev, tx->txreq.addr))
863f931551bSRalph Campbell 		goto map_err;
864f931551bSRalph Campbell 	tx->align_buf = phdr;
865f931551bSRalph Campbell 	tx->txreq.flags |= QIB_SDMA_TXREQ_F_FREEBUF;
866f931551bSRalph Campbell 	tx->txreq.sg_count = 1;
867f931551bSRalph Campbell 	ret = qib_sdma_verbs_send(ppd, NULL, 0, tx);
868f931551bSRalph Campbell 	goto unaligned;
869f931551bSRalph Campbell 
870f931551bSRalph Campbell map_err:
871f931551bSRalph Campbell 	kfree(phdr);
872f931551bSRalph Campbell err_tx:
873f931551bSRalph Campbell 	qib_put_txreq(tx);
874f931551bSRalph Campbell 	ret = wait_kmem(dev, qp);
875f931551bSRalph Campbell unaligned:
876f24a6d48SHarish Chegondi 	ibp->rvp.n_unaligned++;
877f931551bSRalph Campbell bail:
878f931551bSRalph Campbell 	return ret;
87948947109SMike Marciniszyn bail_tx:
88048947109SMike Marciniszyn 	ret = PTR_ERR(tx);
88148947109SMike Marciniszyn 	goto bail;
882f931551bSRalph Campbell }
883f931551bSRalph Campbell 
884f931551bSRalph Campbell /*
885f931551bSRalph Campbell  * If we are now in the error state, return zero to flush the
886f931551bSRalph Campbell  * send work request.
887f931551bSRalph Campbell  */
8887c2e11feSDennis Dalessandro static int no_bufs_available(struct rvt_qp *qp)
889f931551bSRalph Campbell {
890ffc26907SDennis Dalessandro 	struct qib_qp_priv *priv = qp->priv;
891f931551bSRalph Campbell 	struct qib_ibdev *dev = to_idev(qp->ibqp.device);
892f931551bSRalph Campbell 	struct qib_devdata *dd;
893f931551bSRalph Campbell 	unsigned long flags;
894f931551bSRalph Campbell 	int ret = 0;
895f931551bSRalph Campbell 
896f931551bSRalph Campbell 	/*
897f931551bSRalph Campbell 	 * Note that as soon as want_buffer() is called and
898f931551bSRalph Campbell 	 * possibly before it returns, qib_ib_piobufavail()
899f931551bSRalph Campbell 	 * could be called. Therefore, put QP on the I/O wait list before
900f931551bSRalph Campbell 	 * enabling the PIO avail interrupt.
901f931551bSRalph Campbell 	 */
902f931551bSRalph Campbell 	spin_lock_irqsave(&qp->s_lock, flags);
903db3ef0ebSHarish Chegondi 	if (ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK) {
904cd18201fSHarish Chegondi 		spin_lock(&dev->rdi.pending_lock);
905ffc26907SDennis Dalessandro 		if (list_empty(&priv->iowait)) {
906f931551bSRalph Campbell 			dev->n_piowait++;
90701ba79d4SHarish Chegondi 			qp->s_flags |= RVT_S_WAIT_PIO;
908ffc26907SDennis Dalessandro 			list_add_tail(&priv->iowait, &dev->piowait);
909f931551bSRalph Campbell 			dd = dd_from_dev(dev);
910f931551bSRalph Campbell 			dd->f_wantpiobuf_intr(dd, 1);
911f931551bSRalph Campbell 		}
912cd18201fSHarish Chegondi 		spin_unlock(&dev->rdi.pending_lock);
91301ba79d4SHarish Chegondi 		qp->s_flags &= ~RVT_S_BUSY;
914f931551bSRalph Campbell 		ret = -EBUSY;
915f931551bSRalph Campbell 	}
916f931551bSRalph Campbell 	spin_unlock_irqrestore(&qp->s_lock, flags);
917f931551bSRalph Campbell 	return ret;
918f931551bSRalph Campbell }
919f931551bSRalph Campbell 
920261a4351SMike Marciniszyn static int qib_verbs_send_pio(struct rvt_qp *qp, struct ib_header *ibhdr,
9217c2e11feSDennis Dalessandro 			      u32 hdrwords, struct rvt_sge_state *ss, u32 len,
922f931551bSRalph Campbell 			      u32 plen, u32 dwords)
923f931551bSRalph Campbell {
924f931551bSRalph Campbell 	struct qib_devdata *dd = dd_from_ibdev(qp->ibqp.device);
925f931551bSRalph Campbell 	struct qib_pportdata *ppd = dd->pport + qp->port_num - 1;
926f931551bSRalph Campbell 	u32 *hdr = (u32 *) ibhdr;
927f931551bSRalph Campbell 	u32 __iomem *piobuf_orig;
928f931551bSRalph Campbell 	u32 __iomem *piobuf;
929f931551bSRalph Campbell 	u64 pbc;
930f931551bSRalph Campbell 	unsigned long flags;
931f931551bSRalph Campbell 	unsigned flush_wc;
932f931551bSRalph Campbell 	u32 control;
933f931551bSRalph Campbell 	u32 pbufn;
934f931551bSRalph Campbell 
935f931551bSRalph Campbell 	control = dd->f_setpbc_control(ppd, plen, qp->s_srate,
936f931551bSRalph Campbell 		be16_to_cpu(ibhdr->lrh[0]) >> 12);
937f931551bSRalph Campbell 	pbc = ((u64) control << 32) | plen;
938f931551bSRalph Campbell 	piobuf = dd->f_getsendbuf(ppd, pbc, &pbufn);
939f931551bSRalph Campbell 	if (unlikely(piobuf == NULL))
940f931551bSRalph Campbell 		return no_bufs_available(qp);
941f931551bSRalph Campbell 
942f931551bSRalph Campbell 	/*
943f931551bSRalph Campbell 	 * Write the pbc.
944f931551bSRalph Campbell 	 * We have to flush after the PBC for correctness on some cpus
945f931551bSRalph Campbell 	 * or WC buffer can be written out of order.
946f931551bSRalph Campbell 	 */
947f931551bSRalph Campbell 	writeq(pbc, piobuf);
948f931551bSRalph Campbell 	piobuf_orig = piobuf;
949f931551bSRalph Campbell 	piobuf += 2;
950f931551bSRalph Campbell 
951f931551bSRalph Campbell 	flush_wc = dd->flags & QIB_PIO_FLUSH_WC;
952f931551bSRalph Campbell 	if (len == 0) {
953f931551bSRalph Campbell 		/*
954f931551bSRalph Campbell 		 * If there is just the header portion, must flush before
955f931551bSRalph Campbell 		 * writing last word of header for correctness, and after
956f931551bSRalph Campbell 		 * the last header word (trigger word).
957f931551bSRalph Campbell 		 */
958f931551bSRalph Campbell 		if (flush_wc) {
959f931551bSRalph Campbell 			qib_flush_wc();
960f931551bSRalph Campbell 			qib_pio_copy(piobuf, hdr, hdrwords - 1);
961f931551bSRalph Campbell 			qib_flush_wc();
962f931551bSRalph Campbell 			__raw_writel(hdr[hdrwords - 1], piobuf + hdrwords - 1);
963f931551bSRalph Campbell 			qib_flush_wc();
964f931551bSRalph Campbell 		} else
965f931551bSRalph Campbell 			qib_pio_copy(piobuf, hdr, hdrwords);
966f931551bSRalph Campbell 		goto done;
967f931551bSRalph Campbell 	}
968f931551bSRalph Campbell 
969f931551bSRalph Campbell 	if (flush_wc)
970f931551bSRalph Campbell 		qib_flush_wc();
971f931551bSRalph Campbell 	qib_pio_copy(piobuf, hdr, hdrwords);
972f931551bSRalph Campbell 	piobuf += hdrwords;
973f931551bSRalph Campbell 
974f931551bSRalph Campbell 	/* The common case is aligned and contained in one segment. */
975f931551bSRalph Campbell 	if (likely(ss->num_sge == 1 && len <= ss->sge.length &&
976f931551bSRalph Campbell 		   !((unsigned long)ss->sge.vaddr & (sizeof(u32) - 1)))) {
977f931551bSRalph Campbell 		u32 *addr = (u32 *) ss->sge.vaddr;
978f931551bSRalph Campbell 
979f931551bSRalph Campbell 		/* Update address before sending packet. */
9803fc4a090SBrian Welty 		rvt_update_sge(ss, len, false);
981f931551bSRalph Campbell 		if (flush_wc) {
982f931551bSRalph Campbell 			qib_pio_copy(piobuf, addr, dwords - 1);
983f931551bSRalph Campbell 			/* must flush early everything before trigger word */
984f931551bSRalph Campbell 			qib_flush_wc();
985f931551bSRalph Campbell 			__raw_writel(addr[dwords - 1], piobuf + dwords - 1);
986f931551bSRalph Campbell 			/* be sure trigger word is written */
987f931551bSRalph Campbell 			qib_flush_wc();
988f931551bSRalph Campbell 		} else
989f931551bSRalph Campbell 			qib_pio_copy(piobuf, addr, dwords);
990f931551bSRalph Campbell 		goto done;
991f931551bSRalph Campbell 	}
992f931551bSRalph Campbell 	copy_io(piobuf, ss, len, flush_wc);
993f931551bSRalph Campbell done:
994f931551bSRalph Campbell 	if (dd->flags & QIB_USE_SPCL_TRIG) {
995f931551bSRalph Campbell 		u32 spcl_off = (pbufn >= dd->piobcnt2k) ? 2047 : 1023;
996da12c1f6SMike Marciniszyn 
997f931551bSRalph Campbell 		qib_flush_wc();
998f931551bSRalph Campbell 		__raw_writel(0xaebecede, piobuf_orig + spcl_off);
999f931551bSRalph Campbell 	}
1000f931551bSRalph Campbell 	qib_sendbuf_done(dd, pbufn);
1001f931551bSRalph Campbell 	if (qp->s_rdma_mr) {
10027c2e11feSDennis Dalessandro 		rvt_put_mr(qp->s_rdma_mr);
1003f931551bSRalph Campbell 		qp->s_rdma_mr = NULL;
1004f931551bSRalph Campbell 	}
1005f931551bSRalph Campbell 	if (qp->s_wqe) {
1006f931551bSRalph Campbell 		spin_lock_irqsave(&qp->s_lock, flags);
1007f931551bSRalph Campbell 		qib_send_complete(qp, qp->s_wqe, IB_WC_SUCCESS);
1008f931551bSRalph Campbell 		spin_unlock_irqrestore(&qp->s_lock, flags);
1009f931551bSRalph Campbell 	} else if (qp->ibqp.qp_type == IB_QPT_RC) {
1010f931551bSRalph Campbell 		spin_lock_irqsave(&qp->s_lock, flags);
1011f931551bSRalph Campbell 		qib_rc_send_complete(qp, ibhdr);
1012f931551bSRalph Campbell 		spin_unlock_irqrestore(&qp->s_lock, flags);
1013f931551bSRalph Campbell 	}
1014f931551bSRalph Campbell 	return 0;
1015f931551bSRalph Campbell }
1016f931551bSRalph Campbell 
1017f931551bSRalph Campbell /**
1018f931551bSRalph Campbell  * qib_verbs_send - send a packet
1019f931551bSRalph Campbell  * @qp: the QP to send on
1020f931551bSRalph Campbell  * @hdr: the packet header
1021f931551bSRalph Campbell  * @hdrwords: the number of 32-bit words in the header
1022f931551bSRalph Campbell  * @ss: the SGE to send
1023f931551bSRalph Campbell  * @len: the length of the packet in bytes
1024f931551bSRalph Campbell  *
1025f931551bSRalph Campbell  * Return zero if packet is sent or queued OK.
102601ba79d4SHarish Chegondi  * Return non-zero and clear qp->s_flags RVT_S_BUSY otherwise.
1027f931551bSRalph Campbell  */
1028261a4351SMike Marciniszyn int qib_verbs_send(struct rvt_qp *qp, struct ib_header *hdr,
10297c2e11feSDennis Dalessandro 		   u32 hdrwords, struct rvt_sge_state *ss, u32 len)
1030f931551bSRalph Campbell {
1031f931551bSRalph Campbell 	struct qib_devdata *dd = dd_from_ibdev(qp->ibqp.device);
1032f931551bSRalph Campbell 	u32 plen;
1033f931551bSRalph Campbell 	int ret;
1034f931551bSRalph Campbell 	u32 dwords = (len + 3) >> 2;
1035f931551bSRalph Campbell 
1036f931551bSRalph Campbell 	/*
1037f931551bSRalph Campbell 	 * Calculate the send buffer trigger address.
1038f931551bSRalph Campbell 	 * The +1 counts for the pbc control dword following the pbc length.
1039f931551bSRalph Campbell 	 */
1040f931551bSRalph Campbell 	plen = hdrwords + dwords + 1;
1041f931551bSRalph Campbell 
1042f931551bSRalph Campbell 	/*
1043f931551bSRalph Campbell 	 * VL15 packets (IB_QPT_SMI) will always use PIO, so we
1044f931551bSRalph Campbell 	 * can defer SDMA restart until link goes ACTIVE without
1045f931551bSRalph Campbell 	 * worrying about just how we got there.
1046f931551bSRalph Campbell 	 */
1047f931551bSRalph Campbell 	if (qp->ibqp.qp_type == IB_QPT_SMI ||
1048f931551bSRalph Campbell 	    !(dd->flags & QIB_HAS_SEND_DMA))
1049f931551bSRalph Campbell 		ret = qib_verbs_send_pio(qp, hdr, hdrwords, ss, len,
1050f931551bSRalph Campbell 					 plen, dwords);
1051f931551bSRalph Campbell 	else
1052f931551bSRalph Campbell 		ret = qib_verbs_send_dma(qp, hdr, hdrwords, ss, len,
1053f931551bSRalph Campbell 					 plen, dwords);
1054f931551bSRalph Campbell 
1055f931551bSRalph Campbell 	return ret;
1056f931551bSRalph Campbell }
1057f931551bSRalph Campbell 
1058f931551bSRalph Campbell int qib_snapshot_counters(struct qib_pportdata *ppd, u64 *swords,
1059f931551bSRalph Campbell 			  u64 *rwords, u64 *spkts, u64 *rpkts,
1060f931551bSRalph Campbell 			  u64 *xmit_wait)
1061f931551bSRalph Campbell {
1062f931551bSRalph Campbell 	int ret;
1063f931551bSRalph Campbell 	struct qib_devdata *dd = ppd->dd;
1064f931551bSRalph Campbell 
1065f931551bSRalph Campbell 	if (!(dd->flags & QIB_PRESENT)) {
1066f931551bSRalph Campbell 		/* no hardware, freeze, etc. */
1067f931551bSRalph Campbell 		ret = -EINVAL;
1068f931551bSRalph Campbell 		goto bail;
1069f931551bSRalph Campbell 	}
1070f931551bSRalph Campbell 	*swords = dd->f_portcntr(ppd, QIBPORTCNTR_WORDSEND);
1071f931551bSRalph Campbell 	*rwords = dd->f_portcntr(ppd, QIBPORTCNTR_WORDRCV);
1072f931551bSRalph Campbell 	*spkts = dd->f_portcntr(ppd, QIBPORTCNTR_PKTSEND);
1073f931551bSRalph Campbell 	*rpkts = dd->f_portcntr(ppd, QIBPORTCNTR_PKTRCV);
1074f931551bSRalph Campbell 	*xmit_wait = dd->f_portcntr(ppd, QIBPORTCNTR_SENDSTALL);
1075f931551bSRalph Campbell 
1076f931551bSRalph Campbell 	ret = 0;
1077f931551bSRalph Campbell 
1078f931551bSRalph Campbell bail:
1079f931551bSRalph Campbell 	return ret;
1080f931551bSRalph Campbell }
1081f931551bSRalph Campbell 
1082f931551bSRalph Campbell /**
1083f931551bSRalph Campbell  * qib_get_counters - get various chip counters
1084f931551bSRalph Campbell  * @dd: the qlogic_ib device
1085f931551bSRalph Campbell  * @cntrs: counters are placed here
1086f931551bSRalph Campbell  *
1087f931551bSRalph Campbell  * Return the counters needed by recv_pma_get_portcounters().
1088f931551bSRalph Campbell  */
1089f931551bSRalph Campbell int qib_get_counters(struct qib_pportdata *ppd,
1090f931551bSRalph Campbell 		     struct qib_verbs_counters *cntrs)
1091f931551bSRalph Campbell {
1092f931551bSRalph Campbell 	int ret;
1093f931551bSRalph Campbell 
1094f931551bSRalph Campbell 	if (!(ppd->dd->flags & QIB_PRESENT)) {
1095f931551bSRalph Campbell 		/* no hardware, freeze, etc. */
1096f931551bSRalph Campbell 		ret = -EINVAL;
1097f931551bSRalph Campbell 		goto bail;
1098f931551bSRalph Campbell 	}
1099f931551bSRalph Campbell 	cntrs->symbol_error_counter =
1100f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_IBSYMBOLERR);
1101f931551bSRalph Campbell 	cntrs->link_error_recovery_counter =
1102f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_IBLINKERRRECOV);
1103f931551bSRalph Campbell 	/*
1104f931551bSRalph Campbell 	 * The link downed counter counts when the other side downs the
1105f931551bSRalph Campbell 	 * connection.  We add in the number of times we downed the link
1106f931551bSRalph Campbell 	 * due to local link integrity errors to compensate.
1107f931551bSRalph Campbell 	 */
1108f931551bSRalph Campbell 	cntrs->link_downed_counter =
1109f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_IBLINKDOWN);
1110f931551bSRalph Campbell 	cntrs->port_rcv_errors =
1111f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RXDROPPKT) +
1112f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RCVOVFL) +
1113f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERR_RLEN) +
1114f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_INVALIDRLEN) +
1115f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRLINK) +
1116f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRICRC) +
1117f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRVCRC) +
1118f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_ERRLPCRC) +
1119f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_BADFORMAT);
1120f931551bSRalph Campbell 	cntrs->port_rcv_errors +=
1121f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RXLOCALPHYERR);
1122f931551bSRalph Campbell 	cntrs->port_rcv_errors +=
1123f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RXVLERR);
1124f931551bSRalph Campbell 	cntrs->port_rcv_remphys_errors =
1125f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_RCVEBP);
1126f931551bSRalph Campbell 	cntrs->port_xmit_discards =
1127f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_UNSUPVL);
1128f931551bSRalph Campbell 	cntrs->port_xmit_data = ppd->dd->f_portcntr(ppd,
1129f931551bSRalph Campbell 			QIBPORTCNTR_WORDSEND);
1130f931551bSRalph Campbell 	cntrs->port_rcv_data = ppd->dd->f_portcntr(ppd,
1131f931551bSRalph Campbell 			QIBPORTCNTR_WORDRCV);
1132f931551bSRalph Campbell 	cntrs->port_xmit_packets = ppd->dd->f_portcntr(ppd,
1133f931551bSRalph Campbell 			QIBPORTCNTR_PKTSEND);
1134f931551bSRalph Campbell 	cntrs->port_rcv_packets = ppd->dd->f_portcntr(ppd,
1135f931551bSRalph Campbell 			QIBPORTCNTR_PKTRCV);
1136f931551bSRalph Campbell 	cntrs->local_link_integrity_errors =
1137f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_LLI);
1138f931551bSRalph Campbell 	cntrs->excessive_buffer_overrun_errors =
1139f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_EXCESSBUFOVFL);
1140f931551bSRalph Campbell 	cntrs->vl15_dropped =
1141f931551bSRalph Campbell 		ppd->dd->f_portcntr(ppd, QIBPORTCNTR_VL15PKTDROP);
1142f931551bSRalph Campbell 
1143f931551bSRalph Campbell 	ret = 0;
1144f931551bSRalph Campbell 
1145f931551bSRalph Campbell bail:
1146f931551bSRalph Campbell 	return ret;
1147f931551bSRalph Campbell }
1148f931551bSRalph Campbell 
1149f931551bSRalph Campbell /**
1150f931551bSRalph Campbell  * qib_ib_piobufavail - callback when a PIO buffer is available
1151f931551bSRalph Campbell  * @dd: the device pointer
1152f931551bSRalph Campbell  *
1153f931551bSRalph Campbell  * This is called from qib_intr() at interrupt level when a PIO buffer is
1154f931551bSRalph Campbell  * available after qib_verbs_send() returned an error that no buffers were
1155f931551bSRalph Campbell  * available. Disable the interrupt if there are no more QPs waiting.
1156f931551bSRalph Campbell  */
1157f931551bSRalph Campbell void qib_ib_piobufavail(struct qib_devdata *dd)
1158f931551bSRalph Campbell {
1159f931551bSRalph Campbell 	struct qib_ibdev *dev = &dd->verbs_dev;
1160f931551bSRalph Campbell 	struct list_head *list;
11617c2e11feSDennis Dalessandro 	struct rvt_qp *qps[5];
11627c2e11feSDennis Dalessandro 	struct rvt_qp *qp;
1163f931551bSRalph Campbell 	unsigned long flags;
1164f931551bSRalph Campbell 	unsigned i, n;
1165ffc26907SDennis Dalessandro 	struct qib_qp_priv *priv;
1166f931551bSRalph Campbell 
1167f931551bSRalph Campbell 	list = &dev->piowait;
1168f931551bSRalph Campbell 	n = 0;
1169f931551bSRalph Campbell 
1170f931551bSRalph Campbell 	/*
1171f931551bSRalph Campbell 	 * Note: checking that the piowait list is empty and clearing
1172f931551bSRalph Campbell 	 * the buffer available interrupt needs to be atomic or we
1173f931551bSRalph Campbell 	 * could end up with QPs on the wait list with the interrupt
1174f931551bSRalph Campbell 	 * disabled.
1175f931551bSRalph Campbell 	 */
1176cd18201fSHarish Chegondi 	spin_lock_irqsave(&dev->rdi.pending_lock, flags);
1177f931551bSRalph Campbell 	while (!list_empty(list)) {
1178f931551bSRalph Campbell 		if (n == ARRAY_SIZE(qps))
1179f931551bSRalph Campbell 			goto full;
1180ffc26907SDennis Dalessandro 		priv = list_entry(list->next, struct qib_qp_priv, iowait);
1181ffc26907SDennis Dalessandro 		qp = priv->owner;
1182ffc26907SDennis Dalessandro 		list_del_init(&priv->iowait);
1183238b1862SSebastian Sanchez 		rvt_get_qp(qp);
1184f931551bSRalph Campbell 		qps[n++] = qp;
1185f931551bSRalph Campbell 	}
1186f931551bSRalph Campbell 	dd->f_wantpiobuf_intr(dd, 0);
1187f931551bSRalph Campbell full:
1188cd18201fSHarish Chegondi 	spin_unlock_irqrestore(&dev->rdi.pending_lock, flags);
1189f931551bSRalph Campbell 
1190f931551bSRalph Campbell 	for (i = 0; i < n; i++) {
1191f931551bSRalph Campbell 		qp = qps[i];
1192f931551bSRalph Campbell 
1193f931551bSRalph Campbell 		spin_lock_irqsave(&qp->s_lock, flags);
119401ba79d4SHarish Chegondi 		if (qp->s_flags & RVT_S_WAIT_PIO) {
119501ba79d4SHarish Chegondi 			qp->s_flags &= ~RVT_S_WAIT_PIO;
1196f931551bSRalph Campbell 			qib_schedule_send(qp);
1197f931551bSRalph Campbell 		}
1198f931551bSRalph Campbell 		spin_unlock_irqrestore(&qp->s_lock, flags);
1199f931551bSRalph Campbell 
1200f931551bSRalph Campbell 		/* Notify qib_destroy_qp() if it is waiting. */
1201238b1862SSebastian Sanchez 		rvt_put_qp(qp);
1202f931551bSRalph Campbell 	}
1203f931551bSRalph Campbell }
1204f931551bSRalph Campbell 
1205530a5d8eSHarish Chegondi static int qib_query_port(struct rvt_dev_info *rdi, u8 port_num,
1206f931551bSRalph Campbell 			  struct ib_port_attr *props)
1207f931551bSRalph Campbell {
1208530a5d8eSHarish Chegondi 	struct qib_ibdev *ibdev = container_of(rdi, struct qib_ibdev, rdi);
1209530a5d8eSHarish Chegondi 	struct qib_devdata *dd = dd_from_dev(ibdev);
1210530a5d8eSHarish Chegondi 	struct qib_pportdata *ppd = &dd->pport[port_num - 1];
1211f931551bSRalph Campbell 	enum ib_mtu mtu;
1212f931551bSRalph Campbell 	u16 lid = ppd->lid;
1213f931551bSRalph Campbell 
1214c4550c63SOr Gerlitz 	/* props being zeroed by the caller, avoid zeroing it here */
1215f931551bSRalph Campbell 	props->lid = lid ? lid : be16_to_cpu(IB_LID_PERMISSIVE);
1216f931551bSRalph Campbell 	props->lmc = ppd->lmc;
1217f931551bSRalph Campbell 	props->state = dd->f_iblink_state(ppd->lastibcstat);
1218f931551bSRalph Campbell 	props->phys_state = dd->f_ibphys_portstate(ppd->lastibcstat);
1219f931551bSRalph Campbell 	props->gid_tbl_len = QIB_GUIDS_PER_PORT;
1220f931551bSRalph Campbell 	props->active_width = ppd->link_width_active;
1221f931551bSRalph Campbell 	/* See rate_show() */
1222f931551bSRalph Campbell 	props->active_speed = ppd->link_speed_active;
1223f931551bSRalph Campbell 	props->max_vl_num = qib_num_vls(ppd->vls_supported);
1224f931551bSRalph Campbell 
1225f931551bSRalph Campbell 	props->max_mtu = qib_ibmtu ? qib_ibmtu : IB_MTU_4096;
1226f931551bSRalph Campbell 	switch (ppd->ibmtu) {
1227f931551bSRalph Campbell 	case 4096:
1228f931551bSRalph Campbell 		mtu = IB_MTU_4096;
1229f931551bSRalph Campbell 		break;
1230f931551bSRalph Campbell 	case 2048:
1231f931551bSRalph Campbell 		mtu = IB_MTU_2048;
1232f931551bSRalph Campbell 		break;
1233f931551bSRalph Campbell 	case 1024:
1234f931551bSRalph Campbell 		mtu = IB_MTU_1024;
1235f931551bSRalph Campbell 		break;
1236f931551bSRalph Campbell 	case 512:
1237f931551bSRalph Campbell 		mtu = IB_MTU_512;
1238f931551bSRalph Campbell 		break;
1239f931551bSRalph Campbell 	case 256:
1240f931551bSRalph Campbell 		mtu = IB_MTU_256;
1241f931551bSRalph Campbell 		break;
1242f931551bSRalph Campbell 	default:
1243f931551bSRalph Campbell 		mtu = IB_MTU_2048;
1244f931551bSRalph Campbell 	}
1245f931551bSRalph Campbell 	props->active_mtu = mtu;
1246f931551bSRalph Campbell 
1247f931551bSRalph Campbell 	return 0;
1248f931551bSRalph Campbell }
1249f931551bSRalph Campbell 
1250f931551bSRalph Campbell static int qib_modify_device(struct ib_device *device,
1251f931551bSRalph Campbell 			     int device_modify_mask,
1252f931551bSRalph Campbell 			     struct ib_device_modify *device_modify)
1253f931551bSRalph Campbell {
1254f931551bSRalph Campbell 	struct qib_devdata *dd = dd_from_ibdev(device);
1255f931551bSRalph Campbell 	unsigned i;
1256f931551bSRalph Campbell 	int ret;
1257f931551bSRalph Campbell 
1258f931551bSRalph Campbell 	if (device_modify_mask & ~(IB_DEVICE_MODIFY_SYS_IMAGE_GUID |
1259f931551bSRalph Campbell 				   IB_DEVICE_MODIFY_NODE_DESC)) {
1260f931551bSRalph Campbell 		ret = -EOPNOTSUPP;
1261f931551bSRalph Campbell 		goto bail;
1262f931551bSRalph Campbell 	}
1263f931551bSRalph Campbell 
1264f931551bSRalph Campbell 	if (device_modify_mask & IB_DEVICE_MODIFY_NODE_DESC) {
1265bd99fdeaSYuval Shaia 		memcpy(device->node_desc, device_modify->node_desc,
1266bd99fdeaSYuval Shaia 		       IB_DEVICE_NODE_DESC_MAX);
1267f931551bSRalph Campbell 		for (i = 0; i < dd->num_pports; i++) {
1268f931551bSRalph Campbell 			struct qib_ibport *ibp = &dd->pport[i].ibport_data;
1269f931551bSRalph Campbell 
1270f931551bSRalph Campbell 			qib_node_desc_chg(ibp);
1271f931551bSRalph Campbell 		}
1272f931551bSRalph Campbell 	}
1273f931551bSRalph Campbell 
1274f931551bSRalph Campbell 	if (device_modify_mask & IB_DEVICE_MODIFY_SYS_IMAGE_GUID) {
1275f931551bSRalph Campbell 		ib_qib_sys_image_guid =
1276f931551bSRalph Campbell 			cpu_to_be64(device_modify->sys_image_guid);
1277f931551bSRalph Campbell 		for (i = 0; i < dd->num_pports; i++) {
1278f931551bSRalph Campbell 			struct qib_ibport *ibp = &dd->pport[i].ibport_data;
1279f931551bSRalph Campbell 
1280f931551bSRalph Campbell 			qib_sys_guid_chg(ibp);
1281f931551bSRalph Campbell 		}
1282f931551bSRalph Campbell 	}
1283f931551bSRalph Campbell 
1284f931551bSRalph Campbell 	ret = 0;
1285f931551bSRalph Campbell 
1286f931551bSRalph Campbell bail:
1287f931551bSRalph Campbell 	return ret;
1288f931551bSRalph Campbell }
1289f931551bSRalph Campbell 
129020f333b6SHarish Chegondi static int qib_shut_down_port(struct rvt_dev_info *rdi, u8 port_num)
1291f931551bSRalph Campbell {
1292530a5d8eSHarish Chegondi 	struct qib_ibdev *ibdev = container_of(rdi, struct qib_ibdev, rdi);
1293530a5d8eSHarish Chegondi 	struct qib_devdata *dd = dd_from_dev(ibdev);
1294530a5d8eSHarish Chegondi 	struct qib_pportdata *ppd = &dd->pport[port_num - 1];
1295f931551bSRalph Campbell 
1296f931551bSRalph Campbell 	qib_set_linkstate(ppd, QIB_IB_LINKDOWN);
1297530a5d8eSHarish Chegondi 
1298f931551bSRalph Campbell 	return 0;
1299f931551bSRalph Campbell }
1300f931551bSRalph Campbell 
130123667546SDennis Dalessandro static int qib_get_guid_be(struct rvt_dev_info *rdi, struct rvt_ibport *rvp,
130223667546SDennis Dalessandro 			   int guid_index, __be64 *guid)
1303f931551bSRalph Campbell {
130423667546SDennis Dalessandro 	struct qib_ibport *ibp = container_of(rvp, struct qib_ibport, rvp);
1305f931551bSRalph Campbell 	struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1306f931551bSRalph Campbell 
130723667546SDennis Dalessandro 	if (guid_index == 0)
130823667546SDennis Dalessandro 		*guid = ppd->guid;
130923667546SDennis Dalessandro 	else if (guid_index < QIB_GUIDS_PER_PORT)
131023667546SDennis Dalessandro 		*guid = ibp->guids[guid_index - 1];
1311f931551bSRalph Campbell 	else
131223667546SDennis Dalessandro 		return -EINVAL;
1313f931551bSRalph Campbell 
131423667546SDennis Dalessandro 	return 0;
1315f931551bSRalph Campbell }
1316f931551bSRalph Campbell 
131790898850SDasaratharaman Chandramouli int qib_check_ah(struct ib_device *ibdev, struct rdma_ah_attr *ah_attr)
1318f931551bSRalph Campbell {
1319d8966fcdSDasaratharaman Chandramouli 	if (rdma_ah_get_sl(ah_attr) > 15)
1320f931551bSRalph Campbell 		return -EINVAL;
1321f931551bSRalph Campbell 
132213c19222SDon Hiatt 	if (rdma_ah_get_dlid(ah_attr) == 0)
132313c19222SDon Hiatt 		return -EINVAL;
132413c19222SDon Hiatt 	if (rdma_ah_get_dlid(ah_attr) >=
132513c19222SDon Hiatt 		be16_to_cpu(IB_MULTICAST_LID_BASE) &&
132613c19222SDon Hiatt 	    rdma_ah_get_dlid(ah_attr) !=
132713c19222SDon Hiatt 		be16_to_cpu(IB_LID_PERMISSIVE) &&
132813c19222SDon Hiatt 	    !(rdma_ah_get_ah_flags(ah_attr) & IB_AH_GRH))
132913c19222SDon Hiatt 		return -EINVAL;
133013c19222SDon Hiatt 
133196ab1ac1SDennis Dalessandro 	return 0;
1332f931551bSRalph Campbell }
1333f931551bSRalph Campbell 
13345418a5abSHarish Chegondi static void qib_notify_new_ah(struct ib_device *ibdev,
133590898850SDasaratharaman Chandramouli 			      struct rdma_ah_attr *ah_attr,
13365418a5abSHarish Chegondi 			      struct rvt_ah *ah)
13375418a5abSHarish Chegondi {
13385418a5abSHarish Chegondi 	struct qib_ibport *ibp;
13395418a5abSHarish Chegondi 	struct qib_pportdata *ppd;
13405418a5abSHarish Chegondi 
13415418a5abSHarish Chegondi 	/*
13425418a5abSHarish Chegondi 	 * Do not trust reading anything from rvt_ah at this point as it is not
13435418a5abSHarish Chegondi 	 * done being setup. We can however modify things which we need to set.
13445418a5abSHarish Chegondi 	 */
13455418a5abSHarish Chegondi 
1346d8966fcdSDasaratharaman Chandramouli 	ibp = to_iport(ibdev, rdma_ah_get_port_num(ah_attr));
13475418a5abSHarish Chegondi 	ppd = ppd_from_ibp(ibp);
1348d8966fcdSDasaratharaman Chandramouli 	ah->vl = ibp->sl_to_vl[rdma_ah_get_sl(&ah->attr)];
13495418a5abSHarish Chegondi 	ah->log_pmtu = ilog2(ppd->ibmtu);
13505418a5abSHarish Chegondi }
13515418a5abSHarish Chegondi 
13521fb9fed6SMike Marciniszyn struct ib_ah *qib_create_qp0_ah(struct qib_ibport *ibp, u16 dlid)
13531fb9fed6SMike Marciniszyn {
135490898850SDasaratharaman Chandramouli 	struct rdma_ah_attr attr;
13551fb9fed6SMike Marciniszyn 	struct ib_ah *ah = ERR_PTR(-EINVAL);
13567c2e11feSDennis Dalessandro 	struct rvt_qp *qp0;
1357d8966fcdSDasaratharaman Chandramouli 	struct qib_pportdata *ppd = ppd_from_ibp(ibp);
135844c58487SDasaratharaman Chandramouli 	struct qib_devdata *dd = dd_from_ppd(ppd);
1359d8966fcdSDasaratharaman Chandramouli 	u8 port_num = ppd->port;
13601fb9fed6SMike Marciniszyn 
1361041af0bbSMike Marciniszyn 	memset(&attr, 0, sizeof(attr));
136244c58487SDasaratharaman Chandramouli 	attr.type = rdma_ah_find_type(&dd->verbs_dev.rdi.ibdev, port_num);
1363d8966fcdSDasaratharaman Chandramouli 	rdma_ah_set_dlid(&attr, dlid);
1364d8966fcdSDasaratharaman Chandramouli 	rdma_ah_set_port_num(&attr, port_num);
13651fb9fed6SMike Marciniszyn 	rcu_read_lock();
1366f24a6d48SHarish Chegondi 	qp0 = rcu_dereference(ibp->rvp.qp[0]);
13671fb9fed6SMike Marciniszyn 	if (qp0)
13680a18cfe4SDasaratharaman Chandramouli 		ah = rdma_create_ah(qp0->ibqp.pd, &attr);
13691fb9fed6SMike Marciniszyn 	rcu_read_unlock();
13701fb9fed6SMike Marciniszyn 	return ah;
13711fb9fed6SMike Marciniszyn }
13721fb9fed6SMike Marciniszyn 
1373f931551bSRalph Campbell /**
1374f931551bSRalph Campbell  * qib_get_npkeys - return the size of the PKEY table for context 0
1375f931551bSRalph Campbell  * @dd: the qlogic_ib device
1376f931551bSRalph Campbell  */
1377f931551bSRalph Campbell unsigned qib_get_npkeys(struct qib_devdata *dd)
1378f931551bSRalph Campbell {
1379f931551bSRalph Campbell 	return ARRAY_SIZE(dd->rcd[0]->pkeys);
1380f931551bSRalph Campbell }
1381f931551bSRalph Campbell 
1382f931551bSRalph Campbell /*
1383f931551bSRalph Campbell  * Return the indexed PKEY from the port PKEY table.
1384f931551bSRalph Campbell  * No need to validate rcd[ctxt]; the port is setup if we are here.
1385f931551bSRalph Campbell  */
1386f931551bSRalph Campbell unsigned qib_get_pkey(struct qib_ibport *ibp, unsigned index)
1387f931551bSRalph Campbell {
1388f931551bSRalph Campbell 	struct qib_pportdata *ppd = ppd_from_ibp(ibp);
1389f931551bSRalph Campbell 	struct qib_devdata *dd = ppd->dd;
1390f931551bSRalph Campbell 	unsigned ctxt = ppd->hw_pidx;
1391f931551bSRalph Campbell 	unsigned ret;
1392f931551bSRalph Campbell 
1393f931551bSRalph Campbell 	/* dd->rcd null if mini_init or some init failures */
1394f931551bSRalph Campbell 	if (!dd->rcd || index >= ARRAY_SIZE(dd->rcd[ctxt]->pkeys))
1395f931551bSRalph Campbell 		ret = 0;
1396f931551bSRalph Campbell 	else
1397f931551bSRalph Campbell 		ret = dd->rcd[ctxt]->pkeys[index];
1398f931551bSRalph Campbell 
1399f931551bSRalph Campbell 	return ret;
1400f931551bSRalph Campbell }
1401f931551bSRalph Campbell 
1402f931551bSRalph Campbell static void init_ibport(struct qib_pportdata *ppd)
1403f931551bSRalph Campbell {
1404f931551bSRalph Campbell 	struct qib_verbs_counters cntrs;
1405f931551bSRalph Campbell 	struct qib_ibport *ibp = &ppd->ibport_data;
1406f931551bSRalph Campbell 
1407f24a6d48SHarish Chegondi 	spin_lock_init(&ibp->rvp.lock);
1408f931551bSRalph Campbell 	/* Set the prefix to the default value (see ch. 4.1.1) */
1409f24a6d48SHarish Chegondi 	ibp->rvp.gid_prefix = IB_DEFAULT_GID_PREFIX;
1410f24a6d48SHarish Chegondi 	ibp->rvp.sm_lid = be16_to_cpu(IB_LID_PERMISSIVE);
1411f24a6d48SHarish Chegondi 	ibp->rvp.port_cap_flags = IB_PORT_SYS_IMAGE_GUID_SUP |
1412f931551bSRalph Campbell 		IB_PORT_CLIENT_REG_SUP | IB_PORT_SL_MAP_SUP |
1413f931551bSRalph Campbell 		IB_PORT_TRAP_SUP | IB_PORT_AUTO_MIGR_SUP |
1414f931551bSRalph Campbell 		IB_PORT_DR_NOTICE_SUP | IB_PORT_CAP_MASK_NOTICE_SUP |
1415f931551bSRalph Campbell 		IB_PORT_OTHER_LOCAL_CHANGES_SUP;
1416f931551bSRalph Campbell 	if (ppd->dd->flags & QIB_HAS_LINK_LATENCY)
1417f24a6d48SHarish Chegondi 		ibp->rvp.port_cap_flags |= IB_PORT_LINK_LATENCY_SUP;
1418f24a6d48SHarish Chegondi 	ibp->rvp.pma_counter_select[0] = IB_PMA_PORT_XMIT_DATA;
1419f24a6d48SHarish Chegondi 	ibp->rvp.pma_counter_select[1] = IB_PMA_PORT_RCV_DATA;
1420f24a6d48SHarish Chegondi 	ibp->rvp.pma_counter_select[2] = IB_PMA_PORT_XMIT_PKTS;
1421f24a6d48SHarish Chegondi 	ibp->rvp.pma_counter_select[3] = IB_PMA_PORT_RCV_PKTS;
1422f24a6d48SHarish Chegondi 	ibp->rvp.pma_counter_select[4] = IB_PMA_PORT_XMIT_WAIT;
1423f931551bSRalph Campbell 
1424f931551bSRalph Campbell 	/* Snapshot current HW counters to "clear" them. */
1425f931551bSRalph Campbell 	qib_get_counters(ppd, &cntrs);
1426f931551bSRalph Campbell 	ibp->z_symbol_error_counter = cntrs.symbol_error_counter;
1427f931551bSRalph Campbell 	ibp->z_link_error_recovery_counter =
1428f931551bSRalph Campbell 		cntrs.link_error_recovery_counter;
1429f931551bSRalph Campbell 	ibp->z_link_downed_counter = cntrs.link_downed_counter;
1430f931551bSRalph Campbell 	ibp->z_port_rcv_errors = cntrs.port_rcv_errors;
1431f931551bSRalph Campbell 	ibp->z_port_rcv_remphys_errors = cntrs.port_rcv_remphys_errors;
1432f931551bSRalph Campbell 	ibp->z_port_xmit_discards = cntrs.port_xmit_discards;
1433f931551bSRalph Campbell 	ibp->z_port_xmit_data = cntrs.port_xmit_data;
1434f931551bSRalph Campbell 	ibp->z_port_rcv_data = cntrs.port_rcv_data;
1435f931551bSRalph Campbell 	ibp->z_port_xmit_packets = cntrs.port_xmit_packets;
1436f931551bSRalph Campbell 	ibp->z_port_rcv_packets = cntrs.port_rcv_packets;
1437f931551bSRalph Campbell 	ibp->z_local_link_integrity_errors =
1438f931551bSRalph Campbell 		cntrs.local_link_integrity_errors;
1439f931551bSRalph Campbell 	ibp->z_excessive_buffer_overrun_errors =
1440f931551bSRalph Campbell 		cntrs.excessive_buffer_overrun_errors;
1441f931551bSRalph Campbell 	ibp->z_vl15_dropped = cntrs.vl15_dropped;
1442f24a6d48SHarish Chegondi 	RCU_INIT_POINTER(ibp->rvp.qp[0], NULL);
1443f24a6d48SHarish Chegondi 	RCU_INIT_POINTER(ibp->rvp.qp[1], NULL);
1444f931551bSRalph Campbell }
1445f931551bSRalph Campbell 
1446f931551bSRalph Campbell /**
14470aeddea2SHarish Chegondi  * qib_fill_device_attr - Fill in rvt dev info device attributes.
14480aeddea2SHarish Chegondi  * @dd: the device data structure
14490aeddea2SHarish Chegondi  */
14500aeddea2SHarish Chegondi static void qib_fill_device_attr(struct qib_devdata *dd)
14510aeddea2SHarish Chegondi {
14520aeddea2SHarish Chegondi 	struct rvt_dev_info *rdi = &dd->verbs_dev.rdi;
14530aeddea2SHarish Chegondi 
14540aeddea2SHarish Chegondi 	memset(&rdi->dparms.props, 0, sizeof(rdi->dparms.props));
14550aeddea2SHarish Chegondi 
14560aeddea2SHarish Chegondi 	rdi->dparms.props.max_pd = ib_qib_max_pds;
14570aeddea2SHarish Chegondi 	rdi->dparms.props.max_ah = ib_qib_max_ahs;
14580aeddea2SHarish Chegondi 	rdi->dparms.props.device_cap_flags = IB_DEVICE_BAD_PKEY_CNTR |
14590aeddea2SHarish Chegondi 		IB_DEVICE_BAD_QKEY_CNTR | IB_DEVICE_SHUTDOWN_PORT |
14600aeddea2SHarish Chegondi 		IB_DEVICE_SYS_IMAGE_GUID | IB_DEVICE_RC_RNR_NAK_GEN |
14610aeddea2SHarish Chegondi 		IB_DEVICE_PORT_ACTIVE_EVENT | IB_DEVICE_SRQ_RESIZE;
14620aeddea2SHarish Chegondi 	rdi->dparms.props.page_size_cap = PAGE_SIZE;
14630aeddea2SHarish Chegondi 	rdi->dparms.props.vendor_id =
14640aeddea2SHarish Chegondi 		QIB_SRC_OUI_1 << 16 | QIB_SRC_OUI_2 << 8 | QIB_SRC_OUI_3;
14650aeddea2SHarish Chegondi 	rdi->dparms.props.vendor_part_id = dd->deviceid;
14660aeddea2SHarish Chegondi 	rdi->dparms.props.hw_ver = dd->minrev;
14670aeddea2SHarish Chegondi 	rdi->dparms.props.sys_image_guid = ib_qib_sys_image_guid;
14680aeddea2SHarish Chegondi 	rdi->dparms.props.max_mr_size = ~0ULL;
14690aeddea2SHarish Chegondi 	rdi->dparms.props.max_qp = ib_qib_max_qps;
14700aeddea2SHarish Chegondi 	rdi->dparms.props.max_qp_wr = ib_qib_max_qp_wrs;
147133023fb8SSteve Wise 	rdi->dparms.props.max_send_sge = ib_qib_max_sges;
147233023fb8SSteve Wise 	rdi->dparms.props.max_recv_sge = ib_qib_max_sges;
14730aeddea2SHarish Chegondi 	rdi->dparms.props.max_sge_rd = ib_qib_max_sges;
14740aeddea2SHarish Chegondi 	rdi->dparms.props.max_cq = ib_qib_max_cqs;
14750aeddea2SHarish Chegondi 	rdi->dparms.props.max_cqe = ib_qib_max_cqes;
14760aeddea2SHarish Chegondi 	rdi->dparms.props.max_ah = ib_qib_max_ahs;
14770aeddea2SHarish Chegondi 	rdi->dparms.props.max_mr = rdi->lkey_table.max;
14780aeddea2SHarish Chegondi 	rdi->dparms.props.max_fmr = rdi->lkey_table.max;
14790aeddea2SHarish Chegondi 	rdi->dparms.props.max_map_per_fmr = 32767;
14800aeddea2SHarish Chegondi 	rdi->dparms.props.max_qp_rd_atom = QIB_MAX_RDMA_ATOMIC;
14810aeddea2SHarish Chegondi 	rdi->dparms.props.max_qp_init_rd_atom = 255;
14820aeddea2SHarish Chegondi 	rdi->dparms.props.max_srq = ib_qib_max_srqs;
14830aeddea2SHarish Chegondi 	rdi->dparms.props.max_srq_wr = ib_qib_max_srq_wrs;
14840aeddea2SHarish Chegondi 	rdi->dparms.props.max_srq_sge = ib_qib_max_srq_sges;
14850aeddea2SHarish Chegondi 	rdi->dparms.props.atomic_cap = IB_ATOMIC_GLOB;
14860aeddea2SHarish Chegondi 	rdi->dparms.props.max_pkeys = qib_get_npkeys(dd);
14870aeddea2SHarish Chegondi 	rdi->dparms.props.max_mcast_grp = ib_qib_max_mcast_grps;
14880aeddea2SHarish Chegondi 	rdi->dparms.props.max_mcast_qp_attach = ib_qib_max_mcast_qp_attached;
14890aeddea2SHarish Chegondi 	rdi->dparms.props.max_total_mcast_qp_attach =
14900aeddea2SHarish Chegondi 					rdi->dparms.props.max_mcast_qp_attach *
14910aeddea2SHarish Chegondi 					rdi->dparms.props.max_mcast_grp;
14929ec4faa3SMike Marciniszyn 	/* post send table */
14939ec4faa3SMike Marciniszyn 	dd->verbs_dev.rdi.post_parms = qib_post_parms;
14940aeddea2SHarish Chegondi }
14950aeddea2SHarish Chegondi 
14960aeddea2SHarish Chegondi /**
1497f931551bSRalph Campbell  * qib_register_ib_device - register our device with the infiniband core
1498f931551bSRalph Campbell  * @dd: the device data structure
1499f931551bSRalph Campbell  * Return the allocated qib_ibdev pointer or NULL on error.
1500f931551bSRalph Campbell  */
1501f931551bSRalph Campbell int qib_register_ib_device(struct qib_devdata *dd)
1502f931551bSRalph Campbell {
1503f931551bSRalph Campbell 	struct qib_ibdev *dev = &dd->verbs_dev;
15042dc05ab5SDennis Dalessandro 	struct ib_device *ibdev = &dev->rdi.ibdev;
1505f931551bSRalph Campbell 	struct qib_pportdata *ppd = dd->pport;
150676fec3e0SHarish Chegondi 	unsigned i, ctxt;
1507f931551bSRalph Campbell 	int ret;
1508f931551bSRalph Campbell 
1509af061a64SMike Marciniszyn 	get_random_bytes(&dev->qp_rnd, sizeof(dev->qp_rnd));
1510f931551bSRalph Campbell 	for (i = 0; i < dd->num_pports; i++)
1511f931551bSRalph Campbell 		init_ibport(ppd + i);
1512f931551bSRalph Campbell 
1513f931551bSRalph Campbell 	/* Only need to initialize non-zero fields. */
15144037c92fSKees Cook 	timer_setup(&dev->mem_timer, mem_timer, 0);
1515f931551bSRalph Campbell 
1516f931551bSRalph Campbell 	INIT_LIST_HEAD(&dev->piowait);
1517f931551bSRalph Campbell 	INIT_LIST_HEAD(&dev->dmawait);
1518f931551bSRalph Campbell 	INIT_LIST_HEAD(&dev->txwait);
1519f931551bSRalph Campbell 	INIT_LIST_HEAD(&dev->memwait);
1520f931551bSRalph Campbell 	INIT_LIST_HEAD(&dev->txreq_free);
1521f931551bSRalph Campbell 
1522f931551bSRalph Campbell 	if (ppd->sdma_descq_cnt) {
1523f931551bSRalph Campbell 		dev->pio_hdrs = dma_alloc_coherent(&dd->pcidev->dev,
1524f931551bSRalph Campbell 						ppd->sdma_descq_cnt *
1525f931551bSRalph Campbell 						sizeof(struct qib_pio_header),
1526f931551bSRalph Campbell 						&dev->pio_hdrs_phys,
1527f931551bSRalph Campbell 						GFP_KERNEL);
1528f931551bSRalph Campbell 		if (!dev->pio_hdrs) {
1529f931551bSRalph Campbell 			ret = -ENOMEM;
1530f931551bSRalph Campbell 			goto err_hdrs;
1531f931551bSRalph Campbell 		}
1532f931551bSRalph Campbell 	}
1533f931551bSRalph Campbell 
1534f931551bSRalph Campbell 	for (i = 0; i < ppd->sdma_descq_cnt; i++) {
1535f931551bSRalph Campbell 		struct qib_verbs_txreq *tx;
1536f931551bSRalph Campbell 
1537041af0bbSMike Marciniszyn 		tx = kzalloc(sizeof(*tx), GFP_KERNEL);
1538f931551bSRalph Campbell 		if (!tx) {
1539f931551bSRalph Campbell 			ret = -ENOMEM;
1540f931551bSRalph Campbell 			goto err_tx;
1541f931551bSRalph Campbell 		}
1542f931551bSRalph Campbell 		tx->hdr_inx = i;
1543f931551bSRalph Campbell 		list_add(&tx->txreq.list, &dev->txreq_free);
1544f931551bSRalph Campbell 	}
1545f931551bSRalph Campbell 
1546f931551bSRalph Campbell 	/*
1547f931551bSRalph Campbell 	 * The system image GUID is supposed to be the same for all
1548f931551bSRalph Campbell 	 * IB HCAs in a single system but since there can be other
1549f931551bSRalph Campbell 	 * device types in the system, we can't be sure this is unique.
1550f931551bSRalph Campbell 	 */
1551f931551bSRalph Campbell 	if (!ib_qib_sys_image_guid)
1552f931551bSRalph Campbell 		ib_qib_sys_image_guid = ppd->guid;
1553f931551bSRalph Campbell 
1554f931551bSRalph Campbell 	ibdev->owner = THIS_MODULE;
1555f931551bSRalph Campbell 	ibdev->node_guid = ppd->guid;
1556f931551bSRalph Campbell 	ibdev->phys_port_cnt = dd->num_pports;
1557989ab358SBart Van Assche 	ibdev->dev.parent = &dd->pcidev->dev;
1558f931551bSRalph Campbell 	ibdev->modify_device = qib_modify_device;
1559f931551bSRalph Campbell 	ibdev->process_mad = qib_process_mad;
1560f931551bSRalph Campbell 
1561f931551bSRalph Campbell 	snprintf(ibdev->node_desc, sizeof(ibdev->node_desc),
1562e2eed58bSVinit Agnihotri 		 "Intel Infiniband HCA %s", init_utsname()->nodename);
1563f931551bSRalph Campbell 
15642dc05ab5SDennis Dalessandro 	/*
15652dc05ab5SDennis Dalessandro 	 * Fill in rvt info object.
15662dc05ab5SDennis Dalessandro 	 */
15672dc05ab5SDennis Dalessandro 	dd->verbs_dev.rdi.driver_f.port_callback = qib_create_port_files;
15686a9df403SDennis Dalessandro 	dd->verbs_dev.rdi.driver_f.get_pci_dev = qib_get_pci_dev;
156996ab1ac1SDennis Dalessandro 	dd->verbs_dev.rdi.driver_f.check_ah = qib_check_ah;
1570d205a06aSKaike Wan 	dd->verbs_dev.rdi.driver_f.setup_wqe = qib_check_send_wqe;
15715418a5abSHarish Chegondi 	dd->verbs_dev.rdi.driver_f.notify_new_ah = qib_notify_new_ah;
157220f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.alloc_qpn = qib_alloc_qpn;
157320f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.qp_priv_alloc = qib_qp_priv_alloc;
157420f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.qp_priv_free = qib_qp_priv_free;
157547c7ea6dSHarish Chegondi 	dd->verbs_dev.rdi.driver_f.free_all_qps = qib_free_all_qps;
157620f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.notify_qp_reset = qib_notify_qp_reset;
1577db3ef0ebSHarish Chegondi 	dd->verbs_dev.rdi.driver_f.do_send = qib_do_send;
1578db3ef0ebSHarish Chegondi 	dd->verbs_dev.rdi.driver_f.schedule_send = qib_schedule_send;
157920f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.quiesce_qp = qib_quiesce_qp;
158020f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.stop_send_queue = qib_stop_send_queue;
158120f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.flush_qp_waiters = qib_flush_qp_waiters;
158220f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.notify_error_qp = qib_notify_error_qp;
1583b4238e70SVenkata Sandeep Dhanalakota 	dd->verbs_dev.rdi.driver_f.notify_restart_rc = qib_restart_rc;
158420f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.mtu_to_path_mtu = qib_mtu_to_path_mtu;
158520f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.mtu_from_qp = qib_mtu_from_qp;
158620f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.get_pmtu_from_attr = qib_get_pmtu_from_attr;
158746a80d62SMike Marciniszyn 	dd->verbs_dev.rdi.driver_f.schedule_send_no_lock = _qib_schedule_send;
1588530a5d8eSHarish Chegondi 	dd->verbs_dev.rdi.driver_f.query_port_state = qib_query_port;
158920f333b6SHarish Chegondi 	dd->verbs_dev.rdi.driver_f.shut_down_port = qib_shut_down_port;
1590530a5d8eSHarish Chegondi 	dd->verbs_dev.rdi.driver_f.cap_mask_chg = qib_cap_mask_chg;
1591611ac099SDennis Dalessandro 	dd->verbs_dev.rdi.driver_f.notify_create_mad_agent =
1592611ac099SDennis Dalessandro 						qib_notify_create_mad_agent;
1593611ac099SDennis Dalessandro 	dd->verbs_dev.rdi.driver_f.notify_free_mad_agent =
1594611ac099SDennis Dalessandro 						qib_notify_free_mad_agent;
159547c7ea6dSHarish Chegondi 
159670696ea7SHarish Chegondi 	dd->verbs_dev.rdi.dparms.max_rdma_atomic = QIB_MAX_RDMA_ATOMIC;
159723667546SDennis Dalessandro 	dd->verbs_dev.rdi.driver_f.get_guid_be = qib_get_guid_be;
15987c2e11feSDennis Dalessandro 	dd->verbs_dev.rdi.dparms.lkey_table_size = qib_lkey_table_size;
159947c7ea6dSHarish Chegondi 	dd->verbs_dev.rdi.dparms.qp_table_size = ib_qib_qp_table_size;
160047c7ea6dSHarish Chegondi 	dd->verbs_dev.rdi.dparms.qpn_start = 1;
160147c7ea6dSHarish Chegondi 	dd->verbs_dev.rdi.dparms.qpn_res_start = QIB_KD_QP;
160247c7ea6dSHarish Chegondi 	dd->verbs_dev.rdi.dparms.qpn_res_end = QIB_KD_QP; /* Reserve one QP */
160347c7ea6dSHarish Chegondi 	dd->verbs_dev.rdi.dparms.qpn_inc = 1;
160447c7ea6dSHarish Chegondi 	dd->verbs_dev.rdi.dparms.qos_shift = 1;
1605034a3e70SHarish Chegondi 	dd->verbs_dev.rdi.dparms.psn_mask = QIB_PSN_MASK;
160670696ea7SHarish Chegondi 	dd->verbs_dev.rdi.dparms.psn_shift = QIB_PSN_SHIFT;
160770696ea7SHarish Chegondi 	dd->verbs_dev.rdi.dparms.psn_modify_mask = QIB_PSN_MASK;
160876fec3e0SHarish Chegondi 	dd->verbs_dev.rdi.dparms.nports = dd->num_pports;
160976fec3e0SHarish Chegondi 	dd->verbs_dev.rdi.dparms.npkeys = qib_get_npkeys(dd);
16104bb88e5fSHarish Chegondi 	dd->verbs_dev.rdi.dparms.node = dd->assigned_node_id;
1611530a5d8eSHarish Chegondi 	dd->verbs_dev.rdi.dparms.core_cap_flags = RDMA_CORE_PORT_IBA_IB;
1612530a5d8eSHarish Chegondi 	dd->verbs_dev.rdi.dparms.max_mad_size = IB_MGMT_MAD_SIZE;
1613*019f118bSBrian Welty 	dd->verbs_dev.rdi.dparms.sge_copy_mode = RVT_SGE_COPY_MEMCPY;
1614530a5d8eSHarish Chegondi 
16150aeddea2SHarish Chegondi 	qib_fill_device_attr(dd);
16160aeddea2SHarish Chegondi 
161776fec3e0SHarish Chegondi 	ppd = dd->pport;
161876fec3e0SHarish Chegondi 	for (i = 0; i < dd->num_pports; i++, ppd++) {
161976fec3e0SHarish Chegondi 		ctxt = ppd->hw_pidx;
162076fec3e0SHarish Chegondi 		rvt_init_port(&dd->verbs_dev.rdi,
162176fec3e0SHarish Chegondi 			      &ppd->ibport_data.rvp,
162276fec3e0SHarish Chegondi 			      i,
162376fec3e0SHarish Chegondi 			      dd->rcd[ctxt]->pkeys);
162476fec3e0SHarish Chegondi 	}
16252dc05ab5SDennis Dalessandro 
16260ede73bcSMatan Barak 	ret = rvt_register_device(&dd->verbs_dev.rdi, RDMA_DRIVER_QIB);
1627f931551bSRalph Campbell 	if (ret)
16285196aa96SDennis Dalessandro 		goto err_tx;
1629f931551bSRalph Campbell 
1630c9bdad3cSMike Marciniszyn 	ret = qib_verbs_register_sysfs(dd);
1631c9bdad3cSMike Marciniszyn 	if (ret)
1632f931551bSRalph Campbell 		goto err_class;
1633f931551bSRalph Campbell 
16345196aa96SDennis Dalessandro 	return ret;
1635f931551bSRalph Campbell 
1636f931551bSRalph Campbell err_class:
16372dc05ab5SDennis Dalessandro 	rvt_unregister_device(&dd->verbs_dev.rdi);
1638f931551bSRalph Campbell err_tx:
1639f931551bSRalph Campbell 	while (!list_empty(&dev->txreq_free)) {
1640f931551bSRalph Campbell 		struct list_head *l = dev->txreq_free.next;
1641f931551bSRalph Campbell 		struct qib_verbs_txreq *tx;
1642f931551bSRalph Campbell 
1643f931551bSRalph Campbell 		list_del(l);
1644f931551bSRalph Campbell 		tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
1645f931551bSRalph Campbell 		kfree(tx);
1646f931551bSRalph Campbell 	}
1647f931551bSRalph Campbell 	if (ppd->sdma_descq_cnt)
1648f931551bSRalph Campbell 		dma_free_coherent(&dd->pcidev->dev,
1649f931551bSRalph Campbell 				  ppd->sdma_descq_cnt *
1650f931551bSRalph Campbell 					sizeof(struct qib_pio_header),
1651f931551bSRalph Campbell 				  dev->pio_hdrs, dev->pio_hdrs_phys);
1652f931551bSRalph Campbell err_hdrs:
1653f931551bSRalph Campbell 	qib_dev_err(dd, "cannot register verbs: %d!\n", -ret);
1654f931551bSRalph Campbell 	return ret;
1655f931551bSRalph Campbell }
1656f931551bSRalph Campbell 
1657f931551bSRalph Campbell void qib_unregister_ib_device(struct qib_devdata *dd)
1658f931551bSRalph Campbell {
1659f931551bSRalph Campbell 	struct qib_ibdev *dev = &dd->verbs_dev;
1660f931551bSRalph Campbell 
1661f931551bSRalph Campbell 	qib_verbs_unregister_sysfs(dd);
1662f931551bSRalph Campbell 
16632dc05ab5SDennis Dalessandro 	rvt_unregister_device(&dd->verbs_dev.rdi);
1664f931551bSRalph Campbell 
1665f931551bSRalph Campbell 	if (!list_empty(&dev->piowait))
1666f931551bSRalph Campbell 		qib_dev_err(dd, "piowait list not empty!\n");
1667f931551bSRalph Campbell 	if (!list_empty(&dev->dmawait))
1668f931551bSRalph Campbell 		qib_dev_err(dd, "dmawait list not empty!\n");
1669f931551bSRalph Campbell 	if (!list_empty(&dev->txwait))
1670f931551bSRalph Campbell 		qib_dev_err(dd, "txwait list not empty!\n");
1671f931551bSRalph Campbell 	if (!list_empty(&dev->memwait))
1672f931551bSRalph Campbell 		qib_dev_err(dd, "memwait list not empty!\n");
1673f931551bSRalph Campbell 
1674f931551bSRalph Campbell 	del_timer_sync(&dev->mem_timer);
1675f931551bSRalph Campbell 	while (!list_empty(&dev->txreq_free)) {
1676f931551bSRalph Campbell 		struct list_head *l = dev->txreq_free.next;
1677f931551bSRalph Campbell 		struct qib_verbs_txreq *tx;
1678f931551bSRalph Campbell 
1679f931551bSRalph Campbell 		list_del(l);
1680f931551bSRalph Campbell 		tx = list_entry(l, struct qib_verbs_txreq, txreq.list);
1681f931551bSRalph Campbell 		kfree(tx);
1682f931551bSRalph Campbell 	}
1683f931551bSRalph Campbell 	if (dd->pport->sdma_descq_cnt)
1684f931551bSRalph Campbell 		dma_free_coherent(&dd->pcidev->dev,
1685f931551bSRalph Campbell 				  dd->pport->sdma_descq_cnt *
1686f931551bSRalph Campbell 					sizeof(struct qib_pio_header),
1687f931551bSRalph Campbell 				  dev->pio_hdrs, dev->pio_hdrs_phys);
1688f931551bSRalph Campbell }
1689551ace12SMike Marciniszyn 
169046a80d62SMike Marciniszyn /**
169146a80d62SMike Marciniszyn  * _qib_schedule_send - schedule progress
169246a80d62SMike Marciniszyn  * @qp - the qp
169346a80d62SMike Marciniszyn  *
169446a80d62SMike Marciniszyn  * This schedules progress w/o regard to the s_flags.
169546a80d62SMike Marciniszyn  *
169646a80d62SMike Marciniszyn  * It is only used in post send, which doesn't hold
169746a80d62SMike Marciniszyn  * the s_lock.
1698551ace12SMike Marciniszyn  */
16995da0fc9dSDennis Dalessandro bool _qib_schedule_send(struct rvt_qp *qp)
1700551ace12SMike Marciniszyn {
1701551ace12SMike Marciniszyn 	struct qib_ibport *ibp =
1702551ace12SMike Marciniszyn 		to_iport(qp->ibqp.device, qp->port_num);
1703551ace12SMike Marciniszyn 	struct qib_pportdata *ppd = ppd_from_ibp(ibp);
170446a80d62SMike Marciniszyn 	struct qib_qp_priv *priv = qp->priv;
1705551ace12SMike Marciniszyn 
17065da0fc9dSDennis Dalessandro 	return queue_work(ppd->qib_wq, &priv->s_work);
1707551ace12SMike Marciniszyn }
170846a80d62SMike Marciniszyn 
170946a80d62SMike Marciniszyn /**
171046a80d62SMike Marciniszyn  * qib_schedule_send - schedule progress
171146a80d62SMike Marciniszyn  * @qp - the qp
171246a80d62SMike Marciniszyn  *
171346a80d62SMike Marciniszyn  * This schedules qp progress.  The s_lock
171446a80d62SMike Marciniszyn  * should be held.
171546a80d62SMike Marciniszyn  */
17165da0fc9dSDennis Dalessandro bool qib_schedule_send(struct rvt_qp *qp)
171746a80d62SMike Marciniszyn {
171846a80d62SMike Marciniszyn 	if (qib_send_ok(qp))
17195da0fc9dSDennis Dalessandro 		return _qib_schedule_send(qp);
17205da0fc9dSDennis Dalessandro 	return false;
1721551ace12SMike Marciniszyn }
1722