blob: 5ccf683b28f14723c7791e04fb53570783ab6f96 [file] [log] [blame]
Dennis Dalessandro01946212016-01-06 09:50:24 -08001#ifndef DEF_RDMA_VT_H
2#define DEF_RDMA_VT_H
3
4/*
Dennis Dalessandrofe314192016-01-22 13:04:58 -08005 * Copyright(c) 2016 Intel Corporation.
Dennis Dalessandro01946212016-01-06 09:50:24 -08006 *
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 Dalessandro3b0b3fb2016-01-22 13:00:35 -080058#include <linux/hash.h>
Dennis Dalessandrob4e64392016-01-06 10:04:31 -080059#include <rdma/ib_verbs.h>
60#include <rdma/rdmavt_mr.h>
61#include <rdma/rdmavt_qp.h>
Kamal Heibf2f34212016-01-06 10:03:47 -080062
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -080063/*
Dennis Dalessandro0b8a8aa2016-01-06 10:03:07 -080064 * For some of the IBTA objects there will likely be some
65 * initializations required. We need flags to determine whether it is OK
66 * for rdmavt to do this or not. This does not imply any functions of a
67 * partiuclar IBTA object are overridden.
68 */
69#define RVT_FLAG_MR_INIT_DRIVER BIT(1)
70#define RVT_FLAG_QP_INIT_DRIVER BIT(2)
71#define RVT_FLAG_CQ_INIT_DRIVER BIT(3)
72
Dennis Dalessandro38ce2c62016-01-06 10:05:12 -080073#define RVT_MAX_PKEY_VALUES 16
74
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -080075struct rvt_ibport {
76 struct rvt_qp __rcu *qp[2];
77 struct ib_mad_agent *send_agent; /* agent for SMI (traps) */
78 struct rb_root mcast_tree;
79 spinlock_t lock; /* protect changes in this struct */
80
81 /* non-zero when timer is set */
82 unsigned long mkey_lease_timeout;
83 unsigned long trap_timeout;
84 __be64 gid_prefix; /* in network order */
85 __be64 mkey;
86 u64 tid;
87 u32 port_cap_flags;
88 u32 pma_sample_start;
89 u32 pma_sample_interval;
90 __be16 pma_counter_select[5];
91 u16 pma_tag;
92 u16 mkey_lease_period;
93 u16 sm_lid;
94 u8 sm_sl;
95 u8 mkeyprot;
96 u8 subnet_timeout;
97 u8 vl_high_limit;
98
99 /*
100 * Driver is expected to keep these up to date. These
101 * counters are informational only and not required to be
102 * completely accurate.
103 */
104 u64 n_rc_resends;
105 u64 n_seq_naks;
106 u64 n_rdma_seq;
107 u64 n_rnr_naks;
108 u64 n_other_naks;
109 u64 n_loop_pkts;
110 u64 n_pkt_drops;
111 u64 n_vl15_dropped;
112 u64 n_rc_timeouts;
113 u64 n_dmawait;
114 u64 n_unaligned;
115 u64 n_rc_dupreq;
116 u64 n_rc_seqnak;
117 u16 pkey_violations;
118 u16 qkey_violations;
119 u16 mkey_violations;
120
121 /* Hot-path per CPU counters to avoid cacheline trading to update */
122 u64 z_rc_acks;
123 u64 z_rc_qacks;
124 u64 z_rc_delayed_comp;
125 u64 __percpu *rc_acks;
126 u64 __percpu *rc_qacks;
127 u64 __percpu *rc_delayed_comp;
128
129 void *priv; /* driver private data */
130
Dennis Dalessandro38ce2c62016-01-06 10:05:12 -0800131 /*
132 * The pkey table is allocated and maintained by the driver. Drivers
133 * need to have access to this before registering with rdmav. However
134 * rdmavt will need access to it so drivers need to proviee this during
135 * the attach port API call.
136 */
137 u16 *pkey_table;
138
Dennis Dalessandro3711baf2016-01-22 13:04:51 -0800139 struct rvt_ah *sm_ah;
140 struct rvt_ah *smi_ah;
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -0800141};
142
Dennis Dalessandro6f6387a2016-01-22 13:00:15 -0800143#define RVT_CQN_MAX 16 /* maximum length of cq name */
144
Dennis Dalessandroca889e82016-01-06 10:02:41 -0800145/*
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800146 * Things that are driver specific, module parameters in hfi1 and qib
147 */
148struct rvt_driver_params {
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800149 /*
150 * driver required fields:
151 * node_guid
152 * phys_port_cnt
153 * dma_device
154 * owner
155 * driver optional fields (rvt will provide generic value if blank):
156 * name
157 * node_desc
158 * rvt fields, driver value ignored:
159 * uverbs_abi_ver
160 * node_type
161 * num_comp_vectors
162 * uverbs_cmd_mask
163 */
164 struct ib_device_attr props;
165
166 /*
167 * Drivers will need to support a number of notifications to rvt in
168 * accordance with certain events. This structure should contain a mask
169 * of the supported events. Such events that the rvt may need to know
170 * about include:
171 * port errors
172 * port active
173 * lid change
174 * sm change
175 * client reregister
176 * pkey change
177 *
178 * There may also be other events that the rvt layers needs to know
179 * about this is not an exhaustive list. Some events though rvt does not
180 * need to rely on the driver for such as completion queue error.
181 */
182 int rvt_signal_supported;
183
184 /*
185 * Anything driver specific that is not covered by props
186 * For instance special module parameters. Goes here.
187 */
Dennis Dalessandro7b1e2092016-01-06 10:03:31 -0800188 unsigned int lkey_table_size;
Dennis Dalessandro0acb0cc2016-01-06 10:04:46 -0800189 unsigned int qp_table_size;
190 int qpn_start;
191 int qpn_inc;
192 int qpn_res_start;
193 int qpn_res_end;
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -0800194 int nports;
Dennis Dalessandro38ce2c62016-01-06 10:05:12 -0800195 int npkeys;
Dennis Dalessandro0acb0cc2016-01-06 10:04:46 -0800196 u8 qos_shift;
Dennis Dalessandro6f6387a2016-01-22 13:00:15 -0800197 char cq_name[RVT_CQN_MAX];
198 int node;
Dennis Dalessandro3b0b3fb2016-01-22 13:00:35 -0800199 int max_rdma_atomic;
200 int psn_mask;
201 int psn_shift;
202 int psn_modify_mask;
Harish Chegondi61a650c2016-02-03 14:15:20 -0800203 u32 core_cap_flags;
204 u32 max_mad_size;
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800205};
206
207/* Protection domain */
208struct rvt_pd {
209 struct ib_pd ibpd;
210 int user; /* non-zero if created from user space */
211};
212
Kamal Heib119a8e72016-01-06 10:03:59 -0800213/* Address handle */
214struct rvt_ah {
215 struct ib_ah ibah;
216 struct ib_ah_attr attr;
217 atomic_t refcount;
Dennis Dalessandrob036db82016-01-06 10:04:23 -0800218 u8 vl;
219 u8 log_pmtu;
220};
221
222struct rvt_dev_info;
223struct rvt_driver_provided {
224 /*
225 * The work to create port files in /sys/class Infiniband is different
226 * depending on the driver. This should not be extracted away and
227 * instead drivers are responsible for setting the correct callback for
228 * this.
229 */
230
231 /* -------------------*/
232 /* Required functions */
233 /* -------------------*/
234 int (*port_callback)(struct ib_device *, u8, struct kobject *);
235 const char * (*get_card_name)(struct rvt_dev_info *rdi);
236 struct pci_dev * (*get_pci_dev)(struct rvt_dev_info *rdi);
Dennis Dalessandro515667f2016-01-22 12:50:17 -0800237 unsigned (*free_all_qps)(struct rvt_dev_info *rdi);
Mike Marciniszynd2b8d4d2016-01-22 12:50:43 -0800238 void * (*qp_priv_alloc)(struct rvt_dev_info *rdi, struct rvt_qp *qp,
239 gfp_t gfp);
Dennis Dalessandro515667f2016-01-22 12:50:17 -0800240 void (*qp_priv_free)(struct rvt_dev_info *rdi, struct rvt_qp *qp);
241 void (*notify_qp_reset)(struct rvt_qp *qp);
Dennis Dalessandrobfbac092016-01-22 13:00:22 -0800242 void (*schedule_send)(struct rvt_qp *qp);
243 void (*do_send)(struct rvt_qp *qp);
Dennis Dalessandro3b0b3fb2016-01-22 13:00:35 -0800244 int (*get_pmtu_from_attr)(struct rvt_dev_info *rdi, struct rvt_qp *qp,
245 struct ib_qp_attr *attr);
246 void (*flush_qp_waiters)(struct rvt_qp *qp);
247 void (*stop_send_queue)(struct rvt_qp *qp);
248 void (*quiesce_qp)(struct rvt_qp *qp);
249 void (*notify_error_qp)(struct rvt_qp *qp);
250 u32 (*mtu_from_qp)(struct rvt_dev_info *rdi, struct rvt_qp *qp,
251 u32 pmtu);
252 int (*mtu_to_path_mtu)(u32 mtu);
Dennis Dalessandro1f024992016-02-03 14:15:11 -0800253 int (*get_guid_be)(struct rvt_dev_info *rdi, struct rvt_ibport *rvp,
254 int guid_index, __be64 *guid);
Harish Chegondi61a650c2016-02-03 14:15:20 -0800255 int (*query_port_state)(struct rvt_dev_info *rdi, u8 port_num,
256 struct ib_port_attr *props);
257 int (*shut_down_port)(struct rvt_dev_info *rdi, u8 port_num);
258 void (*cap_mask_chg)(struct rvt_dev_info *rdi, u8 port_num);
Dennis Dalessandrob036db82016-01-06 10:04:23 -0800259
260 /*--------------------*/
261 /* Optional functions */
262 /*--------------------*/
263 int (*check_ah)(struct ib_device *, struct ib_ah_attr *);
264 void (*notify_new_ah)(struct ib_device *, struct ib_ah_attr *,
265 struct rvt_ah *);
Dennis Dalessandro515667f2016-01-22 12:50:17 -0800266 int (*alloc_qpn)(struct rvt_dev_info *rdi, struct rvt_qpn_table *qpt,
Dennis Dalessandrof1badc72016-02-03 14:15:02 -0800267 enum ib_qp_type type, u8 port_num, gfp_t gfp);
Ira Weinye85ec332016-01-22 13:04:38 -0800268 /**
269 * Return 0 if modification is valid, -errno otherwise
270 */
271 int (*check_modify_qp)(struct rvt_qp *qp, struct ib_qp_attr *attr,
272 int attr_mask, struct ib_udata *udata);
273 void (*modify_qp)(struct rvt_qp *qp, struct ib_qp_attr *attr,
274 int attr_mask, struct ib_udata *udata);
Dennis Dalessandro3711baf2016-01-22 13:04:51 -0800275
Ira Weiny60c30f52016-02-03 14:14:45 -0800276 int (*check_send_wr)(struct rvt_qp *qp, struct ib_send_wr *wr);
277
Dennis Dalessandro3711baf2016-01-22 13:04:51 -0800278 void (*notify_create_mad_agent)(struct rvt_dev_info *rdi, int port_idx);
279 void (*notify_free_mad_agent)(struct rvt_dev_info *rdi, int port_idx);
Kamal Heib119a8e72016-01-06 10:03:59 -0800280};
281
Dennis Dalessandro01946212016-01-06 09:50:24 -0800282struct rvt_dev_info {
Dennis Dalessandro7b1e2092016-01-06 10:03:31 -0800283 struct ib_device ibdev; /* Keep this first. Nothing above here */
284
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800285 /*
286 * Prior to calling for registration the driver will be responsible for
287 * allocating space for this structure.
288 *
289 * The driver will also be responsible for filling in certain members of
Harish Chegondifeaeb6e2016-01-22 12:50:36 -0800290 * dparms.props. The driver needs to fill in dparms exactly as it would
291 * want values reported to a ULP. This will be returned to the caller
292 * in rdmavt's device. The driver should also therefore refrain from
293 * modifying this directly after registration with rdmavt.
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800294 */
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800295
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800296 /* Driver specific properties */
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800297 struct rvt_driver_params dparms;
Dennis Dalessandrob1070a72016-01-06 09:52:19 -0800298
Dennis Dalessandrob92a7562016-01-06 10:01:42 -0800299 struct rvt_mregion __rcu *dma_mr;
300 struct rvt_lkey_table lkey_table;
301
Dennis Dalessandroaec57782016-01-06 10:02:52 -0800302 /* Driver specific helper functions */
303 struct rvt_driver_provided driver_f;
Dennis Dalessandro01946212016-01-06 09:50:24 -0800304
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800305 /* Internal use */
306 int n_pds_allocated;
307 spinlock_t n_pds_lock; /* Protect pd allocated count */
Dennis Dalessandro0b8a8aa2016-01-06 10:03:07 -0800308
Kamal Heib119a8e72016-01-06 10:03:59 -0800309 int n_ahs_allocated;
310 spinlock_t n_ahs_lock; /* Protect ah allocated count */
311
Jubin Johnb8f881b2016-02-03 14:14:36 -0800312 u32 n_srqs_allocated;
313 spinlock_t n_srqs_lock; /* Protect srqs allocated count */
314
Dennis Dalessandro0b8a8aa2016-01-06 10:03:07 -0800315 int flags;
Dennis Dalessandrof3d01bb2016-01-06 10:04:13 -0800316 struct rvt_ibport **ports;
Dennis Dalessandro0acb0cc2016-01-06 10:04:46 -0800317
Dennis Dalessandro515667f2016-01-22 12:50:17 -0800318 /* QP */
Dennis Dalessandro0acb0cc2016-01-06 10:04:46 -0800319 struct rvt_qp_ibdev *qp_dev;
Dennis Dalessandro515667f2016-01-22 12:50:17 -0800320 u32 n_qps_allocated; /* number of QPs allocated for device */
Vennila Megavannanbfee5e32016-02-09 14:29:49 -0800321 u32 n_rc_qps; /* number of RC QPs allocated for device */
322 u32 busy_jiffies; /* timeout scaling based on RC QP count */
323 spinlock_t n_qps_lock; /* protect qps, rc qps and busy jiffy counts */
Dennis Dalessandro822514d2016-01-06 10:04:57 -0800324
325 /* memory maps */
326 struct list_head pending_mmaps;
327 spinlock_t mmap_offset_lock; /* protect mmap_offset */
328 u32 mmap_offset;
329 spinlock_t pending_lock; /* protect pending mmap list */
Dennis Dalessandro6f6387a2016-01-22 13:00:15 -0800330
331 /* CQ */
332 struct kthread_worker *worker; /* per device cq worker */
333 u32 n_cqs_allocated; /* number of CQs allocated for device */
334 spinlock_t n_cqs_lock; /* protect count of in use cqs */
Dennis Dalessandro4e740802016-01-22 13:00:55 -0800335
336 /* Multicast */
337 u32 n_mcast_grps_allocated; /* number of mcast groups allocated */
338 spinlock_t n_mcast_grps_lock;
339
Dennis Dalessandro01946212016-01-06 09:50:24 -0800340};
341
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800342static inline struct rvt_pd *ibpd_to_rvtpd(struct ib_pd *ibpd)
343{
344 return container_of(ibpd, struct rvt_pd, ibpd);
345}
346
Kamal Heib119a8e72016-01-06 10:03:59 -0800347static inline struct rvt_ah *ibah_to_rvtah(struct ib_ah *ibah)
348{
349 return container_of(ibah, struct rvt_ah, ibah);
350}
351
Dennis Dalessandro8afd32e2016-01-06 09:51:48 -0800352static inline struct rvt_dev_info *ib_to_rvt(struct ib_device *ibdev)
353{
354 return container_of(ibdev, struct rvt_dev_info, ibdev);
355}
356
Dennis Dalessandro70a1a352016-01-06 10:04:06 -0800357static inline struct rvt_srq *ibsrq_to_rvtsrq(struct ib_srq *ibsrq)
358{
359 return container_of(ibsrq, struct rvt_srq, ibsrq);
360}
361
Dennis Dalessandrobfbac092016-01-22 13:00:22 -0800362static inline struct rvt_qp *ibqp_to_rvtqp(struct ib_qp *ibqp)
363{
364 return container_of(ibqp, struct rvt_qp, ibqp);
365}
366
Dennis Dalessandro38ce2c62016-01-06 10:05:12 -0800367static inline unsigned rvt_get_npkeys(struct rvt_dev_info *rdi)
368{
369 /*
370 * All ports have same number of pkeys.
371 */
372 return rdi->dparms.npkeys;
373}
374
375/*
376 * Return the indexed PKEY from the port PKEY table.
377 */
378static inline u16 rvt_get_pkey(struct rvt_dev_info *rdi,
379 int port_index,
380 unsigned index)
381{
382 if (index >= rvt_get_npkeys(rdi))
383 return 0;
384 else
385 return rdi->ports[port_index]->pkey_table[index];
386}
387
Dennis Dalessandro3b0b3fb2016-01-22 13:00:35 -0800388/**
389 * rvt_lookup_qpn - return the QP with the given QPN
390 * @ibp: the ibport
391 * @qpn: the QP number to look up
392 *
393 * The caller must hold the rcu_read_lock(), and keep the lock until
394 * the returned qp is no longer in use.
395 */
396/* TODO: Remove this and put in rdmavt/qp.h when no longer needed by drivers */
397static inline struct rvt_qp *rvt_lookup_qpn(struct rvt_dev_info *rdi,
398 struct rvt_ibport *rvp,
399 u32 qpn) __must_hold(RCU)
400{
401 struct rvt_qp *qp = NULL;
402
403 if (unlikely(qpn <= 1)) {
404 qp = rcu_dereference(rvp->qp[qpn]);
405 } else {
406 u32 n = hash_32(qpn, rdi->qp_dev->qp_table_bits);
407
408 for (qp = rcu_dereference(rdi->qp_dev->qp_table[n]); qp;
409 qp = rcu_dereference(qp->next))
410 if (qp->ibqp.qp_num == qpn)
411 break;
412 }
413 return qp;
414}
415
Dennis Dalessandroff6acd62016-01-22 13:04:45 -0800416struct rvt_dev_info *rvt_alloc_device(size_t size, int nports);
Dennis Dalessandro01946212016-01-06 09:50:24 -0800417int rvt_register_device(struct rvt_dev_info *rvd);
418void rvt_unregister_device(struct rvt_dev_info *rvd);
Kamal Heib119a8e72016-01-06 10:03:59 -0800419int rvt_check_ah(struct ib_device *ibdev, struct ib_ah_attr *ah_attr);
Dennis Dalessandro38ce2c62016-01-06 10:05:12 -0800420int rvt_init_port(struct rvt_dev_info *rdi, struct rvt_ibport *port,
Dennis Dalessandrof1badc72016-02-03 14:15:02 -0800421 int port_index, u16 *pkey_table);
Dennis Dalessandro7b1e2092016-01-06 10:03:31 -0800422int rvt_rkey_ok(struct rvt_qp *qp, struct rvt_sge *sge,
423 u32 len, u64 vaddr, u32 rkey, int acc);
424int rvt_lkey_ok(struct rvt_lkey_table *rkt, struct rvt_pd *pd,
425 struct rvt_sge *isge, struct ib_sge *sge, int acc);
Dennis Dalessandro822514d2016-01-06 10:04:57 -0800426int rvt_mmap(struct ib_ucontext *context, struct vm_area_struct *vma);
427void rvt_release_mmap_info(struct kref *ref);
428struct rvt_mmap_info *rvt_create_mmap_info(struct rvt_dev_info *rdi,
429 u32 size,
430 struct ib_ucontext *context,
431 void *obj);
432void rvt_update_mmap_info(struct rvt_dev_info *rdi, struct rvt_mmap_info *ip,
433 u32 size, void *obj);
Dennis Dalessandro4e740802016-01-22 13:00:55 -0800434int rvt_reg_mr(struct rvt_qp *qp, struct ib_reg_wr *wr);
435struct rvt_mcast *rvt_mcast_find(struct rvt_ibport *ibp, union ib_gid *mgid);
Dennis Dalessandro822514d2016-01-06 10:04:57 -0800436
Dennis Dalessandro5a9cf6f2016-01-22 12:50:24 -0800437/* Temporary export */
438void rvt_reset_qp(struct rvt_dev_info *rdi, struct rvt_qp *qp,
439 enum ib_qp_type type);
Dennis Dalessandro4e740802016-01-22 13:00:55 -0800440
Dennis Dalessandro01946212016-01-06 09:50:24 -0800441#endif /* DEF_RDMA_VT_H */