Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Header file for reservations for dma-buf and ttm |
| 3 | * |
| 4 | * Copyright(C) 2011 Linaro Limited. All rights reserved. |
| 5 | * Copyright (C) 2012-2013 Canonical Ltd |
| 6 | * Copyright (C) 2012 Texas Instruments |
| 7 | * |
| 8 | * Authors: |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 9 | * Rob Clark <robdclark@gmail.com> |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 10 | * Maarten Lankhorst <maarten.lankhorst@canonical.com> |
| 11 | * Thomas Hellstrom <thellstrom-at-vmware-dot-com> |
| 12 | * |
| 13 | * Based on bo.c which bears the following copyright notice, |
| 14 | * but is dual licensed: |
| 15 | * |
| 16 | * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA |
| 17 | * All Rights Reserved. |
| 18 | * |
| 19 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 20 | * copy of this software and associated documentation files (the |
| 21 | * "Software"), to deal in the Software without restriction, including |
| 22 | * without limitation the rights to use, copy, modify, merge, publish, |
| 23 | * distribute, sub license, and/or sell copies of the Software, and to |
| 24 | * permit persons to whom the Software is furnished to do so, subject to |
| 25 | * the following conditions: |
| 26 | * |
| 27 | * The above copyright notice and this permission notice (including the |
| 28 | * next paragraph) shall be included in all copies or substantial portions |
| 29 | * of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 32 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 33 | * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL |
| 34 | * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, |
| 35 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 36 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
| 37 | * USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | #ifndef _LINUX_RESERVATION_H |
| 40 | #define _LINUX_RESERVATION_H |
| 41 | |
Maarten Lankhorst | 1b375dc | 2013-07-05 09:29:32 +0200 | [diff] [blame] | 42 | #include <linux/ww_mutex.h> |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 43 | #include <linux/dma-fence.h> |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 44 | #include <linux/slab.h> |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 45 | #include <linux/seqlock.h> |
| 46 | #include <linux/rcupdate.h> |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 47 | |
| 48 | extern struct ww_class reservation_ww_class; |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 49 | extern struct lock_class_key reservation_seqcount_class; |
| 50 | extern const char reservation_seqcount_string[]; |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 51 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 52 | /** |
| 53 | * struct reservation_object_list - a list of shared fences |
| 54 | * @rcu: for internal use |
| 55 | * @shared_count: table of shared fences |
| 56 | * @shared_max: for growing shared fence table |
| 57 | * @shared: shared fence table |
| 58 | */ |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 59 | struct reservation_object_list { |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 60 | struct rcu_head rcu; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 61 | u32 shared_count, shared_max; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 62 | struct dma_fence __rcu *shared[]; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 63 | }; |
| 64 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 65 | /** |
| 66 | * struct reservation_object - a reservation object manages fences for a buffer |
| 67 | * @lock: update side lock |
| 68 | * @seq: sequence count for managing RCU read-side synchronization |
| 69 | * @fence_excl: the exclusive fence, if there is one currently |
| 70 | * @fence: list of current shared fences |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 71 | */ |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 72 | struct reservation_object { |
| 73 | struct ww_mutex lock; |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 74 | seqcount_t seq; |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 75 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 76 | struct dma_fence __rcu *fence_excl; |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 77 | struct reservation_object_list __rcu *fence; |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 78 | }; |
| 79 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 80 | #define reservation_object_held(obj) lockdep_is_held(&(obj)->lock.base) |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 81 | #define reservation_object_assert_held(obj) \ |
| 82 | lockdep_assert_held(&(obj)->lock.base) |
| 83 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 84 | /** |
| 85 | * reservation_object_init - initialize a reservation object |
| 86 | * @obj: the reservation object |
| 87 | */ |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 88 | static inline void |
| 89 | reservation_object_init(struct reservation_object *obj) |
| 90 | { |
| 91 | ww_mutex_init(&obj->lock, &reservation_ww_class); |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 92 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 93 | __seqcount_init(&obj->seq, reservation_seqcount_string, &reservation_seqcount_class); |
| 94 | RCU_INIT_POINTER(obj->fence, NULL); |
| 95 | RCU_INIT_POINTER(obj->fence_excl, NULL); |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 96 | } |
| 97 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 98 | /** |
| 99 | * reservation_object_fini - destroys a reservation object |
| 100 | * @obj: the reservation object |
| 101 | */ |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 102 | static inline void |
| 103 | reservation_object_fini(struct reservation_object *obj) |
| 104 | { |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 105 | int i; |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 106 | struct reservation_object_list *fobj; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 107 | struct dma_fence *excl; |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 108 | |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 109 | /* |
| 110 | * This object should be dead and all references must have |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 111 | * been released to it, so no need to be protected with rcu. |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 112 | */ |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 113 | excl = rcu_dereference_protected(obj->fence_excl, 1); |
| 114 | if (excl) |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 115 | dma_fence_put(excl); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 116 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 117 | fobj = rcu_dereference_protected(obj->fence, 1); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 118 | if (fobj) { |
| 119 | for (i = 0; i < fobj->shared_count; ++i) |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 120 | dma_fence_put(rcu_dereference_protected(fobj->shared[i], 1)); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 121 | |
| 122 | kfree(fobj); |
| 123 | } |
Maarten Lankhorst | 0ba6b8f | 2014-07-01 12:57:37 +0200 | [diff] [blame] | 124 | |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 125 | ww_mutex_destroy(&obj->lock); |
| 126 | } |
| 127 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 128 | /** |
| 129 | * reservation_object_get_list - get the reservation object's |
| 130 | * shared fence list, with update-side lock held |
| 131 | * @obj: the reservation object |
| 132 | * |
| 133 | * Returns the shared fence list. Does NOT take references to |
| 134 | * the fence. The obj->lock must be held. |
| 135 | */ |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 136 | static inline struct reservation_object_list * |
| 137 | reservation_object_get_list(struct reservation_object *obj) |
| 138 | { |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 139 | return rcu_dereference_protected(obj->fence, |
| 140 | reservation_object_held(obj)); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 141 | } |
| 142 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 143 | /** |
Chris Wilson | 122020a | 2016-11-15 15:46:42 +0000 | [diff] [blame] | 144 | * reservation_object_lock - lock the reservation object |
| 145 | * @obj: the reservation object |
| 146 | * @ctx: the locking context |
| 147 | * |
| 148 | * Locks the reservation object for exclusive access and modification. Note, |
| 149 | * that the lock is only against other writers, readers will run concurrently |
| 150 | * with a writer under RCU. The seqlock is used to notify readers if they |
| 151 | * overlap with a writer. |
| 152 | * |
| 153 | * As the reservation object may be locked by multiple parties in an |
| 154 | * undefined order, a #ww_acquire_ctx is passed to unwind if a cycle |
| 155 | * is detected. See ww_mutex_lock() and ww_acquire_init(). A reservation |
| 156 | * object may be locked by itself by passing NULL as @ctx. |
| 157 | */ |
| 158 | static inline int |
| 159 | reservation_object_lock(struct reservation_object *obj, |
| 160 | struct ww_acquire_ctx *ctx) |
| 161 | { |
| 162 | return ww_mutex_lock(&obj->lock, ctx); |
| 163 | } |
| 164 | |
| 165 | /** |
Christian König | 5d276a1 | 2017-11-09 09:59:05 +0100 | [diff] [blame] | 166 | * reservation_object_lock_interruptible - lock the reservation object |
| 167 | * @obj: the reservation object |
| 168 | * @ctx: the locking context |
| 169 | * |
| 170 | * Locks the reservation object interruptible for exclusive access and |
| 171 | * modification. Note, that the lock is only against other writers, readers |
| 172 | * will run concurrently with a writer under RCU. The seqlock is used to |
| 173 | * notify readers if they overlap with a writer. |
| 174 | * |
| 175 | * As the reservation object may be locked by multiple parties in an |
| 176 | * undefined order, a #ww_acquire_ctx is passed to unwind if a cycle |
| 177 | * is detected. See ww_mutex_lock() and ww_acquire_init(). A reservation |
| 178 | * object may be locked by itself by passing NULL as @ctx. |
| 179 | */ |
| 180 | static inline int |
| 181 | reservation_object_lock_interruptible(struct reservation_object *obj, |
| 182 | struct ww_acquire_ctx *ctx) |
| 183 | { |
| 184 | return ww_mutex_lock_interruptible(&obj->lock, ctx); |
| 185 | } |
| 186 | |
| 187 | |
| 188 | /** |
Chris Wilson | 2955b73 | 2017-02-21 09:30:00 +0000 | [diff] [blame] | 189 | * reservation_object_trylock - trylock the reservation object |
| 190 | * @obj: the reservation object |
| 191 | * |
| 192 | * Tries to lock the reservation object for exclusive access and modification. |
| 193 | * Note, that the lock is only against other writers, readers will run |
| 194 | * concurrently with a writer under RCU. The seqlock is used to notify readers |
| 195 | * if they overlap with a writer. |
| 196 | * |
| 197 | * Also note that since no context is provided, no deadlock protection is |
| 198 | * possible. |
| 199 | * |
| 200 | * Returns true if the lock was acquired, false otherwise. |
| 201 | */ |
| 202 | static inline bool __must_check |
| 203 | reservation_object_trylock(struct reservation_object *obj) |
| 204 | { |
| 205 | return ww_mutex_trylock(&obj->lock); |
| 206 | } |
| 207 | |
| 208 | /** |
Chris Wilson | 122020a | 2016-11-15 15:46:42 +0000 | [diff] [blame] | 209 | * reservation_object_unlock - unlock the reservation object |
| 210 | * @obj: the reservation object |
| 211 | * |
| 212 | * Unlocks the reservation object following exclusive access. |
| 213 | */ |
| 214 | static inline void |
| 215 | reservation_object_unlock(struct reservation_object *obj) |
| 216 | { |
Christian König | 99fe21a | 2018-10-04 14:45:17 +0200 | [diff] [blame] | 217 | #ifdef CONFIG_DEBUG_MUTEXES |
| 218 | /* Test shared fence slot reservation */ |
Chris Wilson | 5740671e | 2019-06-12 14:28:30 +0100 | [diff] [blame] | 219 | if (rcu_access_pointer(obj->fence)) { |
| 220 | struct reservation_object_list *fence = |
| 221 | reservation_object_get_list(obj); |
| 222 | |
| 223 | fence->shared_max = fence->shared_count; |
| 224 | } |
Christian König | 99fe21a | 2018-10-04 14:45:17 +0200 | [diff] [blame] | 225 | #endif |
Chris Wilson | 122020a | 2016-11-15 15:46:42 +0000 | [diff] [blame] | 226 | ww_mutex_unlock(&obj->lock); |
| 227 | } |
| 228 | |
| 229 | /** |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 230 | * reservation_object_get_excl - get the reservation object's |
| 231 | * exclusive fence, with update-side lock held |
| 232 | * @obj: the reservation object |
| 233 | * |
| 234 | * Returns the exclusive fence (if any). Does NOT take a |
Lucas Stach | 372c932 | 2018-01-11 17:48:29 +0100 | [diff] [blame] | 235 | * reference. Writers must hold obj->lock, readers may only |
| 236 | * hold a RCU read side lock. |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 237 | * |
| 238 | * RETURNS |
| 239 | * The exclusive fence or NULL |
| 240 | */ |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 241 | static inline struct dma_fence * |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 242 | reservation_object_get_excl(struct reservation_object *obj) |
| 243 | { |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 244 | return rcu_dereference_protected(obj->fence_excl, |
| 245 | reservation_object_held(obj)); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 246 | } |
| 247 | |
Rob Clark | dad6c39 | 2016-03-31 16:26:51 -0400 | [diff] [blame] | 248 | /** |
| 249 | * reservation_object_get_excl_rcu - get the reservation object's |
| 250 | * exclusive fence, without lock held. |
| 251 | * @obj: the reservation object |
| 252 | * |
| 253 | * If there is an exclusive fence, this atomically increments it's |
| 254 | * reference count and returns it. |
| 255 | * |
| 256 | * RETURNS |
| 257 | * The exclusive fence or NULL if none |
| 258 | */ |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 259 | static inline struct dma_fence * |
Rob Clark | 824815c | 2016-03-31 16:23:51 -0400 | [diff] [blame] | 260 | reservation_object_get_excl_rcu(struct reservation_object *obj) |
| 261 | { |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 262 | struct dma_fence *fence; |
Chris Wilson | 6bfec6d | 2016-11-14 11:55:40 +0000 | [diff] [blame] | 263 | |
| 264 | if (!rcu_access_pointer(obj->fence_excl)) |
| 265 | return NULL; |
| 266 | |
Rob Clark | 824815c | 2016-03-31 16:23:51 -0400 | [diff] [blame] | 267 | rcu_read_lock(); |
Chris Wilson | 6bfec6d | 2016-11-14 11:55:40 +0000 | [diff] [blame] | 268 | fence = dma_fence_get_rcu_safe(&obj->fence_excl); |
Rob Clark | 824815c | 2016-03-31 16:23:51 -0400 | [diff] [blame] | 269 | rcu_read_unlock(); |
Chris Wilson | 6bfec6d | 2016-11-14 11:55:40 +0000 | [diff] [blame] | 270 | |
Rob Clark | 824815c | 2016-03-31 16:23:51 -0400 | [diff] [blame] | 271 | return fence; |
| 272 | } |
| 273 | |
Christian König | ca05359 | 2018-09-19 16:12:25 +0200 | [diff] [blame] | 274 | int reservation_object_reserve_shared(struct reservation_object *obj, |
| 275 | unsigned int num_fences); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 276 | void reservation_object_add_shared_fence(struct reservation_object *obj, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 277 | struct dma_fence *fence); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 278 | |
| 279 | void reservation_object_add_excl_fence(struct reservation_object *obj, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 280 | struct dma_fence *fence); |
Maarten Lankhorst | 04a5faa | 2014-07-01 12:57:54 +0200 | [diff] [blame] | 281 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 282 | int reservation_object_get_fences_rcu(struct reservation_object *obj, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 283 | struct dma_fence **pfence_excl, |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 284 | unsigned *pshared_count, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 285 | struct dma_fence ***pshared); |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 286 | |
Christian König | 7faf952 | 2017-08-10 13:01:48 -0400 | [diff] [blame] | 287 | int reservation_object_copy_fences(struct reservation_object *dst, |
| 288 | struct reservation_object *src); |
| 289 | |
Maarten Lankhorst | 3c3b177 | 2014-07-01 12:58:00 +0200 | [diff] [blame] | 290 | long reservation_object_wait_timeout_rcu(struct reservation_object *obj, |
| 291 | bool wait_all, bool intr, |
| 292 | unsigned long timeout); |
| 293 | |
| 294 | bool reservation_object_test_signaled_rcu(struct reservation_object *obj, |
| 295 | bool test_all); |
| 296 | |
Maarten Lankhorst | 786d725 | 2013-06-27 13:48:16 +0200 | [diff] [blame] | 297 | #endif /* _LINUX_RESERVATION_H */ |