1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
3 * Copyright(c) 2016 - 2019 Intel Corporation.
10 * Structure that low level drivers will populate in order to register with the
14 #include <linux/spinlock.h>
15 #include <linux/list.h>
16 #include <linux/hash.h>
17 #include <rdma/ib_verbs.h>
18 #include <rdma/ib_mad.h>
19 #include <rdma/rdmavt_mr.h>
21 #define RVT_MAX_PKEY_VALUES 16
23 #define RVT_MAX_TRAP_LEN 100 /* Limit pending trap list */
24 #define RVT_MAX_TRAP_LISTS 5 /*((IB_NOTICE_TYPE_INFO & 0x0F) + 1)*/
25 #define RVT_TRAP_TIMEOUT 4096 /* 4.096 usec */
29 struct list_head list;
35 struct rvt_qp __rcu *qp[2];
36 struct ib_mad_agent *send_agent; /* agent for SMI (traps) */
37 struct rb_root mcast_tree;
38 spinlock_t lock; /* protect changes in this struct */
40 /* non-zero when timer is set */
41 unsigned long mkey_lease_timeout;
42 unsigned long trap_timeout;
43 __be64 gid_prefix; /* in network order */
49 u32 pma_sample_interval;
50 __be16 pma_counter_select[5];
52 u16 mkey_lease_period;
60 * Driver is expected to keep these up to date. These
61 * counters are informational only and not required to be
62 * completely accurate.
82 /* Hot-path per CPU counters to avoid cacheline trading to update */
85 u64 z_rc_delayed_comp;
86 u64 __percpu *rc_acks;
87 u64 __percpu *rc_qacks;
88 u64 __percpu *rc_delayed_comp;
90 void *priv; /* driver private data */
93 * The pkey table is allocated and maintained by the driver. Drivers
94 * need to have access to this before registering with rdmav. However
95 * rdmavt will need access to it so drivers need to provide this during
96 * the attach port API call.
100 struct rvt_ah *sm_ah;
103 * Keep a list of traps that have not been repressed. They will be
104 * resent based on trap_timer.
106 struct trap_list trap_lists[RVT_MAX_TRAP_LISTS];
107 struct timer_list trap_timer;
110 #define RVT_CQN_MAX 16 /* maximum length of cq name */
112 #define RVT_SGE_COPY_MEMCPY 0
113 #define RVT_SGE_COPY_CACHELESS 1
114 #define RVT_SGE_COPY_ADAPTIVE 2
117 * Things that are driver specific, module parameters in hfi1 and qib
119 struct rvt_driver_params {
120 struct ib_device_attr props;
123 * Anything driver specific that is not covered by props
124 * For instance special module parameters. Goes here.
126 unsigned int lkey_table_size;
127 unsigned int qp_table_size;
128 unsigned int sge_copy_mode;
129 unsigned int wss_threshold;
130 unsigned int wss_clean_period;
145 u8 extra_rdma_atomic;
146 u8 reserved_operations;
150 struct rvt_ucontext {
151 struct ib_ucontext ibucontext;
154 /* Protection domain */
163 struct rdma_ah_attr attr;
169 * This structure is used by rvt_mmap() to validate an offset
170 * when an mmap() request is made. The vm_area_struct then uses
171 * this as its vm_private_data.
173 struct rvt_mmap_info {
174 struct list_head pending_mmaps;
175 struct ib_ucontext *context;
182 /* memory working set size */
184 unsigned long *entries;
185 atomic_t total_count;
186 atomic_t clean_counter;
187 atomic_t clean_entry;
192 unsigned int clean_period;
197 struct rvt_driver_provided {
199 * Which functions are required depends on which verbs rdmavt is
200 * providing and which verbs the driver is overriding. See
201 * check_support() for details.
204 /* hot path calldowns in a single cacheline */
207 * Give the driver a notice that there is send work to do. It is up to
208 * the driver to generally push the packets out, this just queues the
209 * work with the driver. There are two variants here. The no_lock
210 * version requires the s_lock not to be held. The other assumes the
213 bool (*schedule_send)(struct rvt_qp *qp);
214 bool (*schedule_send_no_lock)(struct rvt_qp *qp);
217 * Driver specific work request setup and checking.
218 * This function is allowed to perform any setup, checks, or
219 * adjustments required to the SWQE in order to be usable by
220 * underlying protocols. This includes private data structure
223 int (*setup_wqe)(struct rvt_qp *qp, struct rvt_swqe *wqe,
227 * Sometimes rdmavt needs to kick the driver's send progress. That is
228 * done by this call back.
230 void (*do_send)(struct rvt_qp *qp);
233 * Returns a pointer to the underlying hardware's PCI device. This is
234 * used to display information as to what hardware is being referenced
235 * in an output message
237 struct pci_dev * (*get_pci_dev)(struct rvt_dev_info *rdi);
240 * Allocate a private queue pair data structure for driver specific
241 * information which is opaque to rdmavt. Errors are returned via
242 * ERR_PTR(err). The driver is free to return NULL or a valid
245 void * (*qp_priv_alloc)(struct rvt_dev_info *rdi, struct rvt_qp *qp);
248 * Init a structure allocated with qp_priv_alloc(). This should be
249 * called after all qp fields have been initialized in rdmavt.
251 int (*qp_priv_init)(struct rvt_dev_info *rdi, struct rvt_qp *qp,
252 struct ib_qp_init_attr *init_attr);
255 * Free the driver's private qp structure.
257 void (*qp_priv_free)(struct rvt_dev_info *rdi, struct rvt_qp *qp);
260 * Inform the driver the particular qp in question has been reset so
261 * that it can clean up anything it needs to.
263 void (*notify_qp_reset)(struct rvt_qp *qp);
266 * Get a path mtu from the driver based on qp attributes.
268 int (*get_pmtu_from_attr)(struct rvt_dev_info *rdi, struct rvt_qp *qp,
269 struct ib_qp_attr *attr);
272 * Notify driver that it needs to flush any outstanding IO requests that
273 * are waiting on a qp.
275 void (*flush_qp_waiters)(struct rvt_qp *qp);
278 * Notify driver to stop its queue of sending packets. Nothing else
279 * should be posted to the queue pair after this has been called.
281 void (*stop_send_queue)(struct rvt_qp *qp);
284 * Have the driver drain any in progress operations
286 void (*quiesce_qp)(struct rvt_qp *qp);
289 * Inform the driver a qp has went to error state.
291 void (*notify_error_qp)(struct rvt_qp *qp);
294 * Get an MTU for a qp.
296 u32 (*mtu_from_qp)(struct rvt_dev_info *rdi, struct rvt_qp *qp,
299 * Convert an mtu to a path mtu
301 int (*mtu_to_path_mtu)(u32 mtu);
304 * Get the guid of a port in big endian byte order
306 int (*get_guid_be)(struct rvt_dev_info *rdi, struct rvt_ibport *rvp,
307 int guid_index, __be64 *guid);
310 * Query driver for the state of the port.
312 int (*query_port_state)(struct rvt_dev_info *rdi, u32 port_num,
313 struct ib_port_attr *props);
316 * Tell driver to shutdown a port
318 int (*shut_down_port)(struct rvt_dev_info *rdi, u32 port_num);
320 /* Tell driver to send a trap for changed port capabilities */
321 void (*cap_mask_chg)(struct rvt_dev_info *rdi, u32 port_num);
324 * The following functions can be safely ignored completely. Any use of
325 * these is checked for NULL before blindly calling. Rdmavt should also
326 * be functional if drivers omit these.
329 /* Called to inform the driver that all qps should now be freed. */
330 unsigned (*free_all_qps)(struct rvt_dev_info *rdi);
332 /* Driver specific AH validation */
333 int (*check_ah)(struct ib_device *, struct rdma_ah_attr *);
335 /* Inform the driver a new AH has been created */
336 void (*notify_new_ah)(struct ib_device *, struct rdma_ah_attr *,
339 /* Let the driver pick the next queue pair number*/
340 int (*alloc_qpn)(struct rvt_dev_info *rdi, struct rvt_qpn_table *qpt,
341 enum ib_qp_type type, u32 port_num);
343 /* Determine if its safe or allowed to modify the qp */
344 int (*check_modify_qp)(struct rvt_qp *qp, struct ib_qp_attr *attr,
345 int attr_mask, struct ib_udata *udata);
347 /* Driver specific QP modification/notification-of */
348 void (*modify_qp)(struct rvt_qp *qp, struct ib_qp_attr *attr,
349 int attr_mask, struct ib_udata *udata);
351 /* Notify driver a mad agent has been created */
352 void (*notify_create_mad_agent)(struct rvt_dev_info *rdi, int port_idx);
354 /* Notify driver a mad agent has been removed */
355 void (*notify_free_mad_agent)(struct rvt_dev_info *rdi, int port_idx);
357 /* Notify driver to restart rc */
358 void (*notify_restart_rc)(struct rvt_qp *qp, u32 psn, int wait);
360 /* Get and return CPU to pin CQ processing thread */
361 int (*comp_vect_cpu_lookup)(struct rvt_dev_info *rdi, int comp_vect);
364 struct rvt_dev_info {
365 struct ib_device ibdev; /* Keep this first. Nothing above here */
368 * Prior to calling for registration the driver will be responsible for
369 * allocating space for this structure.
371 * The driver will also be responsible for filling in certain members of
372 * dparms.props. The driver needs to fill in dparms exactly as it would
373 * want values reported to a ULP. This will be returned to the caller
374 * in rdmavt's device. The driver should also therefore refrain from
375 * modifying this directly after registration with rdmavt.
378 /* Driver specific properties */
379 struct rvt_driver_params dparms;
381 /* post send table */
382 const struct rvt_operation_params *post_parms;
384 /* opcode translation table */
385 const enum ib_wc_opcode *wc_opcode;
387 /* Driver specific helper functions */
388 struct rvt_driver_provided driver_f;
390 struct rvt_mregion __rcu *dma_mr;
391 struct rvt_lkey_table lkey_table;
395 spinlock_t n_pds_lock; /* Protect pd allocated count */
398 spinlock_t n_ahs_lock; /* Protect ah allocated count */
400 u32 n_srqs_allocated;
401 spinlock_t n_srqs_lock; /* Protect srqs allocated count */
404 struct rvt_ibport **ports;
407 struct rvt_qp_ibdev *qp_dev;
408 u32 n_qps_allocated; /* number of QPs allocated for device */
409 u32 n_rc_qps; /* number of RC QPs allocated for device */
410 u32 busy_jiffies; /* timeout scaling based on RC QP count */
411 spinlock_t n_qps_lock; /* protect qps, rc qps and busy jiffy counts */
414 struct list_head pending_mmaps;
415 spinlock_t mmap_offset_lock; /* protect mmap_offset */
417 spinlock_t pending_lock; /* protect pending mmap list */
420 u32 n_cqs_allocated; /* number of CQs allocated for device */
421 spinlock_t n_cqs_lock; /* protect count of in use cqs */
424 u32 n_mcast_grps_allocated; /* number of mcast groups allocated */
425 spinlock_t n_mcast_grps_lock;
427 /* Memory Working Set Size */
432 * rvt_set_ibdev_name - Craft an IB device name from client info
433 * @rdi: pointer to the client rvt_dev_info structure
434 * @name: client specific name
435 * @unit: client specific unit number.
437 static inline void rvt_set_ibdev_name(struct rvt_dev_info *rdi,
438 const char *fmt, const char *name,
442 * FIXME: rvt and its users want to touch the ibdev before
443 * registration and have things like the name work. We don't have the
444 * infrastructure in the core to support this directly today, hack it
445 * to work by setting the name manually here.
447 dev_set_name(&rdi->ibdev.dev, fmt, name, unit);
448 strscpy(rdi->ibdev.name, dev_name(&rdi->ibdev.dev), IB_DEVICE_NAME_MAX);
452 * rvt_get_ibdev_name - return the IB name
453 * @rdi: rdmavt device
455 * Return the registered name of the device.
457 static inline const char *rvt_get_ibdev_name(const struct rvt_dev_info *rdi)
459 return dev_name(&rdi->ibdev.dev);
462 static inline struct rvt_pd *ibpd_to_rvtpd(struct ib_pd *ibpd)
464 return container_of(ibpd, struct rvt_pd, ibpd);
467 static inline struct rvt_ah *ibah_to_rvtah(struct ib_ah *ibah)
469 return container_of(ibah, struct rvt_ah, ibah);
472 static inline struct rvt_dev_info *ib_to_rvt(struct ib_device *ibdev)
474 return container_of(ibdev, struct rvt_dev_info, ibdev);
477 static inline unsigned rvt_get_npkeys(struct rvt_dev_info *rdi)
480 * All ports have same number of pkeys.
482 return rdi->dparms.npkeys;
486 * Return the max atomic suitable for determining
487 * the size of the ack ring buffer in a QP.
489 static inline unsigned int rvt_max_atomic(struct rvt_dev_info *rdi)
491 return rdi->dparms.max_rdma_atomic +
492 rdi->dparms.extra_rdma_atomic + 1;
495 static inline unsigned int rvt_size_atomic(struct rvt_dev_info *rdi)
497 return rdi->dparms.max_rdma_atomic +
498 rdi->dparms.extra_rdma_atomic;
502 * Return the indexed PKEY from the port PKEY table.
504 static inline u16 rvt_get_pkey(struct rvt_dev_info *rdi,
508 if (index >= rvt_get_npkeys(rdi))
511 return rdi->ports[port_index]->pkey_table[index];
514 struct rvt_dev_info *rvt_alloc_device(size_t size, int nports);
515 void rvt_dealloc_device(struct rvt_dev_info *rdi);
516 int rvt_register_device(struct rvt_dev_info *rvd);
517 void rvt_unregister_device(struct rvt_dev_info *rvd);
518 int rvt_check_ah(struct ib_device *ibdev, struct rdma_ah_attr *ah_attr);
519 int rvt_init_port(struct rvt_dev_info *rdi, struct rvt_ibport *port,
520 int port_index, u16 *pkey_table);
521 int rvt_fast_reg_mr(struct rvt_qp *qp, struct ib_mr *ibmr, u32 key,
523 int rvt_invalidate_rkey(struct rvt_qp *qp, u32 rkey);
524 int rvt_rkey_ok(struct rvt_qp *qp, struct rvt_sge *sge,
525 u32 len, u64 vaddr, u32 rkey, int acc);
526 int rvt_lkey_ok(struct rvt_lkey_table *rkt, struct rvt_pd *pd,
527 struct rvt_sge *isge, struct rvt_sge *last_sge,
528 struct ib_sge *sge, int acc);
529 struct rvt_mcast *rvt_mcast_find(struct rvt_ibport *ibp, union ib_gid *mgid,
532 #endif /* DEF_RDMA_VT_H */