xref: /linux/drivers/infiniband/sw/rxe/rxe_pool.h (revision b92d766c87022fc82cd6da774010b71ee92fc3d3)
163fa15dbSBob Pearson /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
28700e3e7SMoni Shoua /*
38700e3e7SMoni Shoua  * Copyright (c) 2016 Mellanox Technologies Ltd. All rights reserved.
48700e3e7SMoni Shoua  * Copyright (c) 2015 System Fabric Works, Inc. All rights reserved.
58700e3e7SMoni Shoua  */
68700e3e7SMoni Shoua 
78700e3e7SMoni Shoua #ifndef RXE_POOL_H
88700e3e7SMoni Shoua #define RXE_POOL_H
98700e3e7SMoni Shoua 
108700e3e7SMoni Shoua #define RXE_POOL_ALIGN		(16)
118700e3e7SMoni Shoua #define RXE_POOL_CACHE_FLAGS	(0)
128700e3e7SMoni Shoua 
138700e3e7SMoni Shoua enum rxe_pool_flags {
148700e3e7SMoni Shoua 	RXE_POOL_INDEX		= BIT(1),
158700e3e7SMoni Shoua 	RXE_POOL_KEY		= BIT(2),
1621a428a0SLeon Romanovsky 	RXE_POOL_NO_ALLOC	= BIT(4),
178700e3e7SMoni Shoua };
188700e3e7SMoni Shoua 
198700e3e7SMoni Shoua enum rxe_elem_type {
208700e3e7SMoni Shoua 	RXE_TYPE_UC,
218700e3e7SMoni Shoua 	RXE_TYPE_PD,
228700e3e7SMoni Shoua 	RXE_TYPE_AH,
238700e3e7SMoni Shoua 	RXE_TYPE_SRQ,
248700e3e7SMoni Shoua 	RXE_TYPE_QP,
258700e3e7SMoni Shoua 	RXE_TYPE_CQ,
268700e3e7SMoni Shoua 	RXE_TYPE_MR,
278700e3e7SMoni Shoua 	RXE_TYPE_MW,
288700e3e7SMoni Shoua 	RXE_TYPE_MC_GRP,
298700e3e7SMoni Shoua 	RXE_TYPE_MC_ELEM,
308700e3e7SMoni Shoua 	RXE_NUM_TYPES,		/* keep me last */
318700e3e7SMoni Shoua };
328700e3e7SMoni Shoua 
3302827b67SBob Pearson struct rxe_pool_elem {
348700e3e7SMoni Shoua 	struct rxe_pool		*pool;
35*b92d766cSBob Pearson 	void			*obj;
368700e3e7SMoni Shoua 	struct kref		ref_cnt;
378700e3e7SMoni Shoua 	struct list_head	list;
388700e3e7SMoni Shoua 
39c06ee3a0SBob Pearson 	/* only used if keyed */
40c06ee3a0SBob Pearson 	struct rb_node		key_node;
41c06ee3a0SBob Pearson 
42c06ee3a0SBob Pearson 	/* only used if indexed */
43c06ee3a0SBob Pearson 	struct rb_node		index_node;
448700e3e7SMoni Shoua 	u32			index;
458700e3e7SMoni Shoua };
468700e3e7SMoni Shoua 
478700e3e7SMoni Shoua struct rxe_pool {
488700e3e7SMoni Shoua 	struct rxe_dev		*rxe;
49c95acedbSBob Pearson 	const char		*name;
5066d0f207SParav Pandit 	rwlock_t		pool_lock; /* protects pool add/del/search */
5102827b67SBob Pearson 	void			(*cleanup)(struct rxe_pool_elem *obj);
528700e3e7SMoni Shoua 	enum rxe_pool_flags	flags;
538700e3e7SMoni Shoua 	enum rxe_elem_type	type;
548700e3e7SMoni Shoua 
558700e3e7SMoni Shoua 	unsigned int		max_elem;
568700e3e7SMoni Shoua 	atomic_t		num_elem;
57c95acedbSBob Pearson 	size_t			elem_size;
58c95acedbSBob Pearson 	size_t			elem_offset;
598700e3e7SMoni Shoua 
60c06ee3a0SBob Pearson 	/* only used if indexed */
61c06ee3a0SBob Pearson 	struct {
628700e3e7SMoni Shoua 		struct rb_root		tree;
638700e3e7SMoni Shoua 		unsigned long		*table;
64c06ee3a0SBob Pearson 		u32			last;
658700e3e7SMoni Shoua 		u32			max_index;
668700e3e7SMoni Shoua 		u32			min_index;
67c06ee3a0SBob Pearson 	} index;
68c06ee3a0SBob Pearson 
69c06ee3a0SBob Pearson 	/* only used if keyed */
70c06ee3a0SBob Pearson 	struct {
71c06ee3a0SBob Pearson 		struct rb_root		tree;
728700e3e7SMoni Shoua 		size_t			key_offset;
738700e3e7SMoni Shoua 		size_t			key_size;
74c06ee3a0SBob Pearson 	} key;
758700e3e7SMoni Shoua };
768700e3e7SMoni Shoua 
778700e3e7SMoni Shoua /* initialize a pool of objects with given limit on
788700e3e7SMoni Shoua  * number of elements. gets parameters from rxe_type_info
798700e3e7SMoni Shoua  * pool elements will be allocated out of a slab cache
808700e3e7SMoni Shoua  */
818700e3e7SMoni Shoua int rxe_pool_init(struct rxe_dev *rxe, struct rxe_pool *pool,
828700e3e7SMoni Shoua 		  enum rxe_elem_type type, u32 max_elem);
838700e3e7SMoni Shoua 
848700e3e7SMoni Shoua /* free resources from object pool */
851ceb25c8SYuval Shaia void rxe_pool_cleanup(struct rxe_pool *pool);
868700e3e7SMoni Shoua 
8788cc77ebSBob Pearson /* allocate an object from pool holding and not holding the pool lock */
8888cc77ebSBob Pearson void *rxe_alloc_locked(struct rxe_pool *pool);
898700e3e7SMoni Shoua 
9088cc77ebSBob Pearson void *rxe_alloc(struct rxe_pool *pool);
913853c35eSBob Pearson 
9221a428a0SLeon Romanovsky /* connect already allocated object to pool */
9302827b67SBob Pearson int __rxe_add_to_pool(struct rxe_pool *pool, struct rxe_pool_elem *elem);
9491a42c5bSBob Pearson 
9502827b67SBob Pearson #define rxe_add_to_pool(pool, obj) __rxe_add_to_pool(pool, &(obj)->elem)
9621a428a0SLeon Romanovsky 
978700e3e7SMoni Shoua /* assign an index to an indexed object and insert object into
9888cc77ebSBob Pearson  *  pool's rb tree holding and not holding the pool_lock
998700e3e7SMoni Shoua  */
10002827b67SBob Pearson int __rxe_add_index_locked(struct rxe_pool_elem *elem);
10188cc77ebSBob Pearson 
10202827b67SBob Pearson #define rxe_add_index_locked(obj) __rxe_add_index_locked(&(obj)->elem)
10388cc77ebSBob Pearson 
10402827b67SBob Pearson int __rxe_add_index(struct rxe_pool_elem *elem);
10591a42c5bSBob Pearson 
10602827b67SBob Pearson #define rxe_add_index(obj) __rxe_add_index(&(obj)->elem)
1078700e3e7SMoni Shoua 
1083853c35eSBob Pearson /* drop an index and remove object from rb tree
10988cc77ebSBob Pearson  * holding and not holding the pool_lock
1103853c35eSBob Pearson  */
11102827b67SBob Pearson void __rxe_drop_index_locked(struct rxe_pool_elem *elem);
11288cc77ebSBob Pearson 
11302827b67SBob Pearson #define rxe_drop_index_locked(obj) __rxe_drop_index_locked(&(obj)->elem)
11488cc77ebSBob Pearson 
11502827b67SBob Pearson void __rxe_drop_index(struct rxe_pool_elem *elem);
11691a42c5bSBob Pearson 
11702827b67SBob Pearson #define rxe_drop_index(obj) __rxe_drop_index(&(obj)->elem)
1188700e3e7SMoni Shoua 
1198700e3e7SMoni Shoua /* assign a key to a keyed object and insert object into
12088cc77ebSBob Pearson  * pool's rb tree holding and not holding pool_lock
1218700e3e7SMoni Shoua  */
12202827b67SBob Pearson int __rxe_add_key_locked(struct rxe_pool_elem *elem, void *key);
12388cc77ebSBob Pearson 
12402827b67SBob Pearson #define rxe_add_key_locked(obj, key) __rxe_add_key_locked(&(obj)->elem, key)
12588cc77ebSBob Pearson 
12602827b67SBob Pearson int __rxe_add_key(struct rxe_pool_elem *elem, void *key);
12791a42c5bSBob Pearson 
12802827b67SBob Pearson #define rxe_add_key(obj, key) __rxe_add_key(&(obj)->elem, key)
1298700e3e7SMoni Shoua 
13088cc77ebSBob Pearson /* remove elem from rb tree holding and not holding the pool_lock */
13102827b67SBob Pearson void __rxe_drop_key_locked(struct rxe_pool_elem *elem);
1323853c35eSBob Pearson 
13302827b67SBob Pearson #define rxe_drop_key_locked(obj) __rxe_drop_key_locked(&(obj)->elem)
1343853c35eSBob Pearson 
13502827b67SBob Pearson void __rxe_drop_key(struct rxe_pool_elem *elem);
13691a42c5bSBob Pearson 
13702827b67SBob Pearson #define rxe_drop_key(obj) __rxe_drop_key(&(obj)->elem)
1388700e3e7SMoni Shoua 
13988cc77ebSBob Pearson /* lookup an indexed object from index holding and not holding the pool_lock.
1403853c35eSBob Pearson  * takes a reference on object
1413853c35eSBob Pearson  */
14288cc77ebSBob Pearson void *rxe_pool_get_index_locked(struct rxe_pool *pool, u32 index);
14388cc77ebSBob Pearson 
1448700e3e7SMoni Shoua void *rxe_pool_get_index(struct rxe_pool *pool, u32 index);
1458700e3e7SMoni Shoua 
14688cc77ebSBob Pearson /* lookup keyed object from key holding and not holding the pool_lock.
1473853c35eSBob Pearson  * takes a reference on the objecti
1483853c35eSBob Pearson  */
14988cc77ebSBob Pearson void *rxe_pool_get_key_locked(struct rxe_pool *pool, void *key);
1508700e3e7SMoni Shoua 
15188cc77ebSBob Pearson void *rxe_pool_get_key(struct rxe_pool *pool, void *key);
1523853c35eSBob Pearson 
1538700e3e7SMoni Shoua /* cleanup an object when all references are dropped */
1548700e3e7SMoni Shoua void rxe_elem_release(struct kref *kref);
1558700e3e7SMoni Shoua 
1568700e3e7SMoni Shoua /* take a reference on an object */
15702827b67SBob Pearson #define rxe_add_ref(obj) kref_get(&(obj)->elem.ref_cnt)
1588700e3e7SMoni Shoua 
1598700e3e7SMoni Shoua /* drop a reference on an object */
16002827b67SBob Pearson #define rxe_drop_ref(obj) kref_put(&(obj)->elem.ref_cnt, rxe_elem_release)
1618700e3e7SMoni Shoua 
1628700e3e7SMoni Shoua #endif /* RXE_POOL_H */
163