blob: 393817e849ed2a662e8696867bb1297dad9c5397 [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
Maarten Lankhorst786d7252013-06-27 13:48:16 +020049DEFINE_WW_CLASS(reservation_ww_class);
50EXPORT_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/**
59 * reservation_object_reserve_shared - Reserve space to add a shared
60 * fence to a reservation_object.
61 * @obj: reservation object
62 *
63 * Should be called before reservation_object_add_shared_fence(). Must
64 * be called with obj->lock held.
65 *
66 * RETURNS
67 * Zero for success, or -errno
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +020068 */
69int reservation_object_reserve_shared(struct reservation_object *obj)
70{
71 struct reservation_object_list *fobj, *old;
72 u32 max;
73
74 old = reservation_object_get_list(obj);
75
76 if (old && old->shared_max) {
77 if (old->shared_count < old->shared_max) {
78 /* perform an in-place update */
79 kfree(obj->staged);
80 obj->staged = NULL;
81 return 0;
82 } else
83 max = old->shared_max * 2;
84 } else
85 max = 4;
86
87 /*
88 * resize obj->staged or allocate if it doesn't exist,
89 * noop if already correct size
90 */
91 fobj = krealloc(obj->staged, offsetof(typeof(*fobj), shared[max]),
92 GFP_KERNEL);
93 if (!fobj)
94 return -ENOMEM;
95
96 obj->staged = fobj;
97 fobj->shared_max = max;
98 return 0;
99}
100EXPORT_SYMBOL(reservation_object_reserve_shared);
101
102static void
103reservation_object_add_shared_inplace(struct reservation_object *obj,
104 struct reservation_object_list *fobj,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100105 struct dma_fence *fence)
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200106{
107 u32 i;
108
Chris Wilsonf54d1862016-10-25 13:00:45 +0100109 dma_fence_get(fence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200110
111 preempt_disable();
112 write_seqcount_begin(&obj->seq);
113
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200114 for (i = 0; i < fobj->shared_count; ++i) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100115 struct dma_fence *old_fence;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200116
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200117 old_fence = rcu_dereference_protected(fobj->shared[i],
118 reservation_object_held(obj));
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200119
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200120 if (old_fence->context == fence->context) {
121 /* memory barrier is added by write_seqcount_begin */
122 RCU_INIT_POINTER(fobj->shared[i], fence);
123 write_seqcount_end(&obj->seq);
124 preempt_enable();
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200125
Chris Wilsonf54d1862016-10-25 13:00:45 +0100126 dma_fence_put(old_fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200127 return;
128 }
129 }
130
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200131 /*
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200132 * memory barrier is added by write_seqcount_begin,
133 * fobj->shared_count is protected by this lock too
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200134 */
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200135 RCU_INIT_POINTER(fobj->shared[fobj->shared_count], fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200136 fobj->shared_count++;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200137
138 write_seqcount_end(&obj->seq);
139 preempt_enable();
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200140}
141
142static void
143reservation_object_add_shared_replace(struct reservation_object *obj,
144 struct reservation_object_list *old,
145 struct reservation_object_list *fobj,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100146 struct dma_fence *fence)
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200147{
148 unsigned i;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100149 struct dma_fence *old_fence = NULL;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200150
Chris Wilsonf54d1862016-10-25 13:00:45 +0100151 dma_fence_get(fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200152
153 if (!old) {
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200154 RCU_INIT_POINTER(fobj->shared[0], fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200155 fobj->shared_count = 1;
156 goto done;
157 }
158
159 /*
160 * no need to bump fence refcounts, rcu_read access
161 * requires the use of kref_get_unless_zero, and the
162 * references from the old struct are carried over to
163 * the new.
164 */
165 fobj->shared_count = old->shared_count;
166
167 for (i = 0; i < old->shared_count; ++i) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100168 struct dma_fence *check;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200169
170 check = rcu_dereference_protected(old->shared[i],
171 reservation_object_held(obj));
172
173 if (!old_fence && check->context == fence->context) {
174 old_fence = check;
175 RCU_INIT_POINTER(fobj->shared[i], fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200176 } else
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200177 RCU_INIT_POINTER(fobj->shared[i], check);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200178 }
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200179 if (!old_fence) {
180 RCU_INIT_POINTER(fobj->shared[fobj->shared_count], fence);
181 fobj->shared_count++;
182 }
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200183
184done:
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200185 preempt_disable();
186 write_seqcount_begin(&obj->seq);
187 /*
188 * RCU_INIT_POINTER can be used here,
189 * seqcount provides the necessary barriers
190 */
191 RCU_INIT_POINTER(obj->fence, fobj);
192 write_seqcount_end(&obj->seq);
193 preempt_enable();
194
195 if (old)
196 kfree_rcu(old, rcu);
197
198 if (old_fence)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100199 dma_fence_put(old_fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200200}
201
Rob Clarkdad6c392016-03-31 16:26:51 -0400202/**
203 * reservation_object_add_shared_fence - Add a fence to a shared slot
204 * @obj: the reservation object
205 * @fence: the shared fence to add
206 *
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200207 * Add a fence to a shared slot, obj->lock must be held, and
Rob Clarkf5bef0b2016-08-19 16:55:34 -0400208 * reservation_object_reserve_shared() has been called.
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200209 */
210void reservation_object_add_shared_fence(struct reservation_object *obj,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100211 struct dma_fence *fence)
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200212{
213 struct reservation_object_list *old, *fobj = obj->staged;
214
215 old = reservation_object_get_list(obj);
216 obj->staged = NULL;
217
218 if (!fobj) {
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200219 BUG_ON(old->shared_count >= old->shared_max);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200220 reservation_object_add_shared_inplace(obj, old, fence);
221 } else
222 reservation_object_add_shared_replace(obj, old, fobj, fence);
223}
224EXPORT_SYMBOL(reservation_object_add_shared_fence);
225
Rob Clarkdad6c392016-03-31 16:26:51 -0400226/**
227 * reservation_object_add_excl_fence - Add an exclusive fence.
228 * @obj: the reservation object
229 * @fence: the shared fence to add
230 *
231 * Add a fence to the exclusive slot. The obj->lock must be held.
232 */
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200233void reservation_object_add_excl_fence(struct reservation_object *obj,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100234 struct dma_fence *fence)
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200235{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100236 struct dma_fence *old_fence = reservation_object_get_excl(obj);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200237 struct reservation_object_list *old;
238 u32 i = 0;
239
240 old = reservation_object_get_list(obj);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200241 if (old)
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200242 i = old->shared_count;
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200243
244 if (fence)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100245 dma_fence_get(fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200246
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200247 preempt_disable();
248 write_seqcount_begin(&obj->seq);
249 /* write_seqcount_begin provides the necessary memory barrier */
250 RCU_INIT_POINTER(obj->fence_excl, fence);
251 if (old)
252 old->shared_count = 0;
253 write_seqcount_end(&obj->seq);
254 preempt_enable();
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200255
256 /* inplace update, no shared fences */
257 while (i--)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100258 dma_fence_put(rcu_dereference_protected(old->shared[i],
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200259 reservation_object_held(obj)));
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200260
261 if (old_fence)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100262 dma_fence_put(old_fence);
Maarten Lankhorst04a5faa2014-07-01 12:57:54 +0200263}
264EXPORT_SYMBOL(reservation_object_add_excl_fence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200265
Rob Clarkdad6c392016-03-31 16:26:51 -0400266/**
267 * reservation_object_get_fences_rcu - Get an object's shared and exclusive
268 * fences without update side lock held
269 * @obj: the reservation object
270 * @pfence_excl: the returned exclusive fence (or NULL)
271 * @pshared_count: the number of shared fences returned
272 * @pshared: the array of shared fence ptrs returned (array is krealloc'd to
273 * the required size, and must be freed by caller)
274 *
275 * RETURNS
276 * Zero or -errno
277 */
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200278int reservation_object_get_fences_rcu(struct reservation_object *obj,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100279 struct dma_fence **pfence_excl,
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200280 unsigned *pshared_count,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100281 struct dma_fence ***pshared)
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200282{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100283 struct dma_fence **shared = NULL;
284 struct dma_fence *fence_excl;
Chris Wilsonfedf5412016-08-29 08:08:30 +0100285 unsigned int shared_count;
286 int ret = 1;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200287
Chris Wilsonfedf5412016-08-29 08:08:30 +0100288 do {
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200289 struct reservation_object_list *fobj;
290 unsigned seq;
Chris Wilsonfedf5412016-08-29 08:08:30 +0100291 unsigned int i;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200292
Chris Wilsonfedf5412016-08-29 08:08:30 +0100293 shared_count = i = 0;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200294
295 rcu_read_lock();
Chris Wilsonfedf5412016-08-29 08:08:30 +0100296 seq = read_seqcount_begin(&obj->seq);
297
298 fence_excl = rcu_dereference(obj->fence_excl);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100299 if (fence_excl && !dma_fence_get_rcu(fence_excl))
Chris Wilsonfedf5412016-08-29 08:08:30 +0100300 goto unlock;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200301
302 fobj = rcu_dereference(obj->fence);
303 if (fobj) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100304 struct dma_fence **nshared;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200305 size_t sz = sizeof(*shared) * fobj->shared_max;
306
307 nshared = krealloc(shared, sz,
308 GFP_NOWAIT | __GFP_NOWARN);
309 if (!nshared) {
310 rcu_read_unlock();
311 nshared = krealloc(shared, sz, GFP_KERNEL);
312 if (nshared) {
313 shared = nshared;
314 continue;
315 }
316
317 ret = -ENOMEM;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200318 break;
319 }
320 shared = nshared;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200321 shared_count = fobj->shared_count;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200322
323 for (i = 0; i < shared_count; ++i) {
Chris Wilsonfedf5412016-08-29 08:08:30 +0100324 shared[i] = rcu_dereference(fobj->shared[i]);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100325 if (!dma_fence_get_rcu(shared[i]))
Chris Wilsonfedf5412016-08-29 08:08:30 +0100326 break;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200327 }
Chris Wilsonfedf5412016-08-29 08:08:30 +0100328 }
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200329
Chris Wilsonfedf5412016-08-29 08:08:30 +0100330 if (i != shared_count || read_seqcount_retry(&obj->seq, seq)) {
331 while (i--)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100332 dma_fence_put(shared[i]);
333 dma_fence_put(fence_excl);
Chris Wilsonfedf5412016-08-29 08:08:30 +0100334 goto unlock;
335 }
336
337 ret = 0;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200338unlock:
339 rcu_read_unlock();
Chris Wilsonfedf5412016-08-29 08:08:30 +0100340 } while (ret);
341
342 if (!shared_count) {
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200343 kfree(shared);
Chris Wilsonfedf5412016-08-29 08:08:30 +0100344 shared = NULL;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200345 }
Chris Wilsonfedf5412016-08-29 08:08:30 +0100346
347 *pshared_count = shared_count;
348 *pshared = shared;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200349 *pfence_excl = fence_excl;
350
351 return ret;
352}
353EXPORT_SYMBOL_GPL(reservation_object_get_fences_rcu);
354
Rob Clarkdad6c392016-03-31 16:26:51 -0400355/**
356 * reservation_object_wait_timeout_rcu - Wait on reservation's objects
357 * shared and/or exclusive fences.
358 * @obj: the reservation object
359 * @wait_all: if true, wait on all fences, else wait on just exclusive fence
360 * @intr: if true, do interruptible wait
361 * @timeout: timeout value in jiffies or zero to return immediately
362 *
363 * RETURNS
364 * Returns -ERESTARTSYS if interrupted, 0 if the wait timed out, or
365 * greater than zer on success.
366 */
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200367long reservation_object_wait_timeout_rcu(struct reservation_object *obj,
368 bool wait_all, bool intr,
369 unsigned long timeout)
370{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100371 struct dma_fence *fence;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200372 unsigned seq, shared_count, i = 0;
Christian König06a66b52016-11-07 16:16:16 -0500373 long ret = timeout ? timeout : 1;
Jammy Zhoufb8b7d22015-01-21 18:35:47 +0800374
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200375retry:
376 fence = NULL;
377 shared_count = 0;
378 seq = read_seqcount_begin(&obj->seq);
379 rcu_read_lock();
380
381 if (wait_all) {
Jagan Teki51366292015-05-21 01:09:31 +0530382 struct reservation_object_list *fobj =
383 rcu_dereference(obj->fence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200384
385 if (fobj)
386 shared_count = fobj->shared_count;
387
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200388 for (i = 0; i < shared_count; ++i) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100389 struct dma_fence *lfence = rcu_dereference(fobj->shared[i]);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200390
Chris Wilsonf54d1862016-10-25 13:00:45 +0100391 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT,
392 &lfence->flags))
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200393 continue;
394
Chris Wilsonf54d1862016-10-25 13:00:45 +0100395 if (!dma_fence_get_rcu(lfence))
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200396 goto unlock_retry;
397
Chris Wilsonf54d1862016-10-25 13:00:45 +0100398 if (dma_fence_is_signaled(lfence)) {
399 dma_fence_put(lfence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200400 continue;
401 }
402
403 fence = lfence;
404 break;
405 }
406 }
407
408 if (!shared_count) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100409 struct dma_fence *fence_excl = rcu_dereference(obj->fence_excl);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200410
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200411 if (fence_excl &&
Chris Wilsonf54d1862016-10-25 13:00:45 +0100412 !test_bit(DMA_FENCE_FLAG_SIGNALED_BIT,
413 &fence_excl->flags)) {
414 if (!dma_fence_get_rcu(fence_excl))
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200415 goto unlock_retry;
416
Chris Wilsonf54d1862016-10-25 13:00:45 +0100417 if (dma_fence_is_signaled(fence_excl))
418 dma_fence_put(fence_excl);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200419 else
420 fence = fence_excl;
421 }
422 }
423
424 rcu_read_unlock();
425 if (fence) {
Chris Wilson1cec20f2016-08-29 08:08:31 +0100426 if (read_seqcount_retry(&obj->seq, seq)) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100427 dma_fence_put(fence);
Chris Wilson1cec20f2016-08-29 08:08:31 +0100428 goto retry;
429 }
430
Chris Wilsonf54d1862016-10-25 13:00:45 +0100431 ret = dma_fence_wait_timeout(fence, intr, ret);
432 dma_fence_put(fence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200433 if (ret > 0 && wait_all && (i + 1 < shared_count))
434 goto retry;
435 }
436 return ret;
437
438unlock_retry:
439 rcu_read_unlock();
440 goto retry;
441}
442EXPORT_SYMBOL_GPL(reservation_object_wait_timeout_rcu);
443
444
445static inline int
Chris Wilsonf54d1862016-10-25 13:00:45 +0100446reservation_object_test_signaled_single(struct dma_fence *passed_fence)
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200447{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100448 struct dma_fence *fence, *lfence = passed_fence;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200449 int ret = 1;
450
Chris Wilsonf54d1862016-10-25 13:00:45 +0100451 if (!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &lfence->flags)) {
452 fence = dma_fence_get_rcu(lfence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200453 if (!fence)
454 return -1;
455
Chris Wilsonf54d1862016-10-25 13:00:45 +0100456 ret = !!dma_fence_is_signaled(fence);
457 dma_fence_put(fence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200458 }
459 return ret;
460}
461
Rob Clarkdad6c392016-03-31 16:26:51 -0400462/**
463 * reservation_object_test_signaled_rcu - Test if a reservation object's
464 * fences have been signaled.
465 * @obj: the reservation object
466 * @test_all: if true, test all fences, otherwise only test the exclusive
467 * fence
468 *
469 * RETURNS
470 * true if all fences signaled, else false
471 */
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200472bool reservation_object_test_signaled_rcu(struct reservation_object *obj,
473 bool test_all)
474{
475 unsigned seq, shared_count;
Chris Wilsonb68d8372016-08-29 08:08:32 +0100476 int ret;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200477
Chris Wilsonb68d8372016-08-29 08:08:32 +0100478 rcu_read_lock();
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200479retry:
Chris Wilsonb68d8372016-08-29 08:08:32 +0100480 ret = true;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200481 shared_count = 0;
482 seq = read_seqcount_begin(&obj->seq);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200483
484 if (test_all) {
485 unsigned i;
486
Jagan Teki51366292015-05-21 01:09:31 +0530487 struct reservation_object_list *fobj =
488 rcu_dereference(obj->fence);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200489
490 if (fobj)
491 shared_count = fobj->shared_count;
492
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200493 for (i = 0; i < shared_count; ++i) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100494 struct dma_fence *fence = rcu_dereference(fobj->shared[i]);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200495
496 ret = reservation_object_test_signaled_single(fence);
497 if (ret < 0)
Chris Wilsonb68d8372016-08-29 08:08:32 +0100498 goto retry;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200499 else if (!ret)
500 break;
501 }
502
Chris Wilsonb68d8372016-08-29 08:08:32 +0100503 if (read_seqcount_retry(&obj->seq, seq))
504 goto retry;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200505 }
506
507 if (!shared_count) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100508 struct dma_fence *fence_excl = rcu_dereference(obj->fence_excl);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200509
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200510 if (fence_excl) {
Jagan Teki51366292015-05-21 01:09:31 +0530511 ret = reservation_object_test_signaled_single(
512 fence_excl);
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200513 if (ret < 0)
Chris Wilsonb68d8372016-08-29 08:08:32 +0100514 goto retry;
515
516 if (read_seqcount_retry(&obj->seq, seq))
517 goto retry;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200518 }
519 }
520
521 rcu_read_unlock();
522 return ret;
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200523}
524EXPORT_SYMBOL_GPL(reservation_object_test_signaled_rcu);