blob: 5fb4fd461908d5794232a67648d4d908c05b0557 [file] [log] [blame]
Maarten Lankhorst786d7252013-06-27 13:48:16 +02001/*
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +02002 * Copyright (C) 2012-2014 Canonical Ltd (Maarten Lankhorst)
Maarten Lankhorst786d7252013-06-27 13:48:16 +02003 *
4 * Based on bo.c which bears the following copyright notice,
5 * but is dual licensed:
6 *
7 * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA
8 * All Rights Reserved.
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a
11 * copy of this software and associated documentation files (the
12 * "Software"), to deal in the Software without restriction, including
13 * without limitation the rights to use, copy, modify, merge, publish,
14 * distribute, sub license, and/or sell copies of the Software, and to
15 * permit persons to whom the Software is furnished to do so, subject to
16 * the following conditions:
17 *
18 * The above copyright notice and this permission notice (including the
19 * next paragraph) shall be included in all copies or substantial portions
20 * of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
25 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
26 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
27 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
28 * USE OR OTHER DEALINGS IN THE SOFTWARE.
29 *
30 **************************************************************************/
31/*
32 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
33 */
34
35#include <linux/reservation.h>
36#include <linux/export.h>
37
Rob Clarkdad6c392016-03-31 16:26:51 -040038/**
39 * DOC: Reservation Object Overview
40 *
41 * The reservation object provides a mechanism to manage shared and
42 * exclusive fences associated with a buffer. A reservation object
43 * can have attached one exclusive fence (normally associated with
44 * write operations) or N shared fences (read operations). The RCU
45 * mechanism is used to protect read access to fences from locked
46 * write-side updates.
47 */
48
Thomas Hellstrom08295b32018-06-15 10:17:38 +020049DEFINE_WD_CLASS(reservation_ww_class);
Maarten Lankhorst786d7252013-06-27 13:48:16 +020050EXPORT_SYMBOL(reservation_ww_class);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020051
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +020052struct lock_class_key reservation_seqcount_class;
53EXPORT_SYMBOL(reservation_seqcount_class);
54
55const char reservation_seqcount_string[] = "reservation_seqcount";
56EXPORT_SYMBOL(reservation_seqcount_string);
Rob Clarkdad6c392016-03-31 16:26:51 -040057
58/**
Christian Königca053592018-09-19 16:12:25 +020059 * reservation_object_reserve_shared - Reserve space to add shared fences to
60 * a reservation_object.
Rob Clarkdad6c392016-03-31 16:26:51 -040061 * @obj: reservation object
Christian Königca053592018-09-19 16:12:25 +020062 * @num_fences: number of fences we want to add
Rob Clarkdad6c392016-03-31 16:26:51 -040063 *
64 * Should be called before reservation_object_add_shared_fence(). Must
65 * be called with obj->lock held.
66 *
67 * RETURNS
68 * Zero for success, or -errno
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020069 */
Christian Königca053592018-09-19 16:12:25 +020070int reservation_object_reserve_shared(struct reservation_object *obj,
71 unsigned int num_fences)
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020072{
Christian König27836b62018-08-08 16:01:22 +020073 struct reservation_object_list *old, *new;
74 unsigned int i, j, k, max;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020075
76 old = reservation_object_get_list(obj);
77
78 if (old && old->shared_max) {
Christian Königca053592018-09-19 16:12:25 +020079 if ((old->shared_count + num_fences) <= old->shared_max)
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020080 return 0;
Christian König27836b62018-08-08 16:01:22 +020081 else
Christian Königca053592018-09-19 16:12:25 +020082 max = max(old->shared_count + num_fences,
83 old->shared_max * 2);
Christian Königca25fe52017-11-14 15:24:36 +010084 } else {
Christian König27836b62018-08-08 16:01:22 +020085 max = 4;
Christian Königca25fe52017-11-14 15:24:36 +010086 }
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +020087
Christian König27836b62018-08-08 16:01:22 +020088 new = kmalloc(offsetof(typeof(*new), shared[max]), GFP_KERNEL);
89 if (!new)
90 return -ENOMEM;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020091
92 /*
93 * no need to bump fence refcounts, rcu_read access
94 * requires the use of kref_get_unless_zero, and the
95 * references from the old struct are carried over to
96 * the new.
97 */
Christian König27836b62018-08-08 16:01:22 +020098 for (i = 0, j = 0, k = max; i < (old ? old->shared_count : 0); ++i) {
99 struct dma_fence *fence;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200100
Christian König27836b62018-08-08 16:01:22 +0200101 fence = rcu_dereference_protected(old->shared[i],
102 reservation_object_held(obj));
103 if (dma_fence_is_signaled(fence))
104 RCU_INIT_POINTER(new->shared[--k], fence);
Christian König4d9c62e2017-11-14 15:24:35 +0100105 else
Christian König27836b62018-08-08 16:01:22 +0200106 RCU_INIT_POINTER(new->shared[j++], fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200107 }
Christian König27836b62018-08-08 16:01:22 +0200108 new->shared_count = j;
109 new->shared_max = max;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200110
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200111 preempt_disable();
112 write_seqcount_begin(&obj->seq);
113 /*
114 * RCU_INIT_POINTER can be used here,
115 * seqcount provides the necessary barriers
116 */
Christian König27836b62018-08-08 16:01:22 +0200117 RCU_INIT_POINTER(obj->fence, new);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200118 write_seqcount_end(&obj->seq);
119 preempt_enable();
120
Christian König4d9c62e2017-11-14 15:24:35 +0100121 if (!old)
Christian König27836b62018-08-08 16:01:22 +0200122 return 0;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200123
Christian König4d9c62e2017-11-14 15:24:35 +0100124 /* Drop the references to the signaled fences */
Christian König27836b62018-08-08 16:01:22 +0200125 for (i = k; i < new->shared_max; ++i) {
126 struct dma_fence *fence;
Christian König4d9c62e2017-11-14 15:24:35 +0100127
Christian König27836b62018-08-08 16:01:22 +0200128 fence = rcu_dereference_protected(new->shared[i],
129 reservation_object_held(obj));
130 dma_fence_put(fence);
Christian König4d9c62e2017-11-14 15:24:35 +0100131 }
132 kfree_rcu(old, rcu);
Christian König27836b62018-08-08 16:01:22 +0200133
134 return 0;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200135}
Christian König27836b62018-08-08 16:01:22 +0200136EXPORT_SYMBOL(reservation_object_reserve_shared);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200137
Rob Clarkdad6c392016-03-31 16:26:51 -0400138/**
139 * reservation_object_add_shared_fence - Add a fence to a shared slot
140 * @obj: the reservation object
141 * @fence: the shared fence to add
142 *
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200143 * Add a fence to a shared slot, obj->lock must be held, and
Rob Clarkf5bef0b2016-08-19 16:55:34 -0400144 * reservation_object_reserve_shared() has been called.
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200145 */
146void reservation_object_add_shared_fence(struct reservation_object *obj,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100147 struct dma_fence *fence)
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200148{
Christian König27836b62018-08-08 16:01:22 +0200149 struct reservation_object_list *fobj;
150 unsigned int i;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200151
Christian König27836b62018-08-08 16:01:22 +0200152 dma_fence_get(fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200153
Christian König27836b62018-08-08 16:01:22 +0200154 fobj = reservation_object_get_list(obj);
155
156 preempt_disable();
157 write_seqcount_begin(&obj->seq);
158
159 for (i = 0; i < fobj->shared_count; ++i) {
160 struct dma_fence *old_fence;
161
162 old_fence = rcu_dereference_protected(fobj->shared[i],
163 reservation_object_held(obj));
164 if (old_fence->context == fence->context ||
165 dma_fence_is_signaled(old_fence)) {
166 dma_fence_put(old_fence);
167 goto replace;
168 }
169 }
170
171 BUG_ON(fobj->shared_count >= fobj->shared_max);
172 fobj->shared_count++;
173
174replace:
175 /*
176 * memory barrier is added by write_seqcount_begin,
177 * fobj->shared_count is protected by this lock too
178 */
179 RCU_INIT_POINTER(fobj->shared[i], fence);
180 write_seqcount_end(&obj->seq);
181 preempt_enable();
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200182}
183EXPORT_SYMBOL(reservation_object_add_shared_fence);
184
Rob Clarkdad6c392016-03-31 16:26:51 -0400185/**
186 * reservation_object_add_excl_fence - Add an exclusive fence.
187 * @obj: the reservation object
188 * @fence: the shared fence to add
189 *
190 * Add a fence to the exclusive slot. The obj->lock must be held.
191 */
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200192void reservation_object_add_excl_fence(struct reservation_object *obj,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100193 struct dma_fence *fence)
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200194{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100195 struct dma_fence *old_fence = reservation_object_get_excl(obj);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200196 struct reservation_object_list *old;
197 u32 i = 0;
198
199 old = reservation_object_get_list(obj);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200200 if (old)
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200201 i = old->shared_count;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200202
203 if (fence)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100204 dma_fence_get(fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200205
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200206 preempt_disable();
207 write_seqcount_begin(&obj->seq);
208 /* write_seqcount_begin provides the necessary memory barrier */
209 RCU_INIT_POINTER(obj->fence_excl, fence);
210 if (old)
211 old->shared_count = 0;
212 write_seqcount_end(&obj->seq);
213 preempt_enable();
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200214
215 /* inplace update, no shared fences */
216 while (i--)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100217 dma_fence_put(rcu_dereference_protected(old->shared[i],
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200218 reservation_object_held(obj)));
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200219
Christian Königf3e31b72017-08-07 17:32:21 -0400220 dma_fence_put(old_fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200221}
222EXPORT_SYMBOL(reservation_object_add_excl_fence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200223
Rob Clarkdad6c392016-03-31 16:26:51 -0400224/**
Christian König7faf9522017-08-10 13:01:48 -0400225* reservation_object_copy_fences - Copy all fences from src to dst.
226* @dst: the destination reservation object
227* @src: the source reservation object
228*
Christian König39e16ba2017-09-04 21:02:45 +0200229* Copy all fences from src to dst. dst-lock must be held.
Christian König7faf9522017-08-10 13:01:48 -0400230*/
231int reservation_object_copy_fences(struct reservation_object *dst,
232 struct reservation_object *src)
233{
234 struct reservation_object_list *src_list, *dst_list;
235 struct dma_fence *old, *new;
236 size_t size;
237 unsigned i;
238
Christian König39e16ba2017-09-04 21:02:45 +0200239 rcu_read_lock();
240 src_list = rcu_dereference(src->fence);
Christian König7faf9522017-08-10 13:01:48 -0400241
Christian König39e16ba2017-09-04 21:02:45 +0200242retry:
Christian König7faf9522017-08-10 13:01:48 -0400243 if (src_list) {
Christian König39e16ba2017-09-04 21:02:45 +0200244 unsigned shared_count = src_list->shared_count;
245
246 size = offsetof(typeof(*src_list), shared[shared_count]);
247 rcu_read_unlock();
248
Christian König7faf9522017-08-10 13:01:48 -0400249 dst_list = kmalloc(size, GFP_KERNEL);
250 if (!dst_list)
251 return -ENOMEM;
252
Christian König39e16ba2017-09-04 21:02:45 +0200253 rcu_read_lock();
254 src_list = rcu_dereference(src->fence);
255 if (!src_list || src_list->shared_count > shared_count) {
256 kfree(dst_list);
257 goto retry;
258 }
259
260 dst_list->shared_count = 0;
261 dst_list->shared_max = shared_count;
262 for (i = 0; i < src_list->shared_count; ++i) {
263 struct dma_fence *fence;
264
265 fence = rcu_dereference(src_list->shared[i]);
266 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT,
267 &fence->flags))
268 continue;
269
270 if (!dma_fence_get_rcu(fence)) {
271 kfree(dst_list);
272 src_list = rcu_dereference(src->fence);
273 goto retry;
274 }
275
276 if (dma_fence_is_signaled(fence)) {
277 dma_fence_put(fence);
278 continue;
279 }
280
Ville Syrjäläad46d7b2017-11-02 22:03:36 +0200281 rcu_assign_pointer(dst_list->shared[dst_list->shared_count++], fence);
Christian König39e16ba2017-09-04 21:02:45 +0200282 }
Christian König7faf9522017-08-10 13:01:48 -0400283 } else {
284 dst_list = NULL;
285 }
286
Christian König39e16ba2017-09-04 21:02:45 +0200287 new = dma_fence_get_rcu_safe(&src->fence_excl);
288 rcu_read_unlock();
289
Christian König7faf9522017-08-10 13:01:48 -0400290 src_list = reservation_object_get_list(dst);
Christian König7faf9522017-08-10 13:01:48 -0400291 old = reservation_object_get_excl(dst);
Christian König7faf9522017-08-10 13:01:48 -0400292
293 preempt_disable();
294 write_seqcount_begin(&dst->seq);
295 /* write_seqcount_begin provides the necessary memory barrier */
296 RCU_INIT_POINTER(dst->fence_excl, new);
297 RCU_INIT_POINTER(dst->fence, dst_list);
298 write_seqcount_end(&dst->seq);
299 preempt_enable();
300
301 if (src_list)
302 kfree_rcu(src_list, rcu);
303 dma_fence_put(old);
304
305 return 0;
306}
307EXPORT_SYMBOL(reservation_object_copy_fences);
308
309/**
Rob Clarkdad6c392016-03-31 16:26:51 -0400310 * reservation_object_get_fences_rcu - Get an object's shared and exclusive
311 * fences without update side lock held
312 * @obj: the reservation object
313 * @pfence_excl: the returned exclusive fence (or NULL)
314 * @pshared_count: the number of shared fences returned
315 * @pshared: the array of shared fence ptrs returned (array is krealloc'd to
316 * the required size, and must be freed by caller)
317 *
Christian Königa35f2f32018-01-10 13:53:41 +0100318 * Retrieve all fences from the reservation object. If the pointer for the
319 * exclusive fence is not specified the fence is put into the array of the
320 * shared fences as well. Returns either zero or -ENOMEM.
Rob Clarkdad6c392016-03-31 16:26:51 -0400321 */
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200322int reservation_object_get_fences_rcu(struct reservation_object *obj,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100323 struct dma_fence **pfence_excl,
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200324 unsigned *pshared_count,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100325 struct dma_fence ***pshared)
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200326{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100327 struct dma_fence **shared = NULL;
328 struct dma_fence *fence_excl;
Chris Wilsonfedf5412016-08-29 08:08:30 +0100329 unsigned int shared_count;
330 int ret = 1;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200331
Chris Wilsonfedf5412016-08-29 08:08:30 +0100332 do {
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200333 struct reservation_object_list *fobj;
Christian Königa35f2f32018-01-10 13:53:41 +0100334 unsigned int i, seq;
335 size_t sz = 0;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200336
Chris Wilsonfedf5412016-08-29 08:08:30 +0100337 shared_count = i = 0;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200338
339 rcu_read_lock();
Chris Wilsonfedf5412016-08-29 08:08:30 +0100340 seq = read_seqcount_begin(&obj->seq);
341
342 fence_excl = rcu_dereference(obj->fence_excl);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100343 if (fence_excl && !dma_fence_get_rcu(fence_excl))
Chris Wilsonfedf5412016-08-29 08:08:30 +0100344 goto unlock;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200345
346 fobj = rcu_dereference(obj->fence);
Christian Königa35f2f32018-01-10 13:53:41 +0100347 if (fobj)
348 sz += sizeof(*shared) * fobj->shared_max;
349
350 if (!pfence_excl && fence_excl)
351 sz += sizeof(*shared);
352
353 if (sz) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100354 struct dma_fence **nshared;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200355
356 nshared = krealloc(shared, sz,
357 GFP_NOWAIT | __GFP_NOWARN);
358 if (!nshared) {
359 rcu_read_unlock();
360 nshared = krealloc(shared, sz, GFP_KERNEL);
361 if (nshared) {
362 shared = nshared;
363 continue;
364 }
365
366 ret = -ENOMEM;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200367 break;
368 }
369 shared = nshared;
Christian Königa35f2f32018-01-10 13:53:41 +0100370 shared_count = fobj ? fobj->shared_count : 0;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200371 for (i = 0; i < shared_count; ++i) {
Chris Wilsonfedf5412016-08-29 08:08:30 +0100372 shared[i] = rcu_dereference(fobj->shared[i]);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100373 if (!dma_fence_get_rcu(shared[i]))
Chris Wilsonfedf5412016-08-29 08:08:30 +0100374 break;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200375 }
Christian Königa35f2f32018-01-10 13:53:41 +0100376
377 if (!pfence_excl && fence_excl) {
378 shared[i] = fence_excl;
379 fence_excl = NULL;
380 ++i;
381 ++shared_count;
382 }
Chris Wilsonfedf5412016-08-29 08:08:30 +0100383 }
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200384
Chris Wilsonfedf5412016-08-29 08:08:30 +0100385 if (i != shared_count || read_seqcount_retry(&obj->seq, seq)) {
386 while (i--)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100387 dma_fence_put(shared[i]);
388 dma_fence_put(fence_excl);
Chris Wilsonfedf5412016-08-29 08:08:30 +0100389 goto unlock;
390 }
391
392 ret = 0;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200393unlock:
394 rcu_read_unlock();
Chris Wilsonfedf5412016-08-29 08:08:30 +0100395 } while (ret);
396
397 if (!shared_count) {
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200398 kfree(shared);
Chris Wilsonfedf5412016-08-29 08:08:30 +0100399 shared = NULL;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200400 }
Chris Wilsonfedf5412016-08-29 08:08:30 +0100401
402 *pshared_count = shared_count;
403 *pshared = shared;
Christian Königa35f2f32018-01-10 13:53:41 +0100404 if (pfence_excl)
405 *pfence_excl = fence_excl;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200406
407 return ret;
408}
409EXPORT_SYMBOL_GPL(reservation_object_get_fences_rcu);
410
Rob Clarkdad6c392016-03-31 16:26:51 -0400411/**
412 * reservation_object_wait_timeout_rcu - Wait on reservation's objects
413 * shared and/or exclusive fences.
414 * @obj: the reservation object
415 * @wait_all: if true, wait on all fences, else wait on just exclusive fence
416 * @intr: if true, do interruptible wait
417 * @timeout: timeout value in jiffies or zero to return immediately
418 *
419 * RETURNS
420 * Returns -ERESTARTSYS if interrupted, 0 if the wait timed out, or
421 * greater than zer on success.
422 */
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200423long reservation_object_wait_timeout_rcu(struct reservation_object *obj,
424 bool wait_all, bool intr,
425 unsigned long timeout)
426{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100427 struct dma_fence *fence;
Christian König5bffee82018-01-22 21:00:03 +0100428 unsigned seq, shared_count;
Christian König06a66b52016-11-07 16:16:16 -0500429 long ret = timeout ? timeout : 1;
Christian König5bffee82018-01-22 21:00:03 +0100430 int i;
Jammy Zhoufb8b7d22015-01-21 18:35:47 +0800431
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200432retry:
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200433 shared_count = 0;
434 seq = read_seqcount_begin(&obj->seq);
435 rcu_read_lock();
Christian König5bffee82018-01-22 21:00:03 +0100436 i = -1;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200437
Christian Königb88fa002017-08-10 13:01:49 -0400438 fence = rcu_dereference(obj->fence_excl);
439 if (fence && !test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags)) {
440 if (!dma_fence_get_rcu(fence))
441 goto unlock_retry;
442
443 if (dma_fence_is_signaled(fence)) {
444 dma_fence_put(fence);
445 fence = NULL;
446 }
447
448 } else {
449 fence = NULL;
450 }
451
Christian König5bffee82018-01-22 21:00:03 +0100452 if (wait_all) {
Jagan Teki51366292015-05-21 01:09:31 +0530453 struct reservation_object_list *fobj =
454 rcu_dereference(obj->fence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200455
456 if (fobj)
457 shared_count = fobj->shared_count;
458
Christian König5bffee82018-01-22 21:00:03 +0100459 for (i = 0; !fence && i < shared_count; ++i) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100460 struct dma_fence *lfence = rcu_dereference(fobj->shared[i]);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200461
Chris Wilsonf54d1862016-10-25 13:00:45 +0100462 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT,
463 &lfence->flags))
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200464 continue;
465
Chris Wilsonf54d1862016-10-25 13:00:45 +0100466 if (!dma_fence_get_rcu(lfence))
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200467 goto unlock_retry;
468
Chris Wilsonf54d1862016-10-25 13:00:45 +0100469 if (dma_fence_is_signaled(lfence)) {
470 dma_fence_put(lfence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200471 continue;
472 }
473
474 fence = lfence;
475 break;
476 }
477 }
478
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200479 rcu_read_unlock();
480 if (fence) {
Chris Wilson1cec20f2016-08-29 08:08:31 +0100481 if (read_seqcount_retry(&obj->seq, seq)) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100482 dma_fence_put(fence);
Chris Wilson1cec20f2016-08-29 08:08:31 +0100483 goto retry;
484 }
485
Chris Wilsonf54d1862016-10-25 13:00:45 +0100486 ret = dma_fence_wait_timeout(fence, intr, ret);
487 dma_fence_put(fence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200488 if (ret > 0 && wait_all && (i + 1 < shared_count))
489 goto retry;
490 }
491 return ret;
492
493unlock_retry:
494 rcu_read_unlock();
495 goto retry;
496}
497EXPORT_SYMBOL_GPL(reservation_object_wait_timeout_rcu);
498
499
500static inline int
Chris Wilsonf54d1862016-10-25 13:00:45 +0100501reservation_object_test_signaled_single(struct dma_fence *passed_fence)
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200502{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100503 struct dma_fence *fence, *lfence = passed_fence;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200504 int ret = 1;
505
Chris Wilsonf54d1862016-10-25 13:00:45 +0100506 if (!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &lfence->flags)) {
507 fence = dma_fence_get_rcu(lfence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200508 if (!fence)
509 return -1;
510
Chris Wilsonf54d1862016-10-25 13:00:45 +0100511 ret = !!dma_fence_is_signaled(fence);
512 dma_fence_put(fence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200513 }
514 return ret;
515}
516
Rob Clarkdad6c392016-03-31 16:26:51 -0400517/**
518 * reservation_object_test_signaled_rcu - Test if a reservation object's
519 * fences have been signaled.
520 * @obj: the reservation object
521 * @test_all: if true, test all fences, otherwise only test the exclusive
522 * fence
523 *
524 * RETURNS
525 * true if all fences signaled, else false
526 */
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200527bool reservation_object_test_signaled_rcu(struct reservation_object *obj,
528 bool test_all)
529{
530 unsigned seq, shared_count;
Chris Wilsonb68d8372016-08-29 08:08:32 +0100531 int ret;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200532
Chris Wilsonb68d8372016-08-29 08:08:32 +0100533 rcu_read_lock();
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200534retry:
Chris Wilsonb68d8372016-08-29 08:08:32 +0100535 ret = true;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200536 shared_count = 0;
537 seq = read_seqcount_begin(&obj->seq);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200538
539 if (test_all) {
540 unsigned i;
541
Jagan Teki51366292015-05-21 01:09:31 +0530542 struct reservation_object_list *fobj =
543 rcu_dereference(obj->fence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200544
545 if (fobj)
546 shared_count = fobj->shared_count;
547
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200548 for (i = 0; i < shared_count; ++i) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100549 struct dma_fence *fence = rcu_dereference(fobj->shared[i]);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200550
551 ret = reservation_object_test_signaled_single(fence);
552 if (ret < 0)
Chris Wilsonb68d8372016-08-29 08:08:32 +0100553 goto retry;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200554 else if (!ret)
555 break;
556 }
557
Chris Wilsonb68d8372016-08-29 08:08:32 +0100558 if (read_seqcount_retry(&obj->seq, seq))
559 goto retry;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200560 }
561
562 if (!shared_count) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100563 struct dma_fence *fence_excl = rcu_dereference(obj->fence_excl);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200564
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200565 if (fence_excl) {
Jagan Teki51366292015-05-21 01:09:31 +0530566 ret = reservation_object_test_signaled_single(
567 fence_excl);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200568 if (ret < 0)
Chris Wilsonb68d8372016-08-29 08:08:32 +0100569 goto retry;
570
571 if (read_seqcount_retry(&obj->seq, seq))
572 goto retry;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200573 }
574 }
575
576 rcu_read_unlock();
577 return ret;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200578}
579EXPORT_SYMBOL_GPL(reservation_object_test_signaled_rcu);