blob: 79da8ee3e2b30263e049419b754ef6a49405e15e [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
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -080056#include <linux/spinlock.h>
57#include <linux/list.h>
Dennis Dalessandrob4e64392016-01-06 10:04:31 -080058#include <rdma/ib_verbs.h>
59#include <rdma/rdmavt_mr.h>
60#include <rdma/rdmavt_qp.h>
Kamal Heibf2f34212016-01-06 10:03:47 -080061
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -080062/*
Dennis Dalessandro0b8a8aa2016-01-06 10:03:07 -080063 * For some of the IBTA objects there will likely be some
64 * initializations required. We need flags to determine whether it is OK
65 * for rdmavt to do this or not. This does not imply any functions of a
66 * partiuclar IBTA object are overridden.
67 */
68#define RVT_FLAG_MR_INIT_DRIVER BIT(1)
69#define RVT_FLAG_QP_INIT_DRIVER BIT(2)
70#define RVT_FLAG_CQ_INIT_DRIVER BIT(3)
71
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -080072struct rvt_ibport {
73 struct rvt_qp __rcu *qp[2];
74 struct ib_mad_agent *send_agent; /* agent for SMI (traps) */
75 struct rb_root mcast_tree;
76 spinlock_t lock; /* protect changes in this struct */
77
78 /* non-zero when timer is set */
79 unsigned long mkey_lease_timeout;
80 unsigned long trap_timeout;
81 __be64 gid_prefix; /* in network order */
82 __be64 mkey;
83 u64 tid;
84 u32 port_cap_flags;
85 u32 pma_sample_start;
86 u32 pma_sample_interval;
87 __be16 pma_counter_select[5];
88 u16 pma_tag;
89 u16 mkey_lease_period;
90 u16 sm_lid;
91 u8 sm_sl;
92 u8 mkeyprot;
93 u8 subnet_timeout;
94 u8 vl_high_limit;
95
96 /*
97 * Driver is expected to keep these up to date. These
98 * counters are informational only and not required to be
99 * completely accurate.
100 */
101 u64 n_rc_resends;
102 u64 n_seq_naks;
103 u64 n_rdma_seq;
104 u64 n_rnr_naks;
105 u64 n_other_naks;
106 u64 n_loop_pkts;
107 u64 n_pkt_drops;
108 u64 n_vl15_dropped;
109 u64 n_rc_timeouts;
110 u64 n_dmawait;
111 u64 n_unaligned;
112 u64 n_rc_dupreq;
113 u64 n_rc_seqnak;
114 u16 pkey_violations;
115 u16 qkey_violations;
116 u16 mkey_violations;
117
118 /* Hot-path per CPU counters to avoid cacheline trading to update */
119 u64 z_rc_acks;
120 u64 z_rc_qacks;
121 u64 z_rc_delayed_comp;
122 u64 __percpu *rc_acks;
123 u64 __percpu *rc_qacks;
124 u64 __percpu *rc_delayed_comp;
125
126 void *priv; /* driver private data */
127
128 /* TODO: Move sm_ah and smi_ah into here as well*/
129};
130
Dennis Dalessandroca889e82016-01-06 10:02:41 -0800131/*
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800132 * Things that are driver specific, module parameters in hfi1 and qib
133 */
134struct rvt_driver_params {
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800135 /*
136 * driver required fields:
137 * node_guid
138 * phys_port_cnt
139 * dma_device
140 * owner
141 * driver optional fields (rvt will provide generic value if blank):
142 * name
143 * node_desc
144 * rvt fields, driver value ignored:
145 * uverbs_abi_ver
146 * node_type
147 * num_comp_vectors
148 * uverbs_cmd_mask
149 */
150 struct ib_device_attr props;
151
152 /*
153 * Drivers will need to support a number of notifications to rvt in
154 * accordance with certain events. This structure should contain a mask
155 * of the supported events. Such events that the rvt may need to know
156 * about include:
157 * port errors
158 * port active
159 * lid change
160 * sm change
161 * client reregister
162 * pkey change
163 *
164 * There may also be other events that the rvt layers needs to know
165 * about this is not an exhaustive list. Some events though rvt does not
166 * need to rely on the driver for such as completion queue error.
167 */
168 int rvt_signal_supported;
169
170 /*
171 * Anything driver specific that is not covered by props
172 * For instance special module parameters. Goes here.
173 */
Dennis Dalessandro7b1e2092016-01-06 10:03:31 -0800174 unsigned int lkey_table_size;
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -0800175 int nports;
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800176};
177
178/* Protection domain */
179struct rvt_pd {
180 struct ib_pd ibpd;
181 int user; /* non-zero if created from user space */
182};
183
Kamal Heib119a8e72016-01-06 10:03:59 -0800184/* Address handle */
185struct rvt_ah {
186 struct ib_ah ibah;
187 struct ib_ah_attr attr;
188 atomic_t refcount;
Dennis Dalessandrob036db82016-01-06 10:04:23 -0800189 u8 vl;
190 u8 log_pmtu;
191};
192
193struct rvt_dev_info;
194struct rvt_driver_provided {
195 /*
196 * The work to create port files in /sys/class Infiniband is different
197 * depending on the driver. This should not be extracted away and
198 * instead drivers are responsible for setting the correct callback for
199 * this.
200 */
201
202 /* -------------------*/
203 /* Required functions */
204 /* -------------------*/
205 int (*port_callback)(struct ib_device *, u8, struct kobject *);
206 const char * (*get_card_name)(struct rvt_dev_info *rdi);
207 struct pci_dev * (*get_pci_dev)(struct rvt_dev_info *rdi);
208
209 /*--------------------*/
210 /* Optional functions */
211 /*--------------------*/
212 int (*check_ah)(struct ib_device *, struct ib_ah_attr *);
213 void (*notify_new_ah)(struct ib_device *, struct ib_ah_attr *,
214 struct rvt_ah *);
Kamal Heib119a8e72016-01-06 10:03:59 -0800215};
216
Dennis Dalessandro01946212016-01-06 09:50:24 -0800217struct rvt_dev_info {
Dennis Dalessandro7b1e2092016-01-06 10:03:31 -0800218 struct ib_device ibdev; /* Keep this first. Nothing above here */
219
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800220 /*
221 * Prior to calling for registration the driver will be responsible for
222 * allocating space for this structure.
223 *
224 * The driver will also be responsible for filling in certain members of
225 * dparms.props
226 */
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800227
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800228 /* Driver specific properties */
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800229 struct rvt_driver_params dparms;
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800230
Dennis Dalessandrob92a7562016-01-06 10:01:42 -0800231 struct rvt_mregion __rcu *dma_mr;
232 struct rvt_lkey_table lkey_table;
233
Dennis Dalessandro30588642016-01-06 09:54:16 -0800234 /* PKey Table goes here */
235
Dennis Dalessandroaec57782016-01-06 10:02:52 -0800236 /* Driver specific helper functions */
237 struct rvt_driver_provided driver_f;
Dennis Dalessandro01946212016-01-06 09:50:24 -0800238
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800239 /* Internal use */
240 int n_pds_allocated;
241 spinlock_t n_pds_lock; /* Protect pd allocated count */
Dennis Dalessandro0b8a8aa2016-01-06 10:03:07 -0800242
Kamal Heib119a8e72016-01-06 10:03:59 -0800243 int n_ahs_allocated;
244 spinlock_t n_ahs_lock; /* Protect ah allocated count */
245
Dennis Dalessandro0b8a8aa2016-01-06 10:03:07 -0800246 int flags;
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -0800247 struct rvt_ibport **ports;
Dennis Dalessandro01946212016-01-06 09:50:24 -0800248};
249
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800250static inline struct rvt_pd *ibpd_to_rvtpd(struct ib_pd *ibpd)
251{
252 return container_of(ibpd, struct rvt_pd, ibpd);
253}
254
Kamal Heib119a8e72016-01-06 10:03:59 -0800255static inline struct rvt_ah *ibah_to_rvtah(struct ib_ah *ibah)
256{
257 return container_of(ibah, struct rvt_ah, ibah);
258}
259
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800260static inline struct rvt_dev_info *ib_to_rvt(struct ib_device *ibdev)
261{
262 return container_of(ibdev, struct rvt_dev_info, ibdev);
263}
264
Dennis Dalessandro70a1a352016-01-06 10:04:06 -0800265static inline struct rvt_srq *ibsrq_to_rvtsrq(struct ib_srq *ibsrq)
266{
267 return container_of(ibsrq, struct rvt_srq, ibsrq);
268}
269
Dennis Dalessandro01946212016-01-06 09:50:24 -0800270int rvt_register_device(struct rvt_dev_info *rvd);
271void rvt_unregister_device(struct rvt_dev_info *rvd);
Kamal Heib119a8e72016-01-06 10:03:59 -0800272int rvt_check_ah(struct ib_device *ibdev, struct ib_ah_attr *ah_attr);
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -0800273void rvt_attach_port(struct rvt_dev_info *rdi, struct rvt_ibport *port,
274 int portnum);
Dennis Dalessandro7b1e2092016-01-06 10:03:31 -0800275int rvt_rkey_ok(struct rvt_qp *qp, struct rvt_sge *sge,
276 u32 len, u64 vaddr, u32 rkey, int acc);
277int rvt_lkey_ok(struct rvt_lkey_table *rkt, struct rvt_pd *pd,
278 struct rvt_sge *isge, struct ib_sge *sge, int acc);
Dennis Dalessandro01946212016-01-06 09:50:24 -0800279#endif /* DEF_RDMA_VT_H */