1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0
3  *
4  * Copyright (c) 2004, 2005 Topspin Communications.  All rights reserved.
5  * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
6  *
7  * This software is available to you under a choice of one of two
8  * licenses.  You may choose to be licensed under the terms of the GNU
9  * General Public License (GPL) Version 2, available from the file
10  * COPYING in the main directory of this source tree, or the
11  * OpenIB.org BSD license below:
12  *
13  *     Redistribution and use in source and binary forms, with or
14  *     without modification, are permitted provided that the following
15  *     conditions are met:
16  *
17  *      - Redistributions of source code must retain the above
18  *        copyright notice, this list of conditions and the following
19  *        disclaimer.
20  *
21  *      - Redistributions in binary form must reproduce the above
22  *        copyright notice, this list of conditions and the following
23  *        disclaimer in the documentation and/or other materials
24  *        provided with the distribution.
25  *
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33  * SOFTWARE.
34  */
35 
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
38 
39 #include "ipoib.h"
40 
41 int ipoib_mcast_attach(struct ipoib_dev_priv *priv, u16 mlid, union ib_gid *mgid, int set_qkey)
42 {
43 	struct ib_qp_attr *qp_attr = NULL;
44 	int ret;
45 	u16 pkey_index;
46 
47 	if (ib_find_pkey(priv->ca, priv->port, priv->pkey, &pkey_index)) {
48 		clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
49 		ret = -ENXIO;
50 		goto out;
51 	}
52 	set_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
53 
54 	if (set_qkey) {
55 		ret = -ENOMEM;
56 		qp_attr = kmalloc(sizeof *qp_attr, GFP_KERNEL);
57 		if (!qp_attr)
58 			goto out;
59 
60 		/* set correct QKey for QP */
61 		qp_attr->qkey = priv->qkey;
62 		ret = ib_modify_qp(priv->qp, qp_attr, IB_QP_QKEY);
63 		if (ret) {
64 			ipoib_warn(priv, "failed to modify QP, ret = %d\n", ret);
65 			goto out;
66 		}
67 	}
68 
69 	/* attach QP to multicast group */
70 	ret = ib_attach_mcast(priv->qp, mgid, mlid);
71 	if (ret)
72 		ipoib_warn(priv, "failed to attach to multicast group, ret = %d\n", ret);
73 
74 out:
75 	kfree(qp_attr);
76 	return ret;
77 }
78 
79 int ipoib_init_qp(struct ipoib_dev_priv *priv)
80 {
81 	int ret;
82 	struct ib_qp_attr qp_attr;
83 	int attr_mask;
84 
85 	if (!test_bit(IPOIB_PKEY_ASSIGNED, &priv->flags))
86 		return -1;
87 
88 	qp_attr.qp_state = IB_QPS_INIT;
89 	qp_attr.qkey = 0;
90 	qp_attr.port_num = priv->port;
91 	qp_attr.pkey_index = priv->pkey_index;
92 	attr_mask =
93 	    IB_QP_QKEY |
94 	    IB_QP_PORT |
95 	    IB_QP_PKEY_INDEX |
96 	    IB_QP_STATE;
97 
98 	ret = ib_modify_qp(priv->qp, &qp_attr, attr_mask);
99 	if (ret) {
100 		ipoib_warn(priv, "failed to modify QP to init, ret = %d\n", ret);
101 		goto out_fail;
102 	}
103 
104 	qp_attr.qp_state = IB_QPS_RTR;
105 	/* Can't set this in a INIT->RTR transition */
106 	attr_mask &= ~IB_QP_PORT;
107 	ret = ib_modify_qp(priv->qp, &qp_attr, attr_mask);
108 	if (ret) {
109 		ipoib_warn(priv, "failed to modify QP to RTR, ret = %d\n", ret);
110 		goto out_fail;
111 	}
112 
113 	qp_attr.qp_state = IB_QPS_RTS;
114 	qp_attr.sq_psn = 0;
115 	attr_mask |= IB_QP_SQ_PSN;
116 	attr_mask &= ~IB_QP_PKEY_INDEX;
117 	ret = ib_modify_qp(priv->qp, &qp_attr, attr_mask);
118 	if (ret) {
119 		ipoib_warn(priv, "failed to modify QP to RTS, ret = %d\n", ret);
120 		goto out_fail;
121 	}
122 
123 	return 0;
124 
125 out_fail:
126 	qp_attr.qp_state = IB_QPS_RESET;
127 	if (ib_modify_qp(priv->qp, &qp_attr, IB_QP_STATE))
128 		ipoib_warn(priv, "Failed to modify QP to RESET state\n");
129 
130 	return ret;
131 }
132 
133 int ipoib_transport_dev_init(struct ipoib_dev_priv *priv, struct ib_device *ca)
134 {
135 	struct ib_qp_init_attr init_attr = {
136 		.cap = {
137 			.max_send_wr  = ipoib_sendq_size,
138 			.max_recv_wr  = ipoib_recvq_size,
139 			.max_send_sge = 1,
140 			.max_recv_sge = IPOIB_UD_RX_SG
141 		},
142 		.sq_sig_type = IB_SIGNAL_ALL_WR,
143 		.qp_type     = IB_QPT_UD
144 	};
145 	struct ib_cq_init_attr cq_attr = {};
146 	caddr_t lla;
147 
148 	int ret, size;
149 	int i;
150 	/* XXX struct ethtool_coalesce *coal; */
151 
152 	priv->pd = ib_alloc_pd(priv->ca, 0);
153 	if (IS_ERR(priv->pd)) {
154 		printk(KERN_WARNING "%s: failed to allocate PD\n", ca->name);
155 		return -ENODEV;
156 	}
157 
158 	size = ipoib_recvq_size + 1;
159 	ret = ipoib_cm_dev_init(priv);
160 	if (!ret) {
161 		size += ipoib_sendq_size;
162 		if (ipoib_cm_has_srq(priv))
163 			size += ipoib_recvq_size + 1; /* 1 extra for rx_drain_qp */
164 		else
165 			size += ipoib_recvq_size * ipoib_max_conn_qp;
166 	}
167 
168 	cq_attr.cqe = size;
169 	priv->recv_cq = ib_create_cq(priv->ca, ipoib_ib_completion, NULL, priv, &cq_attr);
170 	if (IS_ERR(priv->recv_cq)) {
171 		printk(KERN_WARNING "%s: failed to create receive CQ\n", ca->name);
172 		goto out_free_mr;
173 	}
174 
175 	cq_attr.cqe = ipoib_sendq_size;
176 	priv->send_cq = ib_create_cq(priv->ca, ipoib_send_comp_handler, NULL,
177 				     priv, &cq_attr);
178 	if (IS_ERR(priv->send_cq)) {
179 		printk(KERN_WARNING "%s: failed to create send CQ\n", ca->name);
180 		goto out_free_recv_cq;
181 	}
182 
183 	if (ib_req_notify_cq(priv->recv_cq, IB_CQ_NEXT_COMP))
184 		goto out_free_send_cq;
185 
186 #if 0
187 	/* XXX */
188 	coal = kzalloc(sizeof *coal, GFP_KERNEL);
189 	if (coal) {
190 		coal->rx_coalesce_usecs = 10;
191 		coal->tx_coalesce_usecs = 10;
192 		coal->rx_max_coalesced_frames = 16;
193 		coal->tx_max_coalesced_frames = 16;
194 		dev->ethtool_ops->set_coalesce(dev, coal);
195 		kfree(coal);
196 	}
197 #endif
198 
199 	init_attr.send_cq = priv->send_cq;
200 	init_attr.recv_cq = priv->recv_cq;
201 
202 	if (priv->hca_caps & IB_DEVICE_UD_TSO)
203 		init_attr.create_flags |= IB_QP_CREATE_IPOIB_UD_LSO;
204 
205 	if (priv->hca_caps & IB_DEVICE_BLOCK_MULTICAST_LOOPBACK)
206 		init_attr.create_flags |= IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK;
207 
208 	init_attr.cap.max_send_sge = IPOIB_UD_TX_SG;
209 
210 	priv->qp = ib_create_qp(priv->pd, &init_attr);
211 	if (IS_ERR(priv->qp)) {
212 		printk(KERN_WARNING "%s: failed to create QP\n", ca->name);
213 		goto out_free_send_cq;
214 	}
215 
216 	lla = if_getlladdr(priv->dev);
217 	lla[1] = (priv->qp->qp_num >> 16) & 0xff;
218 	lla[2] = (priv->qp->qp_num >>  8) & 0xff;
219 	lla[3] = (priv->qp->qp_num      ) & 0xff;
220 
221 	for (i = 0; i < IPOIB_MAX_TX_SG; ++i)
222 		priv->tx_sge[i].lkey = priv->pd->local_dma_lkey;
223 
224 	priv->tx_wr.wr.opcode		= IB_WR_SEND;
225 	priv->tx_wr.wr.sg_list		= priv->tx_sge;
226 	priv->tx_wr.wr.send_flags	= IB_SEND_SIGNALED;
227 
228 	for (i = 0; i < IPOIB_UD_RX_SG; ++i)
229 		priv->rx_sge[i].lkey = priv->pd->local_dma_lkey;
230 	priv->rx_wr.next = NULL;
231 	priv->rx_wr.sg_list = priv->rx_sge;
232 
233 	return 0;
234 
235 out_free_send_cq:
236 	ib_destroy_cq(priv->send_cq);
237 
238 out_free_recv_cq:
239 	ib_destroy_cq(priv->recv_cq);
240 
241 out_free_mr:
242 	ipoib_cm_dev_cleanup(priv);
243 
244 	ib_dealloc_pd(priv->pd);
245 	return -ENODEV;
246 }
247 
248 void ipoib_transport_dev_cleanup(struct ipoib_dev_priv *priv)
249 {
250 
251 	if (priv->qp) {
252 		if (ib_destroy_qp(priv->qp))
253 			ipoib_warn(priv, "ib_qp_destroy failed\n");
254 
255 		priv->qp = NULL;
256 		clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags);
257 	}
258 
259 	ib_destroy_cq(priv->send_cq);
260 
261 	ib_destroy_cq(priv->recv_cq);
262 
263 	ipoib_cm_dev_cleanup(priv);
264 
265 	ib_dealloc_pd(priv->pd);
266 }
267 
268 void ipoib_event(struct ib_event_handler *handler,
269 		 struct ib_event *record)
270 {
271 	struct ipoib_dev_priv *priv =
272 		container_of(handler, struct ipoib_dev_priv, event_handler);
273 
274 	if (record->element.port_num != priv->port)
275 		return;
276 
277 	ipoib_dbg(priv, "Event %d on device %s port %d\n", record->event,
278 		  record->device->name, record->element.port_num);
279 
280 	if (record->event == IB_EVENT_SM_CHANGE ||
281 	    record->event == IB_EVENT_CLIENT_REREGISTER) {
282 		queue_work(ipoib_workqueue, &priv->flush_light);
283 	} else if (record->event == IB_EVENT_PORT_ERR ||
284 		   record->event == IB_EVENT_PORT_ACTIVE ||
285 		   record->event == IB_EVENT_LID_CHANGE ||
286 		   record->event == IB_EVENT_DEVICE_FATAL) {
287 		queue_work(ipoib_workqueue, &priv->flush_normal);
288 	} else if (record->event == IB_EVENT_PKEY_CHANGE) {
289 		queue_work(ipoib_workqueue, &priv->flush_heavy);
290 	}
291 }
292