blob: 6bf5fd40081d531c5fe796b5a7ae1556fb0e8483 [file] [log] [blame]
Dennis Dalessandro01946212016-01-06 09:50:24 -08001#ifndef DEF_RDMA_VT_H
2#define DEF_RDMA_VT_H
3
4/*
5 * Copyright(c) 2015 Intel Corporation.
6 *
7 * This file is provided under a dual BSD/GPLv2 license. When using or
8 * redistributing this file, you may do so under either license.
9 *
10 * GPL LICENSE SUMMARY
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * BSD LICENSE
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 *
27 * - Redistributions of source code must retain the above copyright
28 * notice, this list of conditions and the following disclaimer.
29 * - Redistributions in binary form must reproduce the above copyright
30 * notice, this list of conditions and the following disclaimer in
31 * the documentation and/or other materials provided with the
32 * distribution.
33 * - Neither the name of Intel Corporation nor the names of its
34 * contributors may be used to endorse or promote products derived
35 * from this software without specific prior written permission.
36 *
37 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
38 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
39 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
40 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
41 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
42 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
43 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
44 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
45 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
46 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
47 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48 *
49 */
50
51/*
52 * Structure that low level drivers will populate in order to register with the
53 * rdmavt layer.
54 */
55
56#include "ib_verbs.h"
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -080057
58/*
59 * Things that are driver specific, module parameters in hfi1 and qib
60 */
61struct rvt_driver_params {
62 int max_pds;
63};
64
65/* Protection domain */
66struct rvt_pd {
67 struct ib_pd ibpd;
68 int user; /* non-zero if created from user space */
69};
70
Dennis Dalessandro01946212016-01-06 09:50:24 -080071struct rvt_dev_info {
72 struct ib_device ibdev;
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -080073
74 /* Driver specific */
75 struct rvt_driver_params dparms;
Dennis Dalessandro01946212016-01-06 09:50:24 -080076 int (*port_callback)(struct ib_device *, u8, struct kobject *);
77
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -080078 /* Internal use */
79 int n_pds_allocated;
80 spinlock_t n_pds_lock; /* Protect pd allocated count */
Dennis Dalessandro01946212016-01-06 09:50:24 -080081};
82
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -080083static inline struct rvt_pd *ibpd_to_rvtpd(struct ib_pd *ibpd)
84{
85 return container_of(ibpd, struct rvt_pd, ibpd);
86}
87
88static inline struct rvt_dev_info *ib_to_rvt(struct ib_device *ibdev)
89{
90 return container_of(ibdev, struct rvt_dev_info, ibdev);
91}
92
Dennis Dalessandro01946212016-01-06 09:50:24 -080093int rvt_register_device(struct rvt_dev_info *rvd);
94void rvt_unregister_device(struct rvt_dev_info *rvd);
95
96#endif /* DEF_RDMA_VT_H */