f904bb34477ae76e88859e3a3cbdaf89deffa156
[linux-2.6-microblaze.git] / drivers / infiniband / sw / rdmavt / vt.c
1 /*
2  * Copyright(c) 2016 - 2018 Intel Corporation.
3  *
4  * This file is provided under a dual BSD/GPLv2 license.  When using or
5  * redistributing this file, you may do so under either license.
6  *
7  * GPL LICENSE SUMMARY
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of version 2 of the GNU General Public License as
11  * published by the Free Software Foundation.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * BSD LICENSE
19  *
20  * Redistribution and use in source and binary forms, with or without
21  * modification, are permitted provided that the following conditions
22  * are met:
23  *
24  *  - Redistributions of source code must retain the above copyright
25  *    notice, this list of conditions and the following disclaimer.
26  *  - Redistributions in binary form must reproduce the above copyright
27  *    notice, this list of conditions and the following disclaimer in
28  *    the documentation and/or other materials provided with the
29  *    distribution.
30  *  - Neither the name of Intel Corporation nor the names of its
31  *    contributors may be used to endorse or promote products derived
32  *    from this software without specific prior written permission.
33  *
34  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45  *
46  */
47
48 #include <linux/module.h>
49 #include <linux/kernel.h>
50 #include <linux/dma-mapping.h>
51 #include "vt.h"
52 #include "cq.h"
53 #include "trace.h"
54
55 #define RVT_UVERBS_ABI_VERSION 2
56
57 MODULE_LICENSE("Dual BSD/GPL");
58 MODULE_DESCRIPTION("RDMA Verbs Transport Library");
59
60 static int rvt_init(void)
61 {
62         int ret = rvt_driver_cq_init();
63
64         if (ret)
65                 pr_err("Error in driver CQ init.\n");
66
67         return ret;
68 }
69 module_init(rvt_init);
70
71 static void rvt_cleanup(void)
72 {
73         rvt_cq_exit();
74 }
75 module_exit(rvt_cleanup);
76
77 /**
78  * rvt_alloc_device - allocate rdi
79  * @size: how big of a structure to allocate
80  * @nports: number of ports to allocate array slots for
81  *
82  * Use IB core device alloc to allocate space for the rdi which is assumed to be
83  * inside of the ib_device. Any extra space that drivers require should be
84  * included in size.
85  *
86  * We also allocate a port array based on the number of ports.
87  *
88  * Return: pointer to allocated rdi
89  */
90 struct rvt_dev_info *rvt_alloc_device(size_t size, int nports)
91 {
92         struct rvt_dev_info *rdi;
93
94         rdi = container_of(_ib_alloc_device(size), struct rvt_dev_info, ibdev);
95         if (!rdi)
96                 return rdi;
97
98         rdi->ports = kcalloc(nports,
99                              sizeof(struct rvt_ibport **),
100                              GFP_KERNEL);
101         if (!rdi->ports)
102                 ib_dealloc_device(&rdi->ibdev);
103
104         return rdi;
105 }
106 EXPORT_SYMBOL(rvt_alloc_device);
107
108 /**
109  * rvt_dealloc_device - deallocate rdi
110  * @rdi: structure to free
111  *
112  * Free a structure allocated with rvt_alloc_device()
113  */
114 void rvt_dealloc_device(struct rvt_dev_info *rdi)
115 {
116         kfree(rdi->ports);
117         ib_dealloc_device(&rdi->ibdev);
118 }
119 EXPORT_SYMBOL(rvt_dealloc_device);
120
121 static int rvt_query_device(struct ib_device *ibdev,
122                             struct ib_device_attr *props,
123                             struct ib_udata *uhw)
124 {
125         struct rvt_dev_info *rdi = ib_to_rvt(ibdev);
126
127         if (uhw->inlen || uhw->outlen)
128                 return -EINVAL;
129         /*
130          * Return rvt_dev_info.dparms.props contents
131          */
132         *props = rdi->dparms.props;
133         return 0;
134 }
135
136 static int rvt_modify_device(struct ib_device *device,
137                              int device_modify_mask,
138                              struct ib_device_modify *device_modify)
139 {
140         /*
141          * There is currently no need to supply this based on qib and hfi1.
142          * Future drivers may need to implement this though.
143          */
144
145         return -EOPNOTSUPP;
146 }
147
148 /**
149  * rvt_query_port: Passes the query port call to the driver
150  * @ibdev: Verbs IB dev
151  * @port_num: port number, 1 based from ib core
152  * @props: structure to hold returned properties
153  *
154  * Return: 0 on success
155  */
156 static int rvt_query_port(struct ib_device *ibdev, u8 port_num,
157                           struct ib_port_attr *props)
158 {
159         struct rvt_dev_info *rdi = ib_to_rvt(ibdev);
160         struct rvt_ibport *rvp;
161         int port_index = ibport_num_to_idx(ibdev, port_num);
162
163         if (port_index < 0)
164                 return -EINVAL;
165
166         rvp = rdi->ports[port_index];
167         /* props being zeroed by the caller, avoid zeroing it here */
168         props->sm_lid = rvp->sm_lid;
169         props->sm_sl = rvp->sm_sl;
170         props->port_cap_flags = rvp->port_cap_flags;
171         props->max_msg_sz = 0x80000000;
172         props->pkey_tbl_len = rvt_get_npkeys(rdi);
173         props->bad_pkey_cntr = rvp->pkey_violations;
174         props->qkey_viol_cntr = rvp->qkey_violations;
175         props->subnet_timeout = rvp->subnet_timeout;
176         props->init_type_reply = 0;
177
178         /* Populate the remaining ib_port_attr elements */
179         return rdi->driver_f.query_port_state(rdi, port_num, props);
180 }
181
182 /**
183  * rvt_modify_port
184  * @ibdev: Verbs IB dev
185  * @port_num: Port number, 1 based from ib core
186  * @port_modify_mask: How to change the port
187  * @props: Structure to fill in
188  *
189  * Return: 0 on success
190  */
191 static int rvt_modify_port(struct ib_device *ibdev, u8 port_num,
192                            int port_modify_mask, struct ib_port_modify *props)
193 {
194         struct rvt_dev_info *rdi = ib_to_rvt(ibdev);
195         struct rvt_ibport *rvp;
196         int ret = 0;
197         int port_index = ibport_num_to_idx(ibdev, port_num);
198
199         if (port_index < 0)
200                 return -EINVAL;
201
202         rvp = rdi->ports[port_index];
203         if (port_modify_mask & IB_PORT_OPA_MASK_CHG) {
204                 rvp->port_cap3_flags |= props->set_port_cap_mask;
205                 rvp->port_cap3_flags &= ~props->clr_port_cap_mask;
206         } else {
207                 rvp->port_cap_flags |= props->set_port_cap_mask;
208                 rvp->port_cap_flags &= ~props->clr_port_cap_mask;
209         }
210
211         if (props->set_port_cap_mask || props->clr_port_cap_mask)
212                 rdi->driver_f.cap_mask_chg(rdi, port_num);
213         if (port_modify_mask & IB_PORT_SHUTDOWN)
214                 ret = rdi->driver_f.shut_down_port(rdi, port_num);
215         if (port_modify_mask & IB_PORT_RESET_QKEY_CNTR)
216                 rvp->qkey_violations = 0;
217
218         return ret;
219 }
220
221 /**
222  * rvt_query_pkey - Return a pkey from the table at a given index
223  * @ibdev: Verbs IB dev
224  * @port_num: Port number, 1 based from ib core
225  * @index: Index into pkey table
226  * @pkey: returned pkey from the port pkey table
227  *
228  * Return: 0 on failure pkey otherwise
229  */
230 static int rvt_query_pkey(struct ib_device *ibdev, u8 port_num, u16 index,
231                           u16 *pkey)
232 {
233         /*
234          * Driver will be responsible for keeping rvt_dev_info.pkey_table up to
235          * date. This function will just return that value. There is no need to
236          * lock, if a stale value is read and sent to the user so be it there is
237          * no way to protect against that anyway.
238          */
239         struct rvt_dev_info *rdi = ib_to_rvt(ibdev);
240         int port_index;
241
242         port_index = ibport_num_to_idx(ibdev, port_num);
243         if (port_index < 0)
244                 return -EINVAL;
245
246         if (index >= rvt_get_npkeys(rdi))
247                 return -EINVAL;
248
249         *pkey = rvt_get_pkey(rdi, port_index, index);
250         return 0;
251 }
252
253 /**
254  * rvt_query_gid - Return a gid from the table
255  * @ibdev: Verbs IB dev
256  * @port_num: Port number, 1 based from ib core
257  * @guid_index: Index in table
258  * @gid: Gid to return
259  *
260  * Return: 0 on success
261  */
262 static int rvt_query_gid(struct ib_device *ibdev, u8 port_num,
263                          int guid_index, union ib_gid *gid)
264 {
265         struct rvt_dev_info *rdi;
266         struct rvt_ibport *rvp;
267         int port_index;
268
269         /*
270          * Driver is responsible for updating the guid table. Which will be used
271          * to craft the return value. This will work similar to how query_pkey()
272          * is being done.
273          */
274         port_index = ibport_num_to_idx(ibdev, port_num);
275         if (port_index < 0)
276                 return -EINVAL;
277
278         rdi = ib_to_rvt(ibdev);
279         rvp = rdi->ports[port_index];
280
281         gid->global.subnet_prefix = rvp->gid_prefix;
282
283         return rdi->driver_f.get_guid_be(rdi, rvp, guid_index,
284                                          &gid->global.interface_id);
285 }
286
287 /**
288  * rvt_alloc_ucontext - Allocate a user context
289  * @uctx: Verbs context
290  * @udata: User data allocated
291  */
292 static int rvt_alloc_ucontext(struct ib_ucontext *uctx, struct ib_udata *udata)
293 {
294         return 0;
295 }
296
297 /**
298  * rvt_dealloc_ucontext - Free a user context
299  * @context - Free this
300  */
301 static void rvt_dealloc_ucontext(struct ib_ucontext *context)
302 {
303         return;
304 }
305
306 static int rvt_get_port_immutable(struct ib_device *ibdev, u8 port_num,
307                                   struct ib_port_immutable *immutable)
308 {
309         struct rvt_dev_info *rdi = ib_to_rvt(ibdev);
310         struct ib_port_attr attr;
311         int err, port_index;
312
313         port_index = ibport_num_to_idx(ibdev, port_num);
314         if (port_index < 0)
315                 return -EINVAL;
316
317         immutable->core_cap_flags = rdi->dparms.core_cap_flags;
318
319         err = ib_query_port(ibdev, port_num, &attr);
320         if (err)
321                 return err;
322
323         immutable->pkey_tbl_len = attr.pkey_tbl_len;
324         immutable->gid_tbl_len = attr.gid_tbl_len;
325         immutable->max_mad_size = rdi->dparms.max_mad_size;
326
327         return 0;
328 }
329
330 enum {
331         MISC,
332         QUERY_DEVICE,
333         MODIFY_DEVICE,
334         QUERY_PORT,
335         MODIFY_PORT,
336         QUERY_PKEY,
337         QUERY_GID,
338         ALLOC_UCONTEXT,
339         DEALLOC_UCONTEXT,
340         GET_PORT_IMMUTABLE,
341         CREATE_QP,
342         MODIFY_QP,
343         DESTROY_QP,
344         QUERY_QP,
345         POST_SEND,
346         POST_RECV,
347         POST_SRQ_RECV,
348         CREATE_AH,
349         DESTROY_AH,
350         MODIFY_AH,
351         QUERY_AH,
352         CREATE_SRQ,
353         MODIFY_SRQ,
354         DESTROY_SRQ,
355         QUERY_SRQ,
356         ATTACH_MCAST,
357         DETACH_MCAST,
358         GET_DMA_MR,
359         REG_USER_MR,
360         DEREG_MR,
361         ALLOC_MR,
362         MAP_MR_SG,
363         ALLOC_FMR,
364         MAP_PHYS_FMR,
365         UNMAP_FMR,
366         DEALLOC_FMR,
367         MMAP,
368         CREATE_CQ,
369         DESTROY_CQ,
370         POLL_CQ,
371         REQ_NOTFIY_CQ,
372         RESIZE_CQ,
373         ALLOC_PD,
374         DEALLOC_PD,
375         _VERB_IDX_MAX /* Must always be last! */
376 };
377
378 static const struct ib_device_ops rvt_dev_ops = {
379         .uverbs_abi_ver = RVT_UVERBS_ABI_VERSION,
380
381         .alloc_mr = rvt_alloc_mr,
382         .alloc_pd = rvt_alloc_pd,
383         .alloc_ucontext = rvt_alloc_ucontext,
384         .attach_mcast = rvt_attach_mcast,
385         .create_ah = rvt_create_ah,
386         .create_cq = rvt_create_cq,
387         .create_qp = rvt_create_qp,
388         .create_srq = rvt_create_srq,
389         .dealloc_pd = rvt_dealloc_pd,
390         .dealloc_ucontext = rvt_dealloc_ucontext,
391         .dereg_mr = rvt_dereg_mr,
392         .destroy_ah = rvt_destroy_ah,
393         .destroy_cq = rvt_destroy_cq,
394         .destroy_qp = rvt_destroy_qp,
395         .destroy_srq = rvt_destroy_srq,
396         .detach_mcast = rvt_detach_mcast,
397         .get_dma_mr = rvt_get_dma_mr,
398         .get_port_immutable = rvt_get_port_immutable,
399         .map_mr_sg = rvt_map_mr_sg,
400         .mmap = rvt_mmap,
401         .modify_ah = rvt_modify_ah,
402         .modify_device = rvt_modify_device,
403         .modify_port = rvt_modify_port,
404         .modify_qp = rvt_modify_qp,
405         .modify_srq = rvt_modify_srq,
406         .poll_cq = rvt_poll_cq,
407         .post_recv = rvt_post_recv,
408         .post_send = rvt_post_send,
409         .post_srq_recv = rvt_post_srq_recv,
410         .query_ah = rvt_query_ah,
411         .query_device = rvt_query_device,
412         .query_gid = rvt_query_gid,
413         .query_pkey = rvt_query_pkey,
414         .query_port = rvt_query_port,
415         .query_qp = rvt_query_qp,
416         .query_srq = rvt_query_srq,
417         .reg_user_mr = rvt_reg_user_mr,
418         .req_notify_cq = rvt_req_notify_cq,
419         .resize_cq = rvt_resize_cq,
420
421         INIT_RDMA_OBJ_SIZE(ib_ah, rvt_ah, ibah),
422         INIT_RDMA_OBJ_SIZE(ib_cq, rvt_cq, ibcq),
423         INIT_RDMA_OBJ_SIZE(ib_pd, rvt_pd, ibpd),
424         INIT_RDMA_OBJ_SIZE(ib_srq, rvt_srq, ibsrq),
425         INIT_RDMA_OBJ_SIZE(ib_ucontext, rvt_ucontext, ibucontext),
426 };
427
428 static noinline int check_support(struct rvt_dev_info *rdi, int verb)
429 {
430         switch (verb) {
431         case MISC:
432                 /*
433                  * These functions are not part of verbs specifically but are
434                  * required for rdmavt to function.
435                  */
436                 if ((!rdi->ibdev.ops.init_port) ||
437                     (!rdi->driver_f.get_pci_dev))
438                         return -EINVAL;
439                 break;
440
441         case MODIFY_DEVICE:
442                 /*
443                  * rdmavt does not support modify device currently drivers must
444                  * provide.
445                  */
446                 if (!rdi->ibdev.ops.modify_device)
447                         return -EOPNOTSUPP;
448                 break;
449
450         case QUERY_PORT:
451                 if (!rdi->ibdev.ops.query_port)
452                         if (!rdi->driver_f.query_port_state)
453                                 return -EINVAL;
454                 break;
455
456         case MODIFY_PORT:
457                 if (!rdi->ibdev.ops.modify_port)
458                         if (!rdi->driver_f.cap_mask_chg ||
459                             !rdi->driver_f.shut_down_port)
460                                 return -EINVAL;
461                 break;
462
463         case QUERY_GID:
464                 if (!rdi->ibdev.ops.query_gid)
465                         if (!rdi->driver_f.get_guid_be)
466                                 return -EINVAL;
467                 break;
468
469         case CREATE_QP:
470                 if (!rdi->ibdev.ops.create_qp)
471                         if (!rdi->driver_f.qp_priv_alloc ||
472                             !rdi->driver_f.qp_priv_free ||
473                             !rdi->driver_f.notify_qp_reset ||
474                             !rdi->driver_f.flush_qp_waiters ||
475                             !rdi->driver_f.stop_send_queue ||
476                             !rdi->driver_f.quiesce_qp)
477                                 return -EINVAL;
478                 break;
479
480         case MODIFY_QP:
481                 if (!rdi->ibdev.ops.modify_qp)
482                         if (!rdi->driver_f.notify_qp_reset ||
483                             !rdi->driver_f.schedule_send ||
484                             !rdi->driver_f.get_pmtu_from_attr ||
485                             !rdi->driver_f.flush_qp_waiters ||
486                             !rdi->driver_f.stop_send_queue ||
487                             !rdi->driver_f.quiesce_qp ||
488                             !rdi->driver_f.notify_error_qp ||
489                             !rdi->driver_f.mtu_from_qp ||
490                             !rdi->driver_f.mtu_to_path_mtu)
491                                 return -EINVAL;
492                 break;
493
494         case DESTROY_QP:
495                 if (!rdi->ibdev.ops.destroy_qp)
496                         if (!rdi->driver_f.qp_priv_free ||
497                             !rdi->driver_f.notify_qp_reset ||
498                             !rdi->driver_f.flush_qp_waiters ||
499                             !rdi->driver_f.stop_send_queue ||
500                             !rdi->driver_f.quiesce_qp)
501                                 return -EINVAL;
502                 break;
503
504         case POST_SEND:
505                 if (!rdi->ibdev.ops.post_send)
506                         if (!rdi->driver_f.schedule_send ||
507                             !rdi->driver_f.do_send ||
508                             !rdi->post_parms)
509                                 return -EINVAL;
510                 break;
511
512         }
513
514         return 0;
515 }
516
517 /**
518  * rvt_register_device - register a driver
519  * @rdi: main dev structure for all of rdmavt operations
520  *
521  * It is up to drivers to allocate the rdi and fill in the appropriate
522  * information.
523  *
524  * Return: 0 on success otherwise an errno.
525  */
526 int rvt_register_device(struct rvt_dev_info *rdi)
527 {
528         int ret = 0, i;
529
530         if (!rdi)
531                 return -EINVAL;
532
533         /*
534          * Check to ensure drivers have setup the required helpers for the verbs
535          * they want rdmavt to handle
536          */
537         for (i = 0; i < _VERB_IDX_MAX; i++)
538                 if (check_support(rdi, i)) {
539                         pr_err("Driver support req not met at %d\n", i);
540                         return -EINVAL;
541                 }
542
543         ib_set_device_ops(&rdi->ibdev, &rvt_dev_ops);
544
545         /* Once we get past here we can use rvt_pr macros and tracepoints */
546         trace_rvt_dbg(rdi, "Driver attempting registration");
547         rvt_mmap_init(rdi);
548
549         /* Queue Pairs */
550         ret = rvt_driver_qp_init(rdi);
551         if (ret) {
552                 pr_err("Error in driver QP init.\n");
553                 return -EINVAL;
554         }
555
556         /* Address Handle */
557         spin_lock_init(&rdi->n_ahs_lock);
558         rdi->n_ahs_allocated = 0;
559
560         /* Shared Receive Queue */
561         rvt_driver_srq_init(rdi);
562
563         /* Multicast */
564         rvt_driver_mcast_init(rdi);
565
566         /* Mem Region */
567         ret = rvt_driver_mr_init(rdi);
568         if (ret) {
569                 pr_err("Error in driver MR init.\n");
570                 goto bail_no_mr;
571         }
572
573         /* Memory Working Set Size */
574         ret = rvt_wss_init(rdi);
575         if (ret) {
576                 rvt_pr_err(rdi, "Error in WSS init.\n");
577                 goto bail_mr;
578         }
579
580         /* Completion queues */
581         spin_lock_init(&rdi->n_cqs_lock);
582
583         /* DMA Operations */
584         rdi->ibdev.dev.dma_ops = rdi->ibdev.dev.dma_ops ? : &dma_virt_ops;
585
586         /* Protection Domain */
587         spin_lock_init(&rdi->n_pds_lock);
588         rdi->n_pds_allocated = 0;
589
590         /*
591          * There are some things which could be set by underlying drivers but
592          * really should be up to rdmavt to set. For instance drivers can't know
593          * exactly which functions rdmavt supports, nor do they know the ABI
594          * version, so we do all of this sort of stuff here.
595          */
596         rdi->ibdev.uverbs_cmd_mask =
597                 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT)         |
598                 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE)        |
599                 (1ull << IB_USER_VERBS_CMD_QUERY_PORT)          |
600                 (1ull << IB_USER_VERBS_CMD_ALLOC_PD)            |
601                 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD)          |
602                 (1ull << IB_USER_VERBS_CMD_CREATE_AH)           |
603                 (1ull << IB_USER_VERBS_CMD_MODIFY_AH)           |
604                 (1ull << IB_USER_VERBS_CMD_QUERY_AH)            |
605                 (1ull << IB_USER_VERBS_CMD_DESTROY_AH)          |
606                 (1ull << IB_USER_VERBS_CMD_REG_MR)              |
607                 (1ull << IB_USER_VERBS_CMD_DEREG_MR)            |
608                 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
609                 (1ull << IB_USER_VERBS_CMD_CREATE_CQ)           |
610                 (1ull << IB_USER_VERBS_CMD_RESIZE_CQ)           |
611                 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ)          |
612                 (1ull << IB_USER_VERBS_CMD_POLL_CQ)             |
613                 (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ)       |
614                 (1ull << IB_USER_VERBS_CMD_CREATE_QP)           |
615                 (1ull << IB_USER_VERBS_CMD_QUERY_QP)            |
616                 (1ull << IB_USER_VERBS_CMD_MODIFY_QP)           |
617                 (1ull << IB_USER_VERBS_CMD_DESTROY_QP)          |
618                 (1ull << IB_USER_VERBS_CMD_POST_SEND)           |
619                 (1ull << IB_USER_VERBS_CMD_POST_RECV)           |
620                 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST)        |
621                 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST)        |
622                 (1ull << IB_USER_VERBS_CMD_CREATE_SRQ)          |
623                 (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ)          |
624                 (1ull << IB_USER_VERBS_CMD_QUERY_SRQ)           |
625                 (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ)         |
626                 (1ull << IB_USER_VERBS_CMD_POST_SRQ_RECV);
627         rdi->ibdev.node_type = RDMA_NODE_IB_CA;
628         if (!rdi->ibdev.num_comp_vectors)
629                 rdi->ibdev.num_comp_vectors = 1;
630
631         /* We are now good to announce we exist */
632         ret = ib_register_device(&rdi->ibdev, dev_name(&rdi->ibdev.dev));
633         if (ret) {
634                 rvt_pr_err(rdi, "Failed to register driver with ib core.\n");
635                 goto bail_wss;
636         }
637
638         rvt_create_mad_agents(rdi);
639
640         rvt_pr_info(rdi, "Registration with rdmavt done.\n");
641         return ret;
642
643 bail_wss:
644         rvt_wss_exit(rdi);
645 bail_mr:
646         rvt_mr_exit(rdi);
647
648 bail_no_mr:
649         rvt_qp_exit(rdi);
650
651         return ret;
652 }
653 EXPORT_SYMBOL(rvt_register_device);
654
655 /**
656  * rvt_unregister_device - remove a driver
657  * @rdi: rvt dev struct
658  */
659 void rvt_unregister_device(struct rvt_dev_info *rdi)
660 {
661         trace_rvt_dbg(rdi, "Driver is unregistering.");
662         if (!rdi)
663                 return;
664
665         rvt_free_mad_agents(rdi);
666
667         ib_unregister_device(&rdi->ibdev);
668         rvt_wss_exit(rdi);
669         rvt_mr_exit(rdi);
670         rvt_qp_exit(rdi);
671 }
672 EXPORT_SYMBOL(rvt_unregister_device);
673
674 /**
675  * rvt_init_port - init internal data for driver port
676  * @rdi: rvt_dev_info struct
677  * @port: rvt port
678  * @port_index: 0 based index of ports, different from IB core port num
679  * @pkey_table: pkey_table for @port
680  *
681  * Keep track of a list of ports. No need to have a detach port.
682  * They persist until the driver goes away.
683  *
684  * Return: always 0
685  */
686 int rvt_init_port(struct rvt_dev_info *rdi, struct rvt_ibport *port,
687                   int port_index, u16 *pkey_table)
688 {
689
690         rdi->ports[port_index] = port;
691         rdi->ports[port_index]->pkey_table = pkey_table;
692
693         return 0;
694 }
695 EXPORT_SYMBOL(rvt_init_port);