xref: /linux/drivers/infiniband/sw/rxe/rxe_pool.h (revision d572405518ffd7c21882c1f2e9a568f2e8548d0b)
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 enum rxe_pool_flags {
118700e3e7SMoni Shoua 	RXE_POOL_INDEX		= BIT(1),
128700e3e7SMoni Shoua 	RXE_POOL_KEY		= BIT(2),
1321a428a0SLeon Romanovsky 	RXE_POOL_NO_ALLOC	= BIT(4),
148700e3e7SMoni Shoua };
158700e3e7SMoni Shoua 
168700e3e7SMoni Shoua enum rxe_elem_type {
178700e3e7SMoni Shoua 	RXE_TYPE_UC,
188700e3e7SMoni Shoua 	RXE_TYPE_PD,
198700e3e7SMoni Shoua 	RXE_TYPE_AH,
208700e3e7SMoni Shoua 	RXE_TYPE_SRQ,
218700e3e7SMoni Shoua 	RXE_TYPE_QP,
228700e3e7SMoni Shoua 	RXE_TYPE_CQ,
238700e3e7SMoni Shoua 	RXE_TYPE_MR,
248700e3e7SMoni Shoua 	RXE_TYPE_MW,
258700e3e7SMoni Shoua 	RXE_TYPE_MC_GRP,
268700e3e7SMoni Shoua 	RXE_NUM_TYPES,		/* keep me last */
278700e3e7SMoni Shoua };
288700e3e7SMoni Shoua 
2902827b67SBob Pearson struct rxe_pool_elem {
308700e3e7SMoni Shoua 	struct rxe_pool		*pool;
31b92d766cSBob Pearson 	void			*obj;
328700e3e7SMoni Shoua 	struct kref		ref_cnt;
338700e3e7SMoni Shoua 	struct list_head	list;
348700e3e7SMoni Shoua 
35c06ee3a0SBob Pearson 	/* only used if keyed */
36c06ee3a0SBob Pearson 	struct rb_node		key_node;
37c06ee3a0SBob Pearson 
38c06ee3a0SBob Pearson 	/* only used if indexed */
39c06ee3a0SBob Pearson 	struct rb_node		index_node;
408700e3e7SMoni Shoua 	u32			index;
418700e3e7SMoni Shoua };
428700e3e7SMoni Shoua 
438700e3e7SMoni Shoua struct rxe_pool {
448700e3e7SMoni Shoua 	struct rxe_dev		*rxe;
45c95acedbSBob Pearson 	const char		*name;
4666d0f207SParav Pandit 	rwlock_t		pool_lock; /* protects pool add/del/search */
4702827b67SBob Pearson 	void			(*cleanup)(struct rxe_pool_elem *obj);
488700e3e7SMoni Shoua 	enum rxe_pool_flags	flags;
498700e3e7SMoni Shoua 	enum rxe_elem_type	type;
508700e3e7SMoni Shoua 
518700e3e7SMoni Shoua 	unsigned int		max_elem;
528700e3e7SMoni Shoua 	atomic_t		num_elem;
53c95acedbSBob Pearson 	size_t			elem_size;
54c95acedbSBob Pearson 	size_t			elem_offset;
558700e3e7SMoni Shoua 
56c06ee3a0SBob Pearson 	/* only used if indexed */
57c06ee3a0SBob Pearson 	struct {
588700e3e7SMoni Shoua 		struct rb_root		tree;
598700e3e7SMoni Shoua 		unsigned long		*table;
60c06ee3a0SBob Pearson 		u32			last;
618700e3e7SMoni Shoua 		u32			max_index;
628700e3e7SMoni Shoua 		u32			min_index;
63c06ee3a0SBob Pearson 	} index;
64c06ee3a0SBob Pearson 
65c06ee3a0SBob Pearson 	/* only used if keyed */
66c06ee3a0SBob Pearson 	struct {
67c06ee3a0SBob Pearson 		struct rb_root		tree;
688700e3e7SMoni Shoua 		size_t			key_offset;
698700e3e7SMoni Shoua 		size_t			key_size;
70c06ee3a0SBob Pearson 	} key;
718700e3e7SMoni Shoua };
728700e3e7SMoni Shoua 
738700e3e7SMoni Shoua /* initialize a pool of objects with given limit on
748700e3e7SMoni Shoua  * number of elements. gets parameters from rxe_type_info
758700e3e7SMoni Shoua  * pool elements will be allocated out of a slab cache
768700e3e7SMoni Shoua  */
778700e3e7SMoni Shoua int rxe_pool_init(struct rxe_dev *rxe, struct rxe_pool *pool,
788700e3e7SMoni Shoua 		  enum rxe_elem_type type, u32 max_elem);
798700e3e7SMoni Shoua 
808700e3e7SMoni Shoua /* free resources from object pool */
811ceb25c8SYuval Shaia void rxe_pool_cleanup(struct rxe_pool *pool);
828700e3e7SMoni Shoua 
8388cc77ebSBob Pearson /* allocate an object from pool holding and not holding the pool lock */
8488cc77ebSBob Pearson void *rxe_alloc_locked(struct rxe_pool *pool);
858700e3e7SMoni Shoua 
8688cc77ebSBob Pearson void *rxe_alloc(struct rxe_pool *pool);
873853c35eSBob Pearson 
8821a428a0SLeon Romanovsky /* connect already allocated object to pool */
8902827b67SBob Pearson int __rxe_add_to_pool(struct rxe_pool *pool, struct rxe_pool_elem *elem);
9091a42c5bSBob Pearson 
9102827b67SBob Pearson #define rxe_add_to_pool(pool, obj) __rxe_add_to_pool(pool, &(obj)->elem)
9221a428a0SLeon Romanovsky 
938700e3e7SMoni Shoua /* assign an index to an indexed object and insert object into
9488cc77ebSBob Pearson  *  pool's rb tree holding and not holding the pool_lock
958700e3e7SMoni Shoua  */
9602827b67SBob Pearson int __rxe_add_index_locked(struct rxe_pool_elem *elem);
9788cc77ebSBob Pearson 
9802827b67SBob Pearson #define rxe_add_index_locked(obj) __rxe_add_index_locked(&(obj)->elem)
9988cc77ebSBob Pearson 
10002827b67SBob Pearson int __rxe_add_index(struct rxe_pool_elem *elem);
10191a42c5bSBob Pearson 
10202827b67SBob Pearson #define rxe_add_index(obj) __rxe_add_index(&(obj)->elem)
1038700e3e7SMoni Shoua 
1043853c35eSBob Pearson /* drop an index and remove object from rb tree
10588cc77ebSBob Pearson  * holding and not holding the pool_lock
1063853c35eSBob Pearson  */
10702827b67SBob Pearson void __rxe_drop_index_locked(struct rxe_pool_elem *elem);
10888cc77ebSBob Pearson 
10902827b67SBob Pearson #define rxe_drop_index_locked(obj) __rxe_drop_index_locked(&(obj)->elem)
11088cc77ebSBob Pearson 
11102827b67SBob Pearson void __rxe_drop_index(struct rxe_pool_elem *elem);
11291a42c5bSBob Pearson 
11302827b67SBob Pearson #define rxe_drop_index(obj) __rxe_drop_index(&(obj)->elem)
1148700e3e7SMoni Shoua 
1158700e3e7SMoni Shoua /* assign a key to a keyed object and insert object into
11688cc77ebSBob Pearson  * pool's rb tree holding and not holding pool_lock
1178700e3e7SMoni Shoua  */
11802827b67SBob Pearson int __rxe_add_key_locked(struct rxe_pool_elem *elem, void *key);
11988cc77ebSBob Pearson 
12002827b67SBob Pearson #define rxe_add_key_locked(obj, key) __rxe_add_key_locked(&(obj)->elem, key)
12188cc77ebSBob Pearson 
12202827b67SBob Pearson int __rxe_add_key(struct rxe_pool_elem *elem, void *key);
12391a42c5bSBob Pearson 
12402827b67SBob Pearson #define rxe_add_key(obj, key) __rxe_add_key(&(obj)->elem, key)
1258700e3e7SMoni Shoua 
12688cc77ebSBob Pearson /* remove elem from rb tree holding and not holding the pool_lock */
12702827b67SBob Pearson void __rxe_drop_key_locked(struct rxe_pool_elem *elem);
1283853c35eSBob Pearson 
12902827b67SBob Pearson #define rxe_drop_key_locked(obj) __rxe_drop_key_locked(&(obj)->elem)
1303853c35eSBob Pearson 
13102827b67SBob Pearson void __rxe_drop_key(struct rxe_pool_elem *elem);
13291a42c5bSBob Pearson 
13302827b67SBob Pearson #define rxe_drop_key(obj) __rxe_drop_key(&(obj)->elem)
1348700e3e7SMoni Shoua 
13588cc77ebSBob Pearson /* lookup an indexed object from index holding and not holding the pool_lock.
1363853c35eSBob Pearson  * takes a reference on object
1373853c35eSBob Pearson  */
13888cc77ebSBob Pearson void *rxe_pool_get_index_locked(struct rxe_pool *pool, u32 index);
13988cc77ebSBob Pearson 
1408700e3e7SMoni Shoua void *rxe_pool_get_index(struct rxe_pool *pool, u32 index);
1418700e3e7SMoni Shoua 
14288cc77ebSBob Pearson /* lookup keyed object from key holding and not holding the pool_lock.
1433853c35eSBob Pearson  * takes a reference on the objecti
1443853c35eSBob Pearson  */
14588cc77ebSBob Pearson void *rxe_pool_get_key_locked(struct rxe_pool *pool, void *key);
1468700e3e7SMoni Shoua 
14788cc77ebSBob Pearson void *rxe_pool_get_key(struct rxe_pool *pool, void *key);
1483853c35eSBob Pearson 
1498700e3e7SMoni Shoua /* cleanup an object when all references are dropped */
1508700e3e7SMoni Shoua void rxe_elem_release(struct kref *kref);
1518700e3e7SMoni Shoua 
1528700e3e7SMoni Shoua /* take a reference on an object */
15302827b67SBob Pearson #define rxe_add_ref(obj) kref_get(&(obj)->elem.ref_cnt)
1548700e3e7SMoni Shoua 
1558700e3e7SMoni Shoua /* drop a reference on an object */
15602827b67SBob Pearson #define rxe_drop_ref(obj) kref_put(&(obj)->elem.ref_cnt, rxe_elem_release)
1578700e3e7SMoni Shoua 
158*d5724055SBob Pearson #define rxe_read_ref(obj) kref_read(&(obj)->elem.ref_cnt)
159*d5724055SBob Pearson 
1608700e3e7SMoni Shoua #endif /* RXE_POOL_H */
161