blob: 02166e815afb904c0396159c8c9d556c370f1e9d [file] [log] [blame]
Maarten Lankhorst786d7252013-06-27 13:48:16 +02001/*
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 Lankhorst0ba6b8f2014-07-01 12:57:37 +02009 * Rob Clark <robdclark@gmail.com>
Maarten Lankhorst786d7252013-06-27 13:48:16 +020010 * 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 Lankhorst1b375dc2013-07-05 09:29:32 +020042#include <linux/ww_mutex.h>
Chris Wilsonf54d1862016-10-25 13:00:45 +010043#include <linux/dma-fence.h>
Maarten Lankhorst0ba6b8f2014-07-01 12:57:37 +020044#include <linux/slab.h>
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +020045#include <linux/seqlock.h>
46#include <linux/rcupdate.h>
Maarten Lankhorst786d7252013-06-27 13:48:16 +020047
48extern struct ww_class reservation_ww_class;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +020049extern struct lock_class_key reservation_seqcount_class;
50extern const char reservation_seqcount_string[];
Maarten Lankhorst786d7252013-06-27 13:48:16 +020051
Rob Clarkdad6c392016-03-31 16:26:51 -040052/**
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 Lankhorst04a5faa2014-07-01 12:57:54 +020059struct reservation_object_list {
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +020060 struct rcu_head rcu;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020061 u32 shared_count, shared_max;
Chris Wilsonf54d1862016-10-25 13:00:45 +010062 struct dma_fence __rcu *shared[];
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020063};
64
Rob Clarkdad6c392016-03-31 16:26:51 -040065/**
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
71 * @staged: staged copy of shared fences for RCU updates
72 */
Maarten Lankhorst786d7252013-06-27 13:48:16 +020073struct reservation_object {
74 struct ww_mutex lock;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +020075 seqcount_t seq;
Maarten Lankhorst0ba6b8f2014-07-01 12:57:37 +020076
Chris Wilsonf54d1862016-10-25 13:00:45 +010077 struct dma_fence __rcu *fence_excl;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +020078 struct reservation_object_list __rcu *fence;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020079 struct reservation_object_list *staged;
Maarten Lankhorst786d7252013-06-27 13:48:16 +020080};
81
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +020082#define reservation_object_held(obj) lockdep_is_held(&(obj)->lock.base)
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020083#define reservation_object_assert_held(obj) \
84 lockdep_assert_held(&(obj)->lock.base)
85
Rob Clarkdad6c392016-03-31 16:26:51 -040086/**
87 * reservation_object_init - initialize a reservation object
88 * @obj: the reservation object
89 */
Maarten Lankhorst786d7252013-06-27 13:48:16 +020090static inline void
91reservation_object_init(struct reservation_object *obj)
92{
93 ww_mutex_init(&obj->lock, &reservation_ww_class);
Maarten Lankhorst0ba6b8f2014-07-01 12:57:37 +020094
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +020095 __seqcount_init(&obj->seq, reservation_seqcount_string, &reservation_seqcount_class);
96 RCU_INIT_POINTER(obj->fence, NULL);
97 RCU_INIT_POINTER(obj->fence_excl, NULL);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020098 obj->staged = NULL;
Maarten Lankhorst786d7252013-06-27 13:48:16 +020099}
100
Rob Clarkdad6c392016-03-31 16:26:51 -0400101/**
102 * reservation_object_fini - destroys a reservation object
103 * @obj: the reservation object
104 */
Maarten Lankhorst786d7252013-06-27 13:48:16 +0200105static inline void
106reservation_object_fini(struct reservation_object *obj)
107{
Maarten Lankhorst0ba6b8f2014-07-01 12:57:37 +0200108 int i;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200109 struct reservation_object_list *fobj;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100110 struct dma_fence *excl;
Maarten Lankhorst0ba6b8f2014-07-01 12:57:37 +0200111
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200112 /*
113 * This object should be dead and all references must have
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200114 * been released to it, so no need to be protected with rcu.
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200115 */
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200116 excl = rcu_dereference_protected(obj->fence_excl, 1);
117 if (excl)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100118 dma_fence_put(excl);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200119
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200120 fobj = rcu_dereference_protected(obj->fence, 1);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200121 if (fobj) {
122 for (i = 0; i < fobj->shared_count; ++i)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100123 dma_fence_put(rcu_dereference_protected(fobj->shared[i], 1));
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200124
125 kfree(fobj);
126 }
127 kfree(obj->staged);
Maarten Lankhorst0ba6b8f2014-07-01 12:57:37 +0200128
Maarten Lankhorst786d7252013-06-27 13:48:16 +0200129 ww_mutex_destroy(&obj->lock);
130}
131
Rob Clarkdad6c392016-03-31 16:26:51 -0400132/**
133 * reservation_object_get_list - get the reservation object's
134 * shared fence list, with update-side lock held
135 * @obj: the reservation object
136 *
137 * Returns the shared fence list. Does NOT take references to
138 * the fence. The obj->lock must be held.
139 */
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200140static inline struct reservation_object_list *
141reservation_object_get_list(struct reservation_object *obj)
142{
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200143 return rcu_dereference_protected(obj->fence,
144 reservation_object_held(obj));
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200145}
146
Rob Clarkdad6c392016-03-31 16:26:51 -0400147/**
Chris Wilson122020a2016-11-15 15:46:42 +0000148 * reservation_object_lock - lock the reservation object
149 * @obj: the reservation object
150 * @ctx: the locking context
151 *
152 * Locks the reservation object for exclusive access and modification. Note,
153 * that the lock is only against other writers, readers will run concurrently
154 * with a writer under RCU. The seqlock is used to notify readers if they
155 * overlap with a writer.
156 *
157 * As the reservation object may be locked by multiple parties in an
158 * undefined order, a #ww_acquire_ctx is passed to unwind if a cycle
159 * is detected. See ww_mutex_lock() and ww_acquire_init(). A reservation
160 * object may be locked by itself by passing NULL as @ctx.
161 */
162static inline int
163reservation_object_lock(struct reservation_object *obj,
164 struct ww_acquire_ctx *ctx)
165{
166 return ww_mutex_lock(&obj->lock, ctx);
167}
168
169/**
Christian König5d276a12017-11-09 09:59:05 +0100170 * reservation_object_lock_interruptible - lock the reservation object
171 * @obj: the reservation object
172 * @ctx: the locking context
173 *
174 * Locks the reservation object interruptible for exclusive access and
175 * modification. Note, that the lock is only against other writers, readers
176 * will run concurrently with a writer under RCU. The seqlock is used to
177 * notify readers if they overlap with a writer.
178 *
179 * As the reservation object may be locked by multiple parties in an
180 * undefined order, a #ww_acquire_ctx is passed to unwind if a cycle
181 * is detected. See ww_mutex_lock() and ww_acquire_init(). A reservation
182 * object may be locked by itself by passing NULL as @ctx.
183 */
184static inline int
185reservation_object_lock_interruptible(struct reservation_object *obj,
186 struct ww_acquire_ctx *ctx)
187{
188 return ww_mutex_lock_interruptible(&obj->lock, ctx);
189}
190
191
192/**
Chris Wilson2955b732017-02-21 09:30:00 +0000193 * reservation_object_trylock - trylock the reservation object
194 * @obj: the reservation object
195 *
196 * Tries to lock the reservation object for exclusive access and modification.
197 * Note, that the lock is only against other writers, readers will run
198 * concurrently with a writer under RCU. The seqlock is used to notify readers
199 * if they overlap with a writer.
200 *
201 * Also note that since no context is provided, no deadlock protection is
202 * possible.
203 *
204 * Returns true if the lock was acquired, false otherwise.
205 */
206static inline bool __must_check
207reservation_object_trylock(struct reservation_object *obj)
208{
209 return ww_mutex_trylock(&obj->lock);
210}
211
212/**
Chris Wilson122020a2016-11-15 15:46:42 +0000213 * reservation_object_unlock - unlock the reservation object
214 * @obj: the reservation object
215 *
216 * Unlocks the reservation object following exclusive access.
217 */
218static inline void
219reservation_object_unlock(struct reservation_object *obj)
220{
221 ww_mutex_unlock(&obj->lock);
222}
223
224/**
Rob Clarkdad6c392016-03-31 16:26:51 -0400225 * reservation_object_get_excl - get the reservation object's
226 * exclusive fence, with update-side lock held
227 * @obj: the reservation object
228 *
229 * Returns the exclusive fence (if any). Does NOT take a
230 * reference. The obj->lock must be held.
231 *
232 * RETURNS
233 * The exclusive fence or NULL
234 */
Chris Wilsonf54d1862016-10-25 13:00:45 +0100235static inline struct dma_fence *
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200236reservation_object_get_excl(struct reservation_object *obj)
237{
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200238 return rcu_dereference_protected(obj->fence_excl,
239 reservation_object_held(obj));
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200240}
241
Rob Clarkdad6c392016-03-31 16:26:51 -0400242/**
243 * reservation_object_get_excl_rcu - get the reservation object's
244 * exclusive fence, without lock held.
245 * @obj: the reservation object
246 *
247 * If there is an exclusive fence, this atomically increments it's
248 * reference count and returns it.
249 *
250 * RETURNS
251 * The exclusive fence or NULL if none
252 */
Chris Wilsonf54d1862016-10-25 13:00:45 +0100253static inline struct dma_fence *
Rob Clark824815c2016-03-31 16:23:51 -0400254reservation_object_get_excl_rcu(struct reservation_object *obj)
255{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100256 struct dma_fence *fence;
Chris Wilson6bfec6d2016-11-14 11:55:40 +0000257
258 if (!rcu_access_pointer(obj->fence_excl))
259 return NULL;
260
Rob Clark824815c2016-03-31 16:23:51 -0400261 rcu_read_lock();
Chris Wilson6bfec6d2016-11-14 11:55:40 +0000262 fence = dma_fence_get_rcu_safe(&obj->fence_excl);
Rob Clark824815c2016-03-31 16:23:51 -0400263 rcu_read_unlock();
Chris Wilson6bfec6d2016-11-14 11:55:40 +0000264
Rob Clark824815c2016-03-31 16:23:51 -0400265 return fence;
266}
267
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200268int reservation_object_reserve_shared(struct reservation_object *obj);
269void reservation_object_add_shared_fence(struct reservation_object *obj,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100270 struct dma_fence *fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200271
272void reservation_object_add_excl_fence(struct reservation_object *obj,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100273 struct dma_fence *fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200274
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200275int reservation_object_get_fences_rcu(struct reservation_object *obj,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100276 struct dma_fence **pfence_excl,
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200277 unsigned *pshared_count,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100278 struct dma_fence ***pshared);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200279
Christian König7faf9522017-08-10 13:01:48 -0400280int reservation_object_copy_fences(struct reservation_object *dst,
281 struct reservation_object *src);
282
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200283long reservation_object_wait_timeout_rcu(struct reservation_object *obj,
284 bool wait_all, bool intr,
285 unsigned long timeout);
286
287bool reservation_object_test_signaled_rcu(struct reservation_object *obj,
288 bool test_all);
289
Maarten Lankhorst786d7252013-06-27 13:48:16 +0200290#endif /* _LINUX_RESERVATION_H */