blob: b76257798ba582f200c1ffb5abc48afc90c83811 [file] [log] [blame]
Ursula Brauna4cf0442017-01-09 16:55:14 +01001/*
2 * Shared Memory Communications over RDMA (SMC-R) and RoCE
3 *
4 * IB infrastructure:
5 * Establish SMC-R as an Infiniband Client to be notified about added and
6 * removed IB devices of type RDMA.
7 * Determine device and port characteristics for these IB devices.
8 *
9 * Copyright IBM Corp. 2016
10 *
11 * Author(s): Ursula Braun <ubraun@linux.vnet.ibm.com>
12 */
13
14#include <linux/random.h>
Ursula Braunbd4ad572017-01-09 16:55:20 +010015#include <linux/workqueue.h>
Ursula Brauna4cf0442017-01-09 16:55:14 +010016#include <rdma/ib_verbs.h>
17
Thomas Richter6812baa2017-01-09 16:55:15 +010018#include "smc_pnet.h"
Ursula Brauna4cf0442017-01-09 16:55:14 +010019#include "smc_ib.h"
Ursula Brauncd6851f2017-01-09 16:55:18 +010020#include "smc_core.h"
Ursula Braunf38ba1792017-01-09 16:55:19 +010021#include "smc_wr.h"
Ursula Brauna4cf0442017-01-09 16:55:14 +010022#include "smc.h"
23
Ursula Braunbd4ad572017-01-09 16:55:20 +010024#define SMC_QP_MIN_RNR_TIMER 5
25#define SMC_QP_TIMEOUT 15 /* 4096 * 2 ** timeout usec */
26#define SMC_QP_RETRY_CNT 7 /* 7: infinite */
27#define SMC_QP_RNR_RETRY 7 /* 7: infinite */
28
Ursula Brauna4cf0442017-01-09 16:55:14 +010029struct smc_ib_devices smc_ib_devices = { /* smc-registered ib devices */
30 .lock = __SPIN_LOCK_UNLOCKED(smc_ib_devices.lock),
31 .list = LIST_HEAD_INIT(smc_ib_devices.list),
32};
33
34#define SMC_LOCAL_SYSTEMID_RESET "%%%%%%%"
35
36u8 local_systemid[SMC_SYSTEMID_LEN] = SMC_LOCAL_SYSTEMID_RESET; /* unique system
37 * identifier
38 */
39
Ursula Braunbd4ad572017-01-09 16:55:20 +010040int smc_ib_get_memory_region(struct ib_pd *pd, int access_flags,
41 struct ib_mr **mr)
42{
43 int rc;
44
45 if (*mr)
46 return 0; /* already done */
47
48 /* obtain unique key -
49 * next invocation of get_dma_mr returns a different key!
50 */
51 *mr = pd->device->get_dma_mr(pd, access_flags);
52 rc = PTR_ERR_OR_ZERO(*mr);
53 if (IS_ERR(*mr))
54 *mr = NULL;
55 return rc;
56}
57
58static int smc_ib_modify_qp_init(struct smc_link *lnk)
59{
60 struct ib_qp_attr qp_attr;
61
62 memset(&qp_attr, 0, sizeof(qp_attr));
63 qp_attr.qp_state = IB_QPS_INIT;
64 qp_attr.pkey_index = 0;
65 qp_attr.port_num = lnk->ibport;
66 qp_attr.qp_access_flags = IB_ACCESS_LOCAL_WRITE
67 | IB_ACCESS_REMOTE_WRITE;
68 return ib_modify_qp(lnk->roce_qp, &qp_attr,
69 IB_QP_STATE | IB_QP_PKEY_INDEX |
70 IB_QP_ACCESS_FLAGS | IB_QP_PORT);
71}
72
73static int smc_ib_modify_qp_rtr(struct smc_link *lnk)
74{
75 enum ib_qp_attr_mask qp_attr_mask =
76 IB_QP_STATE | IB_QP_AV | IB_QP_PATH_MTU | IB_QP_DEST_QPN |
77 IB_QP_RQ_PSN | IB_QP_MAX_DEST_RD_ATOMIC | IB_QP_MIN_RNR_TIMER;
78 struct ib_qp_attr qp_attr;
79
80 memset(&qp_attr, 0, sizeof(qp_attr));
81 qp_attr.qp_state = IB_QPS_RTR;
82 qp_attr.path_mtu = min(lnk->path_mtu, lnk->peer_mtu);
83 qp_attr.ah_attr.port_num = lnk->ibport;
84 qp_attr.ah_attr.ah_flags = IB_AH_GRH;
85 qp_attr.ah_attr.grh.hop_limit = 1;
86 memcpy(&qp_attr.ah_attr.grh.dgid, lnk->peer_gid,
87 sizeof(lnk->peer_gid));
88 memcpy(&qp_attr.ah_attr.dmac, lnk->peer_mac,
89 sizeof(lnk->peer_mac));
90 qp_attr.dest_qp_num = lnk->peer_qpn;
91 qp_attr.rq_psn = lnk->peer_psn; /* starting receive packet seq # */
92 qp_attr.max_dest_rd_atomic = 1; /* max # of resources for incoming
93 * requests
94 */
95 qp_attr.min_rnr_timer = SMC_QP_MIN_RNR_TIMER;
96
97 return ib_modify_qp(lnk->roce_qp, &qp_attr, qp_attr_mask);
98}
99
100int smc_ib_modify_qp_rts(struct smc_link *lnk)
101{
102 struct ib_qp_attr qp_attr;
103
104 memset(&qp_attr, 0, sizeof(qp_attr));
105 qp_attr.qp_state = IB_QPS_RTS;
106 qp_attr.timeout = SMC_QP_TIMEOUT; /* local ack timeout */
107 qp_attr.retry_cnt = SMC_QP_RETRY_CNT; /* retry count */
108 qp_attr.rnr_retry = SMC_QP_RNR_RETRY; /* RNR retries, 7=infinite */
109 qp_attr.sq_psn = lnk->psn_initial; /* starting send packet seq # */
110 qp_attr.max_rd_atomic = 1; /* # of outstanding RDMA reads and
111 * atomic ops allowed
112 */
113 return ib_modify_qp(lnk->roce_qp, &qp_attr,
114 IB_QP_STATE | IB_QP_TIMEOUT | IB_QP_RETRY_CNT |
115 IB_QP_SQ_PSN | IB_QP_RNR_RETRY |
116 IB_QP_MAX_QP_RD_ATOMIC);
117}
118
119int smc_ib_modify_qp_reset(struct smc_link *lnk)
120{
121 struct ib_qp_attr qp_attr;
122
123 memset(&qp_attr, 0, sizeof(qp_attr));
124 qp_attr.qp_state = IB_QPS_RESET;
125 return ib_modify_qp(lnk->roce_qp, &qp_attr, IB_QP_STATE);
126}
127
128int smc_ib_ready_link(struct smc_link *lnk)
129{
130 struct smc_link_group *lgr =
131 container_of(lnk, struct smc_link_group, lnk[0]);
132 int rc = 0;
133
134 rc = smc_ib_modify_qp_init(lnk);
135 if (rc)
136 goto out;
137
138 rc = smc_ib_modify_qp_rtr(lnk);
139 if (rc)
140 goto out;
141 smc_wr_remember_qp_attr(lnk);
142 rc = ib_req_notify_cq(lnk->smcibdev->roce_cq_recv,
143 IB_CQ_SOLICITED_MASK);
144 if (rc)
145 goto out;
146 rc = smc_wr_rx_post_init(lnk);
147 if (rc)
148 goto out;
149 smc_wr_remember_qp_attr(lnk);
150
151 if (lgr->role == SMC_SERV) {
152 rc = smc_ib_modify_qp_rts(lnk);
153 if (rc)
154 goto out;
155 smc_wr_remember_qp_attr(lnk);
156 }
157out:
158 return rc;
159}
160
161/* process context wrapper for might_sleep smc_ib_remember_port_attr */
162static void smc_ib_port_event_work(struct work_struct *work)
163{
164 struct smc_ib_device *smcibdev = container_of(
165 work, struct smc_ib_device, port_event_work);
166 u8 port_idx;
167
168 for_each_set_bit(port_idx, &smcibdev->port_event_mask, SMC_MAX_PORTS) {
169 smc_ib_remember_port_attr(smcibdev, port_idx + 1);
170 clear_bit(port_idx, &smcibdev->port_event_mask);
171 }
172}
173
174/* can be called in IRQ context */
175static void smc_ib_global_event_handler(struct ib_event_handler *handler,
176 struct ib_event *ibevent)
177{
178 struct smc_ib_device *smcibdev;
179 u8 port_idx;
180
181 smcibdev = container_of(handler, struct smc_ib_device, event_handler);
Ursula Braunbd4ad572017-01-09 16:55:20 +0100182
183 switch (ibevent->event) {
184 case IB_EVENT_PORT_ERR:
185 port_idx = ibevent->element.port_num - 1;
186 set_bit(port_idx, &smcibdev->port_event_mask);
187 schedule_work(&smcibdev->port_event_work);
188 /* fall through */
189 case IB_EVENT_DEVICE_FATAL:
190 /* tbd in follow-on patch:
191 * abnormal close of corresponding connections
192 */
193 break;
194 case IB_EVENT_PORT_ACTIVE:
195 port_idx = ibevent->element.port_num - 1;
196 set_bit(port_idx, &smcibdev->port_event_mask);
197 schedule_work(&smcibdev->port_event_work);
198 break;
199 default:
200 break;
201 }
202}
203
Ursula Braunf38ba1792017-01-09 16:55:19 +0100204void smc_ib_dealloc_protection_domain(struct smc_link *lnk)
205{
206 ib_dealloc_pd(lnk->roce_pd);
207 lnk->roce_pd = NULL;
208}
209
210int smc_ib_create_protection_domain(struct smc_link *lnk)
211{
212 int rc;
213
214 lnk->roce_pd = ib_alloc_pd(lnk->smcibdev->ibdev, 0);
215 rc = PTR_ERR_OR_ZERO(lnk->roce_pd);
216 if (IS_ERR(lnk->roce_pd))
217 lnk->roce_pd = NULL;
218 return rc;
219}
220
221static void smc_ib_qp_event_handler(struct ib_event *ibevent, void *priv)
222{
223 switch (ibevent->event) {
224 case IB_EVENT_DEVICE_FATAL:
225 case IB_EVENT_GID_CHANGE:
226 case IB_EVENT_PORT_ERR:
227 case IB_EVENT_QP_ACCESS_ERR:
228 /* tbd in follow-on patch:
229 * abnormal close of corresponding connections
230 */
231 break;
232 default:
233 break;
234 }
235}
236
237void smc_ib_destroy_queue_pair(struct smc_link *lnk)
238{
239 ib_destroy_qp(lnk->roce_qp);
240 lnk->roce_qp = NULL;
241}
242
243/* create a queue pair within the protection domain for a link */
244int smc_ib_create_queue_pair(struct smc_link *lnk)
245{
246 struct ib_qp_init_attr qp_attr = {
247 .event_handler = smc_ib_qp_event_handler,
248 .qp_context = lnk,
249 .send_cq = lnk->smcibdev->roce_cq_send,
250 .recv_cq = lnk->smcibdev->roce_cq_recv,
251 .srq = NULL,
252 .cap = {
253 .max_send_wr = SMC_WR_BUF_CNT,
254 /* include unsolicited rdma_writes as well,
255 * there are max. 2 RDMA_WRITE per 1 WR_SEND
256 */
257 .max_recv_wr = SMC_WR_BUF_CNT * 3,
258 .max_send_sge = SMC_IB_MAX_SEND_SGE,
259 .max_recv_sge = 1,
260 .max_inline_data = SMC_WR_TX_SIZE,
261 },
262 .sq_sig_type = IB_SIGNAL_REQ_WR,
263 .qp_type = IB_QPT_RC,
264 };
265 int rc;
266
267 lnk->roce_qp = ib_create_qp(lnk->roce_pd, &qp_attr);
268 rc = PTR_ERR_OR_ZERO(lnk->roce_qp);
269 if (IS_ERR(lnk->roce_qp))
270 lnk->roce_qp = NULL;
271 else
272 smc_wr_remember_qp_attr(lnk);
273 return rc;
274}
275
Ursula Brauncd6851f2017-01-09 16:55:18 +0100276/* map a new TX or RX buffer to DMA */
277int smc_ib_buf_map(struct smc_ib_device *smcibdev, int buf_size,
278 struct smc_buf_desc *buf_slot,
279 enum dma_data_direction data_direction)
280{
281 int rc = 0;
282
283 if (buf_slot->dma_addr[SMC_SINGLE_LINK])
284 return rc; /* already mapped */
285 buf_slot->dma_addr[SMC_SINGLE_LINK] =
286 ib_dma_map_single(smcibdev->ibdev, buf_slot->cpu_addr,
287 buf_size, data_direction);
288 if (ib_dma_mapping_error(smcibdev->ibdev,
289 buf_slot->dma_addr[SMC_SINGLE_LINK]))
290 rc = -EIO;
291 return rc;
292}
293
Ursula Braunbd4ad572017-01-09 16:55:20 +0100294void smc_ib_buf_unmap(struct smc_ib_device *smcibdev, int buf_size,
295 struct smc_buf_desc *buf_slot,
296 enum dma_data_direction data_direction)
297{
298 if (!buf_slot->dma_addr[SMC_SINGLE_LINK])
299 return; /* already unmapped */
300 ib_dma_unmap_single(smcibdev->ibdev, *buf_slot->dma_addr, buf_size,
301 data_direction);
302 buf_slot->dma_addr[SMC_SINGLE_LINK] = 0;
303}
304
Ursula Brauna4cf0442017-01-09 16:55:14 +0100305static int smc_ib_fill_gid_and_mac(struct smc_ib_device *smcibdev, u8 ibport)
306{
307 struct net_device *ndev;
308 int rc;
309
310 rc = ib_query_gid(smcibdev->ibdev, ibport, 0,
311 &smcibdev->gid[ibport - 1], NULL);
312 /* the SMC protocol requires specification of the roce MAC address;
313 * if net_device cannot be determined, it can be derived from gid 0
314 */
315 ndev = smcibdev->ibdev->get_netdev(smcibdev->ibdev, ibport);
316 if (ndev) {
317 memcpy(&smcibdev->mac, ndev->dev_addr, ETH_ALEN);
318 } else if (!rc) {
319 memcpy(&smcibdev->mac[ibport - 1][0],
320 &smcibdev->gid[ibport - 1].raw[8], 3);
321 memcpy(&smcibdev->mac[ibport - 1][3],
322 &smcibdev->gid[ibport - 1].raw[13], 3);
323 smcibdev->mac[ibport - 1][0] &= ~0x02;
324 }
325 return rc;
326}
327
328/* Create an identifier unique for this instance of SMC-R.
329 * The MAC-address of the first active registered IB device
330 * plus a random 2-byte number is used to create this identifier.
331 * This name is delivered to the peer during connection initialization.
332 */
333static inline void smc_ib_define_local_systemid(struct smc_ib_device *smcibdev,
334 u8 ibport)
335{
336 memcpy(&local_systemid[2], &smcibdev->mac[ibport - 1],
337 sizeof(smcibdev->mac[ibport - 1]));
338 get_random_bytes(&local_systemid[0], 2);
339}
340
341bool smc_ib_port_active(struct smc_ib_device *smcibdev, u8 ibport)
342{
343 return smcibdev->pattr[ibport - 1].state == IB_PORT_ACTIVE;
344}
345
346int smc_ib_remember_port_attr(struct smc_ib_device *smcibdev, u8 ibport)
347{
348 int rc;
349
350 memset(&smcibdev->pattr[ibport - 1], 0,
351 sizeof(smcibdev->pattr[ibport - 1]));
352 rc = ib_query_port(smcibdev->ibdev, ibport,
353 &smcibdev->pattr[ibport - 1]);
354 if (rc)
355 goto out;
356 rc = smc_ib_fill_gid_and_mac(smcibdev, ibport);
357 if (rc)
358 goto out;
359 if (!strncmp(local_systemid, SMC_LOCAL_SYSTEMID_RESET,
360 sizeof(local_systemid)) &&
361 smc_ib_port_active(smcibdev, ibport))
362 /* create unique system identifier */
363 smc_ib_define_local_systemid(smcibdev, ibport);
364out:
365 return rc;
366}
367
Ursula Braunbd4ad572017-01-09 16:55:20 +0100368long smc_ib_setup_per_ibdev(struct smc_ib_device *smcibdev)
369{
370 struct ib_cq_init_attr cqattr = {
371 .cqe = SMC_WR_MAX_CQE, .comp_vector = 0 };
372 long rc;
373
374 smcibdev->roce_cq_send = ib_create_cq(smcibdev->ibdev,
375 smc_wr_tx_cq_handler, NULL,
376 smcibdev, &cqattr);
377 rc = PTR_ERR_OR_ZERO(smcibdev->roce_cq_send);
378 if (IS_ERR(smcibdev->roce_cq_send)) {
379 smcibdev->roce_cq_send = NULL;
380 return rc;
381 }
382 smcibdev->roce_cq_recv = ib_create_cq(smcibdev->ibdev,
383 smc_wr_rx_cq_handler, NULL,
384 smcibdev, &cqattr);
385 rc = PTR_ERR_OR_ZERO(smcibdev->roce_cq_recv);
386 if (IS_ERR(smcibdev->roce_cq_recv)) {
387 smcibdev->roce_cq_recv = NULL;
388 goto err;
389 }
390 INIT_IB_EVENT_HANDLER(&smcibdev->event_handler, smcibdev->ibdev,
391 smc_ib_global_event_handler);
392 ib_register_event_handler(&smcibdev->event_handler);
393 smc_wr_add_dev(smcibdev);
394 smcibdev->initialized = 1;
395 return rc;
396
397err:
398 ib_destroy_cq(smcibdev->roce_cq_send);
399 return rc;
400}
401
402static void smc_ib_cleanup_per_ibdev(struct smc_ib_device *smcibdev)
403{
404 if (!smcibdev->initialized)
405 return;
406 smc_wr_remove_dev(smcibdev);
407 ib_unregister_event_handler(&smcibdev->event_handler);
408 ib_destroy_cq(smcibdev->roce_cq_recv);
409 ib_destroy_cq(smcibdev->roce_cq_send);
410}
411
Ursula Brauna4cf0442017-01-09 16:55:14 +0100412static struct ib_client smc_ib_client;
413
414/* callback function for ib_register_client() */
415static void smc_ib_add_dev(struct ib_device *ibdev)
416{
417 struct smc_ib_device *smcibdev;
418
419 if (ibdev->node_type != RDMA_NODE_IB_CA)
420 return;
421
422 smcibdev = kzalloc(sizeof(*smcibdev), GFP_KERNEL);
423 if (!smcibdev)
424 return;
425
426 smcibdev->ibdev = ibdev;
Ursula Braunbd4ad572017-01-09 16:55:20 +0100427 INIT_WORK(&smcibdev->port_event_work, smc_ib_port_event_work);
Ursula Brauna4cf0442017-01-09 16:55:14 +0100428
429 spin_lock(&smc_ib_devices.lock);
430 list_add_tail(&smcibdev->list, &smc_ib_devices.list);
431 spin_unlock(&smc_ib_devices.lock);
432 ib_set_client_data(ibdev, &smc_ib_client, smcibdev);
433}
434
435/* callback function for ib_register_client() */
436static void smc_ib_remove_dev(struct ib_device *ibdev, void *client_data)
437{
438 struct smc_ib_device *smcibdev;
439
440 smcibdev = ib_get_client_data(ibdev, &smc_ib_client);
441 ib_set_client_data(ibdev, &smc_ib_client, NULL);
442 spin_lock(&smc_ib_devices.lock);
443 list_del_init(&smcibdev->list); /* remove from smc_ib_devices */
444 spin_unlock(&smc_ib_devices.lock);
Thomas Richter6812baa2017-01-09 16:55:15 +0100445 smc_pnet_remove_by_ibdev(smcibdev);
Ursula Braunbd4ad572017-01-09 16:55:20 +0100446 smc_ib_cleanup_per_ibdev(smcibdev);
Ursula Brauna4cf0442017-01-09 16:55:14 +0100447 kfree(smcibdev);
448}
449
450static struct ib_client smc_ib_client = {
451 .name = "smc_ib",
452 .add = smc_ib_add_dev,
453 .remove = smc_ib_remove_dev,
454};
455
456int __init smc_ib_register_client(void)
457{
458 return ib_register_client(&smc_ib_client);
459}
460
461void smc_ib_unregister_client(void)
462{
463 ib_unregister_client(&smc_ib_client);
464}