Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2022, Microsoft Corporation. All rights reserved.
4 */
5
6#include "mana_ib.h"
7
8void mana_ib_uncfg_vport(struct mana_ib_dev *dev, struct mana_ib_pd *pd,
9 u32 port)
10{
11 struct gdma_dev *gd = dev->gdma_dev;
12 struct mana_port_context *mpc;
13 struct net_device *ndev;
14 struct mana_context *mc;
15
16 mc = gd->driver_data;
17 ndev = mc->ports[port];
18 mpc = netdev_priv(ndev);
19
20 mutex_lock(&pd->vport_mutex);
21
22 pd->vport_use_count--;
23 WARN_ON(pd->vport_use_count < 0);
24
25 if (!pd->vport_use_count)
26 mana_uncfg_vport(mpc);
27
28 mutex_unlock(&pd->vport_mutex);
29}
30
31int mana_ib_cfg_vport(struct mana_ib_dev *dev, u32 port, struct mana_ib_pd *pd,
32 u32 doorbell_id)
33{
34 struct gdma_dev *mdev = dev->gdma_dev;
35 struct mana_port_context *mpc;
36 struct mana_context *mc;
37 struct net_device *ndev;
38 int err;
39
40 mc = mdev->driver_data;
41 ndev = mc->ports[port];
42 mpc = netdev_priv(ndev);
43
44 mutex_lock(&pd->vport_mutex);
45
46 pd->vport_use_count++;
47 if (pd->vport_use_count > 1) {
48 ibdev_dbg(&dev->ib_dev,
49 "Skip as this PD is already configured vport\n");
50 mutex_unlock(&pd->vport_mutex);
51 return 0;
52 }
53
54 err = mana_cfg_vport(mpc, pd->pdn, doorbell_id);
55 if (err) {
56 pd->vport_use_count--;
57 mutex_unlock(&pd->vport_mutex);
58
59 ibdev_dbg(&dev->ib_dev, "Failed to configure vPort %d\n", err);
60 return err;
61 }
62
63 mutex_unlock(&pd->vport_mutex);
64
65 pd->tx_shortform_allowed = mpc->tx_shortform_allowed;
66 pd->tx_vp_offset = mpc->tx_vp_offset;
67
68 ibdev_dbg(&dev->ib_dev, "vport handle %llx pdid %x doorbell_id %x\n",
69 mpc->port_handle, pd->pdn, doorbell_id);
70
71 return 0;
72}
73
74int mana_ib_alloc_pd(struct ib_pd *ibpd, struct ib_udata *udata)
75{
76 struct mana_ib_pd *pd = container_of(ibpd, struct mana_ib_pd, ibpd);
77 struct ib_device *ibdev = ibpd->device;
78 struct gdma_create_pd_resp resp = {};
79 struct gdma_create_pd_req req = {};
80 enum gdma_pd_flags flags = 0;
81 struct mana_ib_dev *dev;
82 struct gdma_dev *mdev;
83 int err;
84
85 dev = container_of(ibdev, struct mana_ib_dev, ib_dev);
86 mdev = dev->gdma_dev;
87
88 mana_gd_init_req_hdr(&req.hdr, GDMA_CREATE_PD, sizeof(req),
89 sizeof(resp));
90
91 req.flags = flags;
92 err = mana_gd_send_request(mdev->gdma_context, sizeof(req), &req,
93 sizeof(resp), &resp);
94
95 if (err || resp.hdr.status) {
96 ibdev_dbg(&dev->ib_dev,
97 "Failed to get pd_id err %d status %u\n", err,
98 resp.hdr.status);
99 if (!err)
100 err = -EPROTO;
101
102 return err;
103 }
104
105 pd->pd_handle = resp.pd_handle;
106 pd->pdn = resp.pd_id;
107 ibdev_dbg(&dev->ib_dev, "pd_handle 0x%llx pd_id %d\n",
108 pd->pd_handle, pd->pdn);
109
110 mutex_init(&pd->vport_mutex);
111 pd->vport_use_count = 0;
112 return 0;
113}
114
115int mana_ib_dealloc_pd(struct ib_pd *ibpd, struct ib_udata *udata)
116{
117 struct mana_ib_pd *pd = container_of(ibpd, struct mana_ib_pd, ibpd);
118 struct ib_device *ibdev = ibpd->device;
119 struct gdma_destory_pd_resp resp = {};
120 struct gdma_destroy_pd_req req = {};
121 struct mana_ib_dev *dev;
122 struct gdma_dev *mdev;
123 int err;
124
125 dev = container_of(ibdev, struct mana_ib_dev, ib_dev);
126 mdev = dev->gdma_dev;
127
128 mana_gd_init_req_hdr(&req.hdr, GDMA_DESTROY_PD, sizeof(req),
129 sizeof(resp));
130
131 req.pd_handle = pd->pd_handle;
132 err = mana_gd_send_request(mdev->gdma_context, sizeof(req), &req,
133 sizeof(resp), &resp);
134
135 if (err || resp.hdr.status) {
136 ibdev_dbg(&dev->ib_dev,
137 "Failed to destroy pd_handle 0x%llx err %d status %u",
138 pd->pd_handle, err, resp.hdr.status);
139 if (!err)
140 err = -EPROTO;
141 }
142
143 return err;
144}
145
146static int mana_gd_destroy_doorbell_page(struct gdma_context *gc,
147 int doorbell_page)
148{
149 struct gdma_destroy_resource_range_req req = {};
150 struct gdma_resp_hdr resp = {};
151 int err;
152
153 mana_gd_init_req_hdr(&req.hdr, GDMA_DESTROY_RESOURCE_RANGE,
154 sizeof(req), sizeof(resp));
155
156 req.resource_type = GDMA_RESOURCE_DOORBELL_PAGE;
157 req.num_resources = 1;
158 req.allocated_resources = doorbell_page;
159
160 err = mana_gd_send_request(gc, sizeof(req), &req, sizeof(resp), &resp);
161 if (err || resp.status) {
162 dev_err(gc->dev,
163 "Failed to destroy doorbell page: ret %d, 0x%x\n",
164 err, resp.status);
165 return err ?: -EPROTO;
166 }
167
168 return 0;
169}
170
171static int mana_gd_allocate_doorbell_page(struct gdma_context *gc,
172 int *doorbell_page)
173{
174 struct gdma_allocate_resource_range_req req = {};
175 struct gdma_allocate_resource_range_resp resp = {};
176 int err;
177
178 mana_gd_init_req_hdr(&req.hdr, GDMA_ALLOCATE_RESOURCE_RANGE,
179 sizeof(req), sizeof(resp));
180
181 req.resource_type = GDMA_RESOURCE_DOORBELL_PAGE;
182 req.num_resources = 1;
183 req.alignment = 1;
184
185 /* Have GDMA start searching from 0 */
186 req.allocated_resources = 0;
187
188 err = mana_gd_send_request(gc, sizeof(req), &req, sizeof(resp), &resp);
189 if (err || resp.hdr.status) {
190 dev_err(gc->dev,
191 "Failed to allocate doorbell page: ret %d, 0x%x\n",
192 err, resp.hdr.status);
193 return err ?: -EPROTO;
194 }
195
196 *doorbell_page = resp.allocated_resources;
197
198 return 0;
199}
200
201int mana_ib_alloc_ucontext(struct ib_ucontext *ibcontext,
202 struct ib_udata *udata)
203{
204 struct mana_ib_ucontext *ucontext =
205 container_of(ibcontext, struct mana_ib_ucontext, ibucontext);
206 struct ib_device *ibdev = ibcontext->device;
207 struct mana_ib_dev *mdev;
208 struct gdma_context *gc;
209 struct gdma_dev *dev;
210 int doorbell_page;
211 int ret;
212
213 mdev = container_of(ibdev, struct mana_ib_dev, ib_dev);
214 dev = mdev->gdma_dev;
215 gc = dev->gdma_context;
216
217 /* Allocate a doorbell page index */
218 ret = mana_gd_allocate_doorbell_page(gc, &doorbell_page);
219 if (ret) {
220 ibdev_dbg(ibdev, "Failed to allocate doorbell page %d\n", ret);
221 return ret;
222 }
223
224 ibdev_dbg(ibdev, "Doorbell page allocated %d\n", doorbell_page);
225
226 ucontext->doorbell = doorbell_page;
227
228 return 0;
229}
230
231void mana_ib_dealloc_ucontext(struct ib_ucontext *ibcontext)
232{
233 struct mana_ib_ucontext *mana_ucontext =
234 container_of(ibcontext, struct mana_ib_ucontext, ibucontext);
235 struct ib_device *ibdev = ibcontext->device;
236 struct mana_ib_dev *mdev;
237 struct gdma_context *gc;
238 int ret;
239
240 mdev = container_of(ibdev, struct mana_ib_dev, ib_dev);
241 gc = mdev->gdma_dev->gdma_context;
242
243 ret = mana_gd_destroy_doorbell_page(gc, mana_ucontext->doorbell);
244 if (ret)
245 ibdev_dbg(ibdev, "Failed to destroy doorbell page %d\n", ret);
246}
247
248static int
249mana_ib_gd_first_dma_region(struct mana_ib_dev *dev,
250 struct gdma_context *gc,
251 struct gdma_create_dma_region_req *create_req,
252 size_t num_pages, mana_handle_t *gdma_region)
253{
254 struct gdma_create_dma_region_resp create_resp = {};
255 unsigned int create_req_msg_size;
256 int err;
257
258 create_req_msg_size =
259 struct_size(create_req, page_addr_list, num_pages);
260 create_req->page_addr_list_len = num_pages;
261
262 err = mana_gd_send_request(gc, create_req_msg_size, create_req,
263 sizeof(create_resp), &create_resp);
264 if (err || create_resp.hdr.status) {
265 ibdev_dbg(&dev->ib_dev,
266 "Failed to create DMA region: %d, 0x%x\n",
267 err, create_resp.hdr.status);
268 if (!err)
269 err = -EPROTO;
270
271 return err;
272 }
273
274 *gdma_region = create_resp.dma_region_handle;
275 ibdev_dbg(&dev->ib_dev, "Created DMA region handle 0x%llx\n",
276 *gdma_region);
277
278 return 0;
279}
280
281static int
282mana_ib_gd_add_dma_region(struct mana_ib_dev *dev, struct gdma_context *gc,
283 struct gdma_dma_region_add_pages_req *add_req,
284 unsigned int num_pages, u32 expected_status)
285{
286 unsigned int add_req_msg_size =
287 struct_size(add_req, page_addr_list, num_pages);
288 struct gdma_general_resp add_resp = {};
289 int err;
290
291 mana_gd_init_req_hdr(&add_req->hdr, GDMA_DMA_REGION_ADD_PAGES,
292 add_req_msg_size, sizeof(add_resp));
293 add_req->page_addr_list_len = num_pages;
294
295 err = mana_gd_send_request(gc, add_req_msg_size, add_req,
296 sizeof(add_resp), &add_resp);
297 if (err || add_resp.hdr.status != expected_status) {
298 ibdev_dbg(&dev->ib_dev,
299 "Failed to create DMA region: %d, 0x%x\n",
300 err, add_resp.hdr.status);
301
302 if (!err)
303 err = -EPROTO;
304
305 return err;
306 }
307
308 return 0;
309}
310
311int mana_ib_gd_create_dma_region(struct mana_ib_dev *dev, struct ib_umem *umem,
312 mana_handle_t *gdma_region)
313{
314 struct gdma_dma_region_add_pages_req *add_req = NULL;
315 size_t num_pages_processed = 0, num_pages_to_handle;
316 struct gdma_create_dma_region_req *create_req;
317 unsigned int create_req_msg_size;
318 struct hw_channel_context *hwc;
319 struct ib_block_iter biter;
320 size_t max_pgs_add_cmd = 0;
321 size_t max_pgs_create_cmd;
322 struct gdma_context *gc;
323 size_t num_pages_total;
324 struct gdma_dev *mdev;
325 unsigned long page_sz;
326 unsigned int tail = 0;
327 u64 *page_addr_list;
328 void *request_buf;
329 int err;
330
331 mdev = dev->gdma_dev;
332 gc = mdev->gdma_context;
333 hwc = gc->hwc.driver_data;
334
335 /* Hardware requires dma region to align to chosen page size */
336 page_sz = ib_umem_find_best_pgsz(umem, PAGE_SZ_BM, 0);
337 if (!page_sz) {
338 ibdev_dbg(&dev->ib_dev, "failed to find page size.\n");
339 return -ENOMEM;
340 }
341 num_pages_total = ib_umem_num_dma_blocks(umem, page_sz);
342
343 max_pgs_create_cmd =
344 (hwc->max_req_msg_size - sizeof(*create_req)) / sizeof(u64);
345 num_pages_to_handle =
346 min_t(size_t, num_pages_total, max_pgs_create_cmd);
347 create_req_msg_size =
348 struct_size(create_req, page_addr_list, num_pages_to_handle);
349
350 request_buf = kzalloc(hwc->max_req_msg_size, GFP_KERNEL);
351 if (!request_buf)
352 return -ENOMEM;
353
354 create_req = request_buf;
355 mana_gd_init_req_hdr(&create_req->hdr, GDMA_CREATE_DMA_REGION,
356 create_req_msg_size,
357 sizeof(struct gdma_create_dma_region_resp));
358
359 create_req->length = umem->length;
360 create_req->offset_in_page = umem->address & (page_sz - 1);
361 create_req->gdma_page_type = order_base_2(page_sz) - PAGE_SHIFT;
362 create_req->page_count = num_pages_total;
363
364 ibdev_dbg(&dev->ib_dev, "size_dma_region %lu num_pages_total %lu\n",
365 umem->length, num_pages_total);
366
367 ibdev_dbg(&dev->ib_dev, "page_sz %lu offset_in_page %u\n",
368 page_sz, create_req->offset_in_page);
369
370 ibdev_dbg(&dev->ib_dev, "num_pages_to_handle %lu, gdma_page_type %u",
371 num_pages_to_handle, create_req->gdma_page_type);
372
373 page_addr_list = create_req->page_addr_list;
374 rdma_umem_for_each_dma_block(umem, &biter, page_sz) {
375 page_addr_list[tail++] = rdma_block_iter_dma_address(&biter);
376 if (tail < num_pages_to_handle)
377 continue;
378
379 if (!num_pages_processed) {
380 /* First create message */
381 err = mana_ib_gd_first_dma_region(dev, gc, create_req,
382 tail, gdma_region);
383 if (err)
384 goto out;
385
386 max_pgs_add_cmd = (hwc->max_req_msg_size -
387 sizeof(*add_req)) / sizeof(u64);
388
389 add_req = request_buf;
390 add_req->dma_region_handle = *gdma_region;
391 add_req->reserved3 = 0;
392 page_addr_list = add_req->page_addr_list;
393 } else {
394 /* Subsequent create messages */
395 u32 expected_s = 0;
396
397 if (num_pages_processed + num_pages_to_handle <
398 num_pages_total)
399 expected_s = GDMA_STATUS_MORE_ENTRIES;
400
401 err = mana_ib_gd_add_dma_region(dev, gc, add_req, tail,
402 expected_s);
403 if (err)
404 break;
405 }
406
407 num_pages_processed += tail;
408 tail = 0;
409
410 /* The remaining pages to create */
411 num_pages_to_handle =
412 min_t(size_t,
413 num_pages_total - num_pages_processed,
414 max_pgs_add_cmd);
415 }
416
417 if (err)
418 mana_ib_gd_destroy_dma_region(dev, *gdma_region);
419
420out:
421 kfree(request_buf);
422 return err;
423}
424
425int mana_ib_gd_destroy_dma_region(struct mana_ib_dev *dev, u64 gdma_region)
426{
427 struct gdma_dev *mdev = dev->gdma_dev;
428 struct gdma_context *gc;
429
430 gc = mdev->gdma_context;
431 ibdev_dbg(&dev->ib_dev, "destroy dma region 0x%llx\n", gdma_region);
432
433 return mana_gd_destroy_dma_region(gc, gdma_region);
434}
435
436int mana_ib_mmap(struct ib_ucontext *ibcontext, struct vm_area_struct *vma)
437{
438 struct mana_ib_ucontext *mana_ucontext =
439 container_of(ibcontext, struct mana_ib_ucontext, ibucontext);
440 struct ib_device *ibdev = ibcontext->device;
441 struct mana_ib_dev *mdev;
442 struct gdma_context *gc;
443 phys_addr_t pfn;
444 pgprot_t prot;
445 int ret;
446
447 mdev = container_of(ibdev, struct mana_ib_dev, ib_dev);
448 gc = mdev->gdma_dev->gdma_context;
449
450 if (vma->vm_pgoff != 0) {
451 ibdev_dbg(ibdev, "Unexpected vm_pgoff %lu\n", vma->vm_pgoff);
452 return -EINVAL;
453 }
454
455 /* Map to the page indexed by ucontext->doorbell */
456 pfn = (gc->phys_db_page_base +
457 gc->db_page_size * mana_ucontext->doorbell) >>
458 PAGE_SHIFT;
459 prot = pgprot_writecombine(vma->vm_page_prot);
460
461 ret = rdma_user_mmap_io(ibcontext, vma, pfn, gc->db_page_size, prot,
462 NULL);
463 if (ret)
464 ibdev_dbg(ibdev, "can't rdma_user_mmap_io ret %d\n", ret);
465 else
466 ibdev_dbg(ibdev, "mapped I/O pfn 0x%llx page_size %u, ret %d\n",
467 pfn, gc->db_page_size, ret);
468
469 return ret;
470}
471
472int mana_ib_get_port_immutable(struct ib_device *ibdev, u32 port_num,
473 struct ib_port_immutable *immutable)
474{
475 /*
476 * This version only support RAW_PACKET
477 * other values need to be filled for other types
478 */
479 immutable->core_cap_flags = RDMA_CORE_PORT_RAW_PACKET;
480
481 return 0;
482}
483
484int mana_ib_query_device(struct ib_device *ibdev, struct ib_device_attr *props,
485 struct ib_udata *uhw)
486{
487 props->max_qp = MANA_MAX_NUM_QUEUES;
488 props->max_qp_wr = MAX_SEND_BUFFERS_PER_QUEUE;
489
490 /*
491 * max_cqe could be potentially much bigger.
492 * As this version of driver only support RAW QP, set it to the same
493 * value as max_qp_wr
494 */
495 props->max_cqe = MAX_SEND_BUFFERS_PER_QUEUE;
496
497 props->max_mr_size = MANA_IB_MAX_MR_SIZE;
498 props->max_mr = MANA_IB_MAX_MR;
499 props->max_send_sge = MAX_TX_WQE_SGL_ENTRIES;
500 props->max_recv_sge = MAX_RX_WQE_SGL_ENTRIES;
501
502 return 0;
503}
504
505int mana_ib_query_port(struct ib_device *ibdev, u32 port,
506 struct ib_port_attr *props)
507{
508 /* This version doesn't return port properties */
509 return 0;
510}
511
512int mana_ib_query_gid(struct ib_device *ibdev, u32 port, int index,
513 union ib_gid *gid)
514{
515 /* This version doesn't return GID properties */
516 return 0;
517}
518
519void mana_ib_disassociate_ucontext(struct ib_ucontext *ibcontext)
520{
521}
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2022, Microsoft Corporation. All rights reserved.
4 */
5
6#include "mana_ib.h"
7
8void mana_ib_uncfg_vport(struct mana_ib_dev *dev, struct mana_ib_pd *pd,
9 u32 port)
10{
11 struct mana_port_context *mpc;
12 struct net_device *ndev;
13
14 ndev = mana_ib_get_netdev(&dev->ib_dev, port);
15 mpc = netdev_priv(ndev);
16
17 mutex_lock(&pd->vport_mutex);
18
19 pd->vport_use_count--;
20 WARN_ON(pd->vport_use_count < 0);
21
22 if (!pd->vport_use_count)
23 mana_uncfg_vport(mpc);
24
25 mutex_unlock(&pd->vport_mutex);
26}
27
28int mana_ib_cfg_vport(struct mana_ib_dev *dev, u32 port, struct mana_ib_pd *pd,
29 u32 doorbell_id)
30{
31 struct mana_port_context *mpc;
32 struct net_device *ndev;
33 int err;
34
35 ndev = mana_ib_get_netdev(&dev->ib_dev, port);
36 mpc = netdev_priv(ndev);
37
38 mutex_lock(&pd->vport_mutex);
39
40 pd->vport_use_count++;
41 if (pd->vport_use_count > 1) {
42 ibdev_dbg(&dev->ib_dev,
43 "Skip as this PD is already configured vport\n");
44 mutex_unlock(&pd->vport_mutex);
45 return 0;
46 }
47
48 err = mana_cfg_vport(mpc, pd->pdn, doorbell_id);
49 if (err) {
50 pd->vport_use_count--;
51 mutex_unlock(&pd->vport_mutex);
52
53 ibdev_dbg(&dev->ib_dev, "Failed to configure vPort %d\n", err);
54 return err;
55 }
56
57 mutex_unlock(&pd->vport_mutex);
58
59 pd->tx_shortform_allowed = mpc->tx_shortform_allowed;
60 pd->tx_vp_offset = mpc->tx_vp_offset;
61
62 ibdev_dbg(&dev->ib_dev, "vport handle %llx pdid %x doorbell_id %x\n",
63 mpc->port_handle, pd->pdn, doorbell_id);
64
65 return 0;
66}
67
68int mana_ib_alloc_pd(struct ib_pd *ibpd, struct ib_udata *udata)
69{
70 struct mana_ib_pd *pd = container_of(ibpd, struct mana_ib_pd, ibpd);
71 struct ib_device *ibdev = ibpd->device;
72 struct gdma_create_pd_resp resp = {};
73 struct gdma_create_pd_req req = {};
74 enum gdma_pd_flags flags = 0;
75 struct mana_ib_dev *dev;
76 struct gdma_context *gc;
77 int err;
78
79 dev = container_of(ibdev, struct mana_ib_dev, ib_dev);
80 gc = mdev_to_gc(dev);
81
82 mana_gd_init_req_hdr(&req.hdr, GDMA_CREATE_PD, sizeof(req),
83 sizeof(resp));
84
85 req.flags = flags;
86 err = mana_gd_send_request(gc, sizeof(req), &req,
87 sizeof(resp), &resp);
88
89 if (err || resp.hdr.status) {
90 ibdev_dbg(&dev->ib_dev,
91 "Failed to get pd_id err %d status %u\n", err,
92 resp.hdr.status);
93 if (!err)
94 err = -EPROTO;
95
96 return err;
97 }
98
99 pd->pd_handle = resp.pd_handle;
100 pd->pdn = resp.pd_id;
101 ibdev_dbg(&dev->ib_dev, "pd_handle 0x%llx pd_id %d\n",
102 pd->pd_handle, pd->pdn);
103
104 mutex_init(&pd->vport_mutex);
105 pd->vport_use_count = 0;
106 return 0;
107}
108
109int mana_ib_dealloc_pd(struct ib_pd *ibpd, struct ib_udata *udata)
110{
111 struct mana_ib_pd *pd = container_of(ibpd, struct mana_ib_pd, ibpd);
112 struct ib_device *ibdev = ibpd->device;
113 struct gdma_destory_pd_resp resp = {};
114 struct gdma_destroy_pd_req req = {};
115 struct mana_ib_dev *dev;
116 struct gdma_context *gc;
117 int err;
118
119 dev = container_of(ibdev, struct mana_ib_dev, ib_dev);
120 gc = mdev_to_gc(dev);
121
122 mana_gd_init_req_hdr(&req.hdr, GDMA_DESTROY_PD, sizeof(req),
123 sizeof(resp));
124
125 req.pd_handle = pd->pd_handle;
126 err = mana_gd_send_request(gc, sizeof(req), &req,
127 sizeof(resp), &resp);
128
129 if (err || resp.hdr.status) {
130 ibdev_dbg(&dev->ib_dev,
131 "Failed to destroy pd_handle 0x%llx err %d status %u",
132 pd->pd_handle, err, resp.hdr.status);
133 if (!err)
134 err = -EPROTO;
135 }
136
137 return err;
138}
139
140static int mana_gd_destroy_doorbell_page(struct gdma_context *gc,
141 int doorbell_page)
142{
143 struct gdma_destroy_resource_range_req req = {};
144 struct gdma_resp_hdr resp = {};
145 int err;
146
147 mana_gd_init_req_hdr(&req.hdr, GDMA_DESTROY_RESOURCE_RANGE,
148 sizeof(req), sizeof(resp));
149
150 req.resource_type = GDMA_RESOURCE_DOORBELL_PAGE;
151 req.num_resources = 1;
152 req.allocated_resources = doorbell_page;
153
154 err = mana_gd_send_request(gc, sizeof(req), &req, sizeof(resp), &resp);
155 if (err || resp.status) {
156 dev_err(gc->dev,
157 "Failed to destroy doorbell page: ret %d, 0x%x\n",
158 err, resp.status);
159 return err ?: -EPROTO;
160 }
161
162 return 0;
163}
164
165static int mana_gd_allocate_doorbell_page(struct gdma_context *gc,
166 int *doorbell_page)
167{
168 struct gdma_allocate_resource_range_req req = {};
169 struct gdma_allocate_resource_range_resp resp = {};
170 int err;
171
172 mana_gd_init_req_hdr(&req.hdr, GDMA_ALLOCATE_RESOURCE_RANGE,
173 sizeof(req), sizeof(resp));
174
175 req.resource_type = GDMA_RESOURCE_DOORBELL_PAGE;
176 req.num_resources = 1;
177 req.alignment = 1;
178
179 /* Have GDMA start searching from 0 */
180 req.allocated_resources = 0;
181
182 err = mana_gd_send_request(gc, sizeof(req), &req, sizeof(resp), &resp);
183 if (err || resp.hdr.status) {
184 dev_err(gc->dev,
185 "Failed to allocate doorbell page: ret %d, 0x%x\n",
186 err, resp.hdr.status);
187 return err ?: -EPROTO;
188 }
189
190 *doorbell_page = resp.allocated_resources;
191
192 return 0;
193}
194
195int mana_ib_alloc_ucontext(struct ib_ucontext *ibcontext,
196 struct ib_udata *udata)
197{
198 struct mana_ib_ucontext *ucontext =
199 container_of(ibcontext, struct mana_ib_ucontext, ibucontext);
200 struct ib_device *ibdev = ibcontext->device;
201 struct mana_ib_dev *mdev;
202 struct gdma_context *gc;
203 int doorbell_page;
204 int ret;
205
206 mdev = container_of(ibdev, struct mana_ib_dev, ib_dev);
207 gc = mdev_to_gc(mdev);
208
209 /* Allocate a doorbell page index */
210 ret = mana_gd_allocate_doorbell_page(gc, &doorbell_page);
211 if (ret) {
212 ibdev_dbg(ibdev, "Failed to allocate doorbell page %d\n", ret);
213 return ret;
214 }
215
216 ibdev_dbg(ibdev, "Doorbell page allocated %d\n", doorbell_page);
217
218 ucontext->doorbell = doorbell_page;
219
220 return 0;
221}
222
223void mana_ib_dealloc_ucontext(struct ib_ucontext *ibcontext)
224{
225 struct mana_ib_ucontext *mana_ucontext =
226 container_of(ibcontext, struct mana_ib_ucontext, ibucontext);
227 struct ib_device *ibdev = ibcontext->device;
228 struct mana_ib_dev *mdev;
229 struct gdma_context *gc;
230 int ret;
231
232 mdev = container_of(ibdev, struct mana_ib_dev, ib_dev);
233 gc = mdev_to_gc(mdev);
234
235 ret = mana_gd_destroy_doorbell_page(gc, mana_ucontext->doorbell);
236 if (ret)
237 ibdev_dbg(ibdev, "Failed to destroy doorbell page %d\n", ret);
238}
239
240int mana_ib_create_queue(struct mana_ib_dev *mdev, u64 addr, u32 size,
241 struct mana_ib_queue *queue)
242{
243 struct ib_umem *umem;
244 int err;
245
246 queue->umem = NULL;
247 queue->id = INVALID_QUEUE_ID;
248 queue->gdma_region = GDMA_INVALID_DMA_REGION;
249
250 umem = ib_umem_get(&mdev->ib_dev, addr, size, IB_ACCESS_LOCAL_WRITE);
251 if (IS_ERR(umem)) {
252 err = PTR_ERR(umem);
253 ibdev_dbg(&mdev->ib_dev, "Failed to get umem, %d\n", err);
254 return err;
255 }
256
257 err = mana_ib_create_zero_offset_dma_region(mdev, umem, &queue->gdma_region);
258 if (err) {
259 ibdev_dbg(&mdev->ib_dev, "Failed to create dma region, %d\n", err);
260 goto free_umem;
261 }
262 queue->umem = umem;
263
264 ibdev_dbg(&mdev->ib_dev,
265 "create_dma_region ret %d gdma_region 0x%llx\n",
266 err, queue->gdma_region);
267
268 return 0;
269free_umem:
270 ib_umem_release(umem);
271 return err;
272}
273
274void mana_ib_destroy_queue(struct mana_ib_dev *mdev, struct mana_ib_queue *queue)
275{
276 /* Ignore return code as there is not much we can do about it.
277 * The error message is printed inside.
278 */
279 mana_ib_gd_destroy_dma_region(mdev, queue->gdma_region);
280 ib_umem_release(queue->umem);
281}
282
283static int
284mana_ib_gd_first_dma_region(struct mana_ib_dev *dev,
285 struct gdma_context *gc,
286 struct gdma_create_dma_region_req *create_req,
287 size_t num_pages, mana_handle_t *gdma_region,
288 u32 expected_status)
289{
290 struct gdma_create_dma_region_resp create_resp = {};
291 unsigned int create_req_msg_size;
292 int err;
293
294 create_req_msg_size =
295 struct_size(create_req, page_addr_list, num_pages);
296 create_req->page_addr_list_len = num_pages;
297
298 err = mana_gd_send_request(gc, create_req_msg_size, create_req,
299 sizeof(create_resp), &create_resp);
300 if (err || create_resp.hdr.status != expected_status) {
301 ibdev_dbg(&dev->ib_dev,
302 "Failed to create DMA region: %d, 0x%x\n",
303 err, create_resp.hdr.status);
304 if (!err)
305 err = -EPROTO;
306
307 return err;
308 }
309
310 *gdma_region = create_resp.dma_region_handle;
311 ibdev_dbg(&dev->ib_dev, "Created DMA region handle 0x%llx\n",
312 *gdma_region);
313
314 return 0;
315}
316
317static int
318mana_ib_gd_add_dma_region(struct mana_ib_dev *dev, struct gdma_context *gc,
319 struct gdma_dma_region_add_pages_req *add_req,
320 unsigned int num_pages, u32 expected_status)
321{
322 unsigned int add_req_msg_size =
323 struct_size(add_req, page_addr_list, num_pages);
324 struct gdma_general_resp add_resp = {};
325 int err;
326
327 mana_gd_init_req_hdr(&add_req->hdr, GDMA_DMA_REGION_ADD_PAGES,
328 add_req_msg_size, sizeof(add_resp));
329 add_req->page_addr_list_len = num_pages;
330
331 err = mana_gd_send_request(gc, add_req_msg_size, add_req,
332 sizeof(add_resp), &add_resp);
333 if (err || add_resp.hdr.status != expected_status) {
334 ibdev_dbg(&dev->ib_dev,
335 "Failed to create DMA region: %d, 0x%x\n",
336 err, add_resp.hdr.status);
337
338 if (!err)
339 err = -EPROTO;
340
341 return err;
342 }
343
344 return 0;
345}
346
347static int mana_ib_gd_create_dma_region(struct mana_ib_dev *dev, struct ib_umem *umem,
348 mana_handle_t *gdma_region, unsigned long page_sz)
349{
350 struct gdma_dma_region_add_pages_req *add_req = NULL;
351 size_t num_pages_processed = 0, num_pages_to_handle;
352 struct gdma_create_dma_region_req *create_req;
353 unsigned int create_req_msg_size;
354 struct hw_channel_context *hwc;
355 struct ib_block_iter biter;
356 size_t max_pgs_add_cmd = 0;
357 size_t max_pgs_create_cmd;
358 struct gdma_context *gc;
359 size_t num_pages_total;
360 unsigned int tail = 0;
361 u64 *page_addr_list;
362 void *request_buf;
363 int err;
364
365 gc = mdev_to_gc(dev);
366 hwc = gc->hwc.driver_data;
367
368 num_pages_total = ib_umem_num_dma_blocks(umem, page_sz);
369
370 max_pgs_create_cmd =
371 (hwc->max_req_msg_size - sizeof(*create_req)) / sizeof(u64);
372 num_pages_to_handle =
373 min_t(size_t, num_pages_total, max_pgs_create_cmd);
374 create_req_msg_size =
375 struct_size(create_req, page_addr_list, num_pages_to_handle);
376
377 request_buf = kzalloc(hwc->max_req_msg_size, GFP_KERNEL);
378 if (!request_buf)
379 return -ENOMEM;
380
381 create_req = request_buf;
382 mana_gd_init_req_hdr(&create_req->hdr, GDMA_CREATE_DMA_REGION,
383 create_req_msg_size,
384 sizeof(struct gdma_create_dma_region_resp));
385
386 create_req->length = umem->length;
387 create_req->offset_in_page = ib_umem_dma_offset(umem, page_sz);
388 create_req->gdma_page_type = order_base_2(page_sz) - PAGE_SHIFT;
389 create_req->page_count = num_pages_total;
390
391 ibdev_dbg(&dev->ib_dev, "size_dma_region %lu num_pages_total %lu\n",
392 umem->length, num_pages_total);
393
394 ibdev_dbg(&dev->ib_dev, "page_sz %lu offset_in_page %u\n",
395 page_sz, create_req->offset_in_page);
396
397 ibdev_dbg(&dev->ib_dev, "num_pages_to_handle %lu, gdma_page_type %u",
398 num_pages_to_handle, create_req->gdma_page_type);
399
400 page_addr_list = create_req->page_addr_list;
401 rdma_umem_for_each_dma_block(umem, &biter, page_sz) {
402 u32 expected_status = 0;
403
404 page_addr_list[tail++] = rdma_block_iter_dma_address(&biter);
405 if (tail < num_pages_to_handle)
406 continue;
407
408 if (num_pages_processed + num_pages_to_handle <
409 num_pages_total)
410 expected_status = GDMA_STATUS_MORE_ENTRIES;
411
412 if (!num_pages_processed) {
413 /* First create message */
414 err = mana_ib_gd_first_dma_region(dev, gc, create_req,
415 tail, gdma_region,
416 expected_status);
417 if (err)
418 goto out;
419
420 max_pgs_add_cmd = (hwc->max_req_msg_size -
421 sizeof(*add_req)) / sizeof(u64);
422
423 add_req = request_buf;
424 add_req->dma_region_handle = *gdma_region;
425 add_req->reserved3 = 0;
426 page_addr_list = add_req->page_addr_list;
427 } else {
428 /* Subsequent create messages */
429 err = mana_ib_gd_add_dma_region(dev, gc, add_req, tail,
430 expected_status);
431 if (err)
432 break;
433 }
434
435 num_pages_processed += tail;
436 tail = 0;
437
438 /* The remaining pages to create */
439 num_pages_to_handle =
440 min_t(size_t,
441 num_pages_total - num_pages_processed,
442 max_pgs_add_cmd);
443 }
444
445 if (err)
446 mana_ib_gd_destroy_dma_region(dev, *gdma_region);
447
448out:
449 kfree(request_buf);
450 return err;
451}
452
453int mana_ib_create_dma_region(struct mana_ib_dev *dev, struct ib_umem *umem,
454 mana_handle_t *gdma_region, u64 virt)
455{
456 unsigned long page_sz;
457
458 page_sz = ib_umem_find_best_pgsz(umem, PAGE_SZ_BM, virt);
459 if (!page_sz) {
460 ibdev_dbg(&dev->ib_dev, "Failed to find page size.\n");
461 return -EINVAL;
462 }
463
464 return mana_ib_gd_create_dma_region(dev, umem, gdma_region, page_sz);
465}
466
467int mana_ib_create_zero_offset_dma_region(struct mana_ib_dev *dev, struct ib_umem *umem,
468 mana_handle_t *gdma_region)
469{
470 unsigned long page_sz;
471
472 /* Hardware requires dma region to align to chosen page size */
473 page_sz = ib_umem_find_best_pgoff(umem, PAGE_SZ_BM, 0);
474 if (!page_sz) {
475 ibdev_dbg(&dev->ib_dev, "Failed to find page size.\n");
476 return -EINVAL;
477 }
478
479 return mana_ib_gd_create_dma_region(dev, umem, gdma_region, page_sz);
480}
481
482int mana_ib_gd_destroy_dma_region(struct mana_ib_dev *dev, u64 gdma_region)
483{
484 struct gdma_context *gc = mdev_to_gc(dev);
485
486 ibdev_dbg(&dev->ib_dev, "destroy dma region 0x%llx\n", gdma_region);
487
488 return mana_gd_destroy_dma_region(gc, gdma_region);
489}
490
491int mana_ib_mmap(struct ib_ucontext *ibcontext, struct vm_area_struct *vma)
492{
493 struct mana_ib_ucontext *mana_ucontext =
494 container_of(ibcontext, struct mana_ib_ucontext, ibucontext);
495 struct ib_device *ibdev = ibcontext->device;
496 struct mana_ib_dev *mdev;
497 struct gdma_context *gc;
498 phys_addr_t pfn;
499 pgprot_t prot;
500 int ret;
501
502 mdev = container_of(ibdev, struct mana_ib_dev, ib_dev);
503 gc = mdev_to_gc(mdev);
504
505 if (vma->vm_pgoff != 0) {
506 ibdev_dbg(ibdev, "Unexpected vm_pgoff %lu\n", vma->vm_pgoff);
507 return -EINVAL;
508 }
509
510 /* Map to the page indexed by ucontext->doorbell */
511 pfn = (gc->phys_db_page_base +
512 gc->db_page_size * mana_ucontext->doorbell) >>
513 PAGE_SHIFT;
514 prot = pgprot_writecombine(vma->vm_page_prot);
515
516 ret = rdma_user_mmap_io(ibcontext, vma, pfn, gc->db_page_size, prot,
517 NULL);
518 if (ret)
519 ibdev_dbg(ibdev, "can't rdma_user_mmap_io ret %d\n", ret);
520 else
521 ibdev_dbg(ibdev, "mapped I/O pfn 0x%llx page_size %u, ret %d\n",
522 pfn, gc->db_page_size, ret);
523
524 return ret;
525}
526
527int mana_ib_get_port_immutable(struct ib_device *ibdev, u32 port_num,
528 struct ib_port_immutable *immutable)
529{
530 /*
531 * This version only support RAW_PACKET
532 * other values need to be filled for other types
533 */
534 immutable->core_cap_flags = RDMA_CORE_PORT_RAW_PACKET;
535
536 return 0;
537}
538
539int mana_ib_query_device(struct ib_device *ibdev, struct ib_device_attr *props,
540 struct ib_udata *uhw)
541{
542 struct mana_ib_dev *dev = container_of(ibdev,
543 struct mana_ib_dev, ib_dev);
544
545 props->max_qp = dev->adapter_caps.max_qp_count;
546 props->max_qp_wr = dev->adapter_caps.max_qp_wr;
547 props->max_cq = dev->adapter_caps.max_cq_count;
548 props->max_cqe = dev->adapter_caps.max_qp_wr;
549 props->max_mr = dev->adapter_caps.max_mr_count;
550 props->max_mr_size = MANA_IB_MAX_MR_SIZE;
551 props->max_send_sge = dev->adapter_caps.max_send_sge_count;
552 props->max_recv_sge = dev->adapter_caps.max_recv_sge_count;
553
554 return 0;
555}
556
557int mana_ib_query_port(struct ib_device *ibdev, u32 port,
558 struct ib_port_attr *props)
559{
560 /* This version doesn't return port properties */
561 return 0;
562}
563
564int mana_ib_query_gid(struct ib_device *ibdev, u32 port, int index,
565 union ib_gid *gid)
566{
567 /* This version doesn't return GID properties */
568 return 0;
569}
570
571void mana_ib_disassociate_ucontext(struct ib_ucontext *ibcontext)
572{
573}
574
575int mana_ib_gd_query_adapter_caps(struct mana_ib_dev *dev)
576{
577 struct mana_ib_adapter_caps *caps = &dev->adapter_caps;
578 struct mana_ib_query_adapter_caps_resp resp = {};
579 struct mana_ib_query_adapter_caps_req req = {};
580 int err;
581
582 mana_gd_init_req_hdr(&req.hdr, MANA_IB_GET_ADAPTER_CAP, sizeof(req),
583 sizeof(resp));
584 req.hdr.resp.msg_version = GDMA_MESSAGE_V3;
585 req.hdr.dev_id = dev->gdma_dev->dev_id;
586
587 err = mana_gd_send_request(mdev_to_gc(dev), sizeof(req),
588 &req, sizeof(resp), &resp);
589
590 if (err) {
591 ibdev_err(&dev->ib_dev,
592 "Failed to query adapter caps err %d", err);
593 return err;
594 }
595
596 caps->max_sq_id = resp.max_sq_id;
597 caps->max_rq_id = resp.max_rq_id;
598 caps->max_cq_id = resp.max_cq_id;
599 caps->max_qp_count = resp.max_qp_count;
600 caps->max_cq_count = resp.max_cq_count;
601 caps->max_mr_count = resp.max_mr_count;
602 caps->max_pd_count = resp.max_pd_count;
603 caps->max_inbound_read_limit = resp.max_inbound_read_limit;
604 caps->max_outbound_read_limit = resp.max_outbound_read_limit;
605 caps->mw_count = resp.mw_count;
606 caps->max_srq_count = resp.max_srq_count;
607 caps->max_qp_wr = min_t(u32,
608 resp.max_requester_sq_size / GDMA_MAX_SQE_SIZE,
609 resp.max_requester_rq_size / GDMA_MAX_RQE_SIZE);
610 caps->max_inline_data_size = resp.max_inline_data_size;
611 caps->max_send_sge_count = resp.max_send_sge_count;
612 caps->max_recv_sge_count = resp.max_recv_sge_count;
613
614 return 0;
615}