blob: 70a9596b859dde4ac64847a3b45f4dd659819e3a [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 Dalessandro38ce2c62016-01-06 10:05:12 -080072#define RVT_MAX_PKEY_VALUES 16
73
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -080074struct rvt_ibport {
75 struct rvt_qp __rcu *qp[2];
76 struct ib_mad_agent *send_agent; /* agent for SMI (traps) */
77 struct rb_root mcast_tree;
78 spinlock_t lock; /* protect changes in this struct */
79
80 /* non-zero when timer is set */
81 unsigned long mkey_lease_timeout;
82 unsigned long trap_timeout;
83 __be64 gid_prefix; /* in network order */
84 __be64 mkey;
85 u64 tid;
86 u32 port_cap_flags;
87 u32 pma_sample_start;
88 u32 pma_sample_interval;
89 __be16 pma_counter_select[5];
90 u16 pma_tag;
91 u16 mkey_lease_period;
92 u16 sm_lid;
93 u8 sm_sl;
94 u8 mkeyprot;
95 u8 subnet_timeout;
96 u8 vl_high_limit;
97
98 /*
99 * Driver is expected to keep these up to date. These
100 * counters are informational only and not required to be
101 * completely accurate.
102 */
103 u64 n_rc_resends;
104 u64 n_seq_naks;
105 u64 n_rdma_seq;
106 u64 n_rnr_naks;
107 u64 n_other_naks;
108 u64 n_loop_pkts;
109 u64 n_pkt_drops;
110 u64 n_vl15_dropped;
111 u64 n_rc_timeouts;
112 u64 n_dmawait;
113 u64 n_unaligned;
114 u64 n_rc_dupreq;
115 u64 n_rc_seqnak;
116 u16 pkey_violations;
117 u16 qkey_violations;
118 u16 mkey_violations;
119
120 /* Hot-path per CPU counters to avoid cacheline trading to update */
121 u64 z_rc_acks;
122 u64 z_rc_qacks;
123 u64 z_rc_delayed_comp;
124 u64 __percpu *rc_acks;
125 u64 __percpu *rc_qacks;
126 u64 __percpu *rc_delayed_comp;
127
128 void *priv; /* driver private data */
129
Dennis Dalessandro38ce2c62016-01-06 10:05:12 -0800130 /*
131 * The pkey table is allocated and maintained by the driver. Drivers
132 * need to have access to this before registering with rdmav. However
133 * rdmavt will need access to it so drivers need to proviee this during
134 * the attach port API call.
135 */
136 u16 *pkey_table;
137
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -0800138 /* TODO: Move sm_ah and smi_ah into here as well*/
139};
140
Dennis Dalessandroca889e82016-01-06 10:02:41 -0800141/*
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800142 * Things that are driver specific, module parameters in hfi1 and qib
143 */
144struct rvt_driver_params {
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800145 /*
146 * driver required fields:
147 * node_guid
148 * phys_port_cnt
149 * dma_device
150 * owner
151 * driver optional fields (rvt will provide generic value if blank):
152 * name
153 * node_desc
154 * rvt fields, driver value ignored:
155 * uverbs_abi_ver
156 * node_type
157 * num_comp_vectors
158 * uverbs_cmd_mask
159 */
160 struct ib_device_attr props;
161
162 /*
163 * Drivers will need to support a number of notifications to rvt in
164 * accordance with certain events. This structure should contain a mask
165 * of the supported events. Such events that the rvt may need to know
166 * about include:
167 * port errors
168 * port active
169 * lid change
170 * sm change
171 * client reregister
172 * pkey change
173 *
174 * There may also be other events that the rvt layers needs to know
175 * about this is not an exhaustive list. Some events though rvt does not
176 * need to rely on the driver for such as completion queue error.
177 */
178 int rvt_signal_supported;
179
180 /*
181 * Anything driver specific that is not covered by props
182 * For instance special module parameters. Goes here.
183 */
Dennis Dalessandro7b1e2092016-01-06 10:03:31 -0800184 unsigned int lkey_table_size;
Dennis Dalessandro0acb0cc2016-01-06 10:04:46 -0800185 unsigned int qp_table_size;
186 int qpn_start;
187 int qpn_inc;
188 int qpn_res_start;
189 int qpn_res_end;
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -0800190 int nports;
Dennis Dalessandro38ce2c62016-01-06 10:05:12 -0800191 int npkeys;
Dennis Dalessandro0acb0cc2016-01-06 10:04:46 -0800192 u8 qos_shift;
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800193};
194
195/* Protection domain */
196struct rvt_pd {
197 struct ib_pd ibpd;
198 int user; /* non-zero if created from user space */
199};
200
Kamal Heib119a8e72016-01-06 10:03:59 -0800201/* Address handle */
202struct rvt_ah {
203 struct ib_ah ibah;
204 struct ib_ah_attr attr;
205 atomic_t refcount;
Dennis Dalessandrob036db82016-01-06 10:04:23 -0800206 u8 vl;
207 u8 log_pmtu;
208};
209
210struct rvt_dev_info;
211struct rvt_driver_provided {
212 /*
213 * The work to create port files in /sys/class Infiniband is different
214 * depending on the driver. This should not be extracted away and
215 * instead drivers are responsible for setting the correct callback for
216 * this.
217 */
218
219 /* -------------------*/
220 /* Required functions */
221 /* -------------------*/
222 int (*port_callback)(struct ib_device *, u8, struct kobject *);
223 const char * (*get_card_name)(struct rvt_dev_info *rdi);
224 struct pci_dev * (*get_pci_dev)(struct rvt_dev_info *rdi);
Dennis Dalessandro515667f2016-01-22 12:50:17 -0800225 unsigned (*free_all_qps)(struct rvt_dev_info *rdi);
Mike Marciniszynd2b8d4d2016-01-22 12:50:43 -0800226 void * (*qp_priv_alloc)(struct rvt_dev_info *rdi, struct rvt_qp *qp,
227 gfp_t gfp);
Dennis Dalessandro515667f2016-01-22 12:50:17 -0800228 void (*qp_priv_free)(struct rvt_dev_info *rdi, struct rvt_qp *qp);
229 void (*notify_qp_reset)(struct rvt_qp *qp);
Dennis Dalessandrob036db82016-01-06 10:04:23 -0800230
231 /*--------------------*/
232 /* Optional functions */
233 /*--------------------*/
234 int (*check_ah)(struct ib_device *, struct ib_ah_attr *);
235 void (*notify_new_ah)(struct ib_device *, struct ib_ah_attr *,
236 struct rvt_ah *);
Dennis Dalessandro515667f2016-01-22 12:50:17 -0800237 int (*alloc_qpn)(struct rvt_dev_info *rdi, struct rvt_qpn_table *qpt,
Mike Marciniszynd2b8d4d2016-01-22 12:50:43 -0800238 enum ib_qp_type type, u8 port, gfp_t gfp);
Kamal Heib119a8e72016-01-06 10:03:59 -0800239};
240
Dennis Dalessandro01946212016-01-06 09:50:24 -0800241struct rvt_dev_info {
Dennis Dalessandro7b1e2092016-01-06 10:03:31 -0800242 struct ib_device ibdev; /* Keep this first. Nothing above here */
243
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800244 /*
245 * Prior to calling for registration the driver will be responsible for
246 * allocating space for this structure.
247 *
248 * The driver will also be responsible for filling in certain members of
Harish Chegondifeaeb6e2016-01-22 12:50:36 -0800249 * dparms.props. The driver needs to fill in dparms exactly as it would
250 * want values reported to a ULP. This will be returned to the caller
251 * in rdmavt's device. The driver should also therefore refrain from
252 * modifying this directly after registration with rdmavt.
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800253 */
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800254
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800255 /* Driver specific properties */
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800256 struct rvt_driver_params dparms;
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800257
Dennis Dalessandrob92a7562016-01-06 10:01:42 -0800258 struct rvt_mregion __rcu *dma_mr;
259 struct rvt_lkey_table lkey_table;
260
Dennis Dalessandroaec57782016-01-06 10:02:52 -0800261 /* Driver specific helper functions */
262 struct rvt_driver_provided driver_f;
Dennis Dalessandro01946212016-01-06 09:50:24 -0800263
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800264 /* Internal use */
265 int n_pds_allocated;
266 spinlock_t n_pds_lock; /* Protect pd allocated count */
Dennis Dalessandro0b8a8aa2016-01-06 10:03:07 -0800267
Kamal Heib119a8e72016-01-06 10:03:59 -0800268 int n_ahs_allocated;
269 spinlock_t n_ahs_lock; /* Protect ah allocated count */
270
Dennis Dalessandro0b8a8aa2016-01-06 10:03:07 -0800271 int flags;
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -0800272 struct rvt_ibport **ports;
Dennis Dalessandro0acb0cc2016-01-06 10:04:46 -0800273
Dennis Dalessandro515667f2016-01-22 12:50:17 -0800274 /* QP */
Dennis Dalessandro0acb0cc2016-01-06 10:04:46 -0800275 struct rvt_qp_ibdev *qp_dev;
Dennis Dalessandro515667f2016-01-22 12:50:17 -0800276 u32 n_qps_allocated; /* number of QPs allocated for device */
277 spinlock_t n_qps_lock; /* keep track of number of qps */
Dennis Dalessandro822514d2016-01-06 10:04:57 -0800278
279 /* memory maps */
280 struct list_head pending_mmaps;
281 spinlock_t mmap_offset_lock; /* protect mmap_offset */
282 u32 mmap_offset;
283 spinlock_t pending_lock; /* protect pending mmap list */
Dennis Dalessandro01946212016-01-06 09:50:24 -0800284};
285
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800286static inline struct rvt_pd *ibpd_to_rvtpd(struct ib_pd *ibpd)
287{
288 return container_of(ibpd, struct rvt_pd, ibpd);
289}
290
Kamal Heib119a8e72016-01-06 10:03:59 -0800291static inline struct rvt_ah *ibah_to_rvtah(struct ib_ah *ibah)
292{
293 return container_of(ibah, struct rvt_ah, ibah);
294}
295
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800296static inline struct rvt_dev_info *ib_to_rvt(struct ib_device *ibdev)
297{
298 return container_of(ibdev, struct rvt_dev_info, ibdev);
299}
300
Dennis Dalessandro70a1a352016-01-06 10:04:06 -0800301static inline struct rvt_srq *ibsrq_to_rvtsrq(struct ib_srq *ibsrq)
302{
303 return container_of(ibsrq, struct rvt_srq, ibsrq);
304}
305
Dennis Dalessandro38ce2c62016-01-06 10:05:12 -0800306static inline unsigned rvt_get_npkeys(struct rvt_dev_info *rdi)
307{
308 /*
309 * All ports have same number of pkeys.
310 */
311 return rdi->dparms.npkeys;
312}
313
314/*
315 * Return the indexed PKEY from the port PKEY table.
316 */
317static inline u16 rvt_get_pkey(struct rvt_dev_info *rdi,
318 int port_index,
319 unsigned index)
320{
321 if (index >= rvt_get_npkeys(rdi))
322 return 0;
323 else
324 return rdi->ports[port_index]->pkey_table[index];
325}
326
Dennis Dalessandro01946212016-01-06 09:50:24 -0800327int rvt_register_device(struct rvt_dev_info *rvd);
328void rvt_unregister_device(struct rvt_dev_info *rvd);
Kamal Heib119a8e72016-01-06 10:03:59 -0800329int rvt_check_ah(struct ib_device *ibdev, struct ib_ah_attr *ah_attr);
Dennis Dalessandro38ce2c62016-01-06 10:05:12 -0800330int rvt_init_port(struct rvt_dev_info *rdi, struct rvt_ibport *port,
331 int portnum, u16 *pkey_table);
Dennis Dalessandro7b1e2092016-01-06 10:03:31 -0800332int rvt_rkey_ok(struct rvt_qp *qp, struct rvt_sge *sge,
333 u32 len, u64 vaddr, u32 rkey, int acc);
334int rvt_lkey_ok(struct rvt_lkey_table *rkt, struct rvt_pd *pd,
335 struct rvt_sge *isge, struct ib_sge *sge, int acc);
Dennis Dalessandro822514d2016-01-06 10:04:57 -0800336int rvt_mmap(struct ib_ucontext *context, struct vm_area_struct *vma);
337void rvt_release_mmap_info(struct kref *ref);
338struct rvt_mmap_info *rvt_create_mmap_info(struct rvt_dev_info *rdi,
339 u32 size,
340 struct ib_ucontext *context,
341 void *obj);
342void rvt_update_mmap_info(struct rvt_dev_info *rdi, struct rvt_mmap_info *ip,
343 u32 size, void *obj);
344
Dennis Dalessandro5a9cf6f2016-01-22 12:50:24 -0800345/* Temporary export */
346void rvt_reset_qp(struct rvt_dev_info *rdi, struct rvt_qp *qp,
347 enum ib_qp_type type);
Dennis Dalessandro01946212016-01-06 09:50:24 -0800348#endif /* DEF_RDMA_VT_H */