blob: 8025a891d3e9e254780bdff811150daa64b51454 [file] [log] [blame]
Thomas Gleixner1802d0b2019-05-27 08:55:21 +02001// SPDX-License-Identifier: GPL-2.0-only
Maarten Lankhorste9417592014-07-01 12:57:14 +02002/*
3 * Fence mechanism for dma-buf and to allow for asynchronous dma access
4 *
5 * Copyright (C) 2012 Canonical Ltd
6 * Copyright (C) 2012 Texas Instruments
7 *
8 * Authors:
9 * Rob Clark <robdclark@gmail.com>
10 * Maarten Lankhorst <maarten.lankhorst@canonical.com>
Maarten Lankhorste9417592014-07-01 12:57:14 +020011 */
12
13#include <linux/slab.h>
14#include <linux/export.h>
15#include <linux/atomic.h>
Chris Wilsonf54d1862016-10-25 13:00:45 +010016#include <linux/dma-fence.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010017#include <linux/sched/signal.h>
Maarten Lankhorste9417592014-07-01 12:57:14 +020018
19#define CREATE_TRACE_POINTS
Chris Wilsonf54d1862016-10-25 13:00:45 +010020#include <trace/events/dma_fence.h>
Maarten Lankhorste9417592014-07-01 12:57:14 +020021
Chris Wilsonf54d1862016-10-25 13:00:45 +010022EXPORT_TRACEPOINT_SYMBOL(dma_fence_emit);
Chris Wilson8c96c672017-01-24 11:57:58 +000023EXPORT_TRACEPOINT_SYMBOL(dma_fence_enable_signal);
Chris Wilsonc36beba2019-05-08 12:24:52 +010024EXPORT_TRACEPOINT_SYMBOL(dma_fence_signaled);
Maarten Lankhorste9417592014-07-01 12:57:14 +020025
Christian König078dec332018-12-03 13:36:14 +010026static DEFINE_SPINLOCK(dma_fence_stub_lock);
27static struct dma_fence dma_fence_stub;
28
Thierry Redinge9f3b792014-08-08 12:42:32 +020029/*
Maarten Lankhorste9417592014-07-01 12:57:14 +020030 * fence context counter: each execution context should have its own
31 * fence context, this allows checking if fences belong to the same
32 * context or not. One device can have multiple separate contexts,
33 * and they're used if some engine can run independently of another.
34 */
Christian König078dec332018-12-03 13:36:14 +010035static atomic64_t dma_fence_context_counter = ATOMIC64_INIT(1);
Maarten Lankhorste9417592014-07-01 12:57:14 +020036
37/**
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +020038 * DOC: DMA fences overview
Maarten Lankhorste9417592014-07-01 12:57:14 +020039 *
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +020040 * DMA fences, represented by &struct dma_fence, are the kernel internal
41 * synchronization primitive for DMA operations like GPU rendering, video
42 * encoding/decoding, or displaying buffers on a screen.
43 *
44 * A fence is initialized using dma_fence_init() and completed using
45 * dma_fence_signal(). Fences are associated with a context, allocated through
46 * dma_fence_context_alloc(), and all fences on the same context are
47 * fully ordered.
48 *
49 * Since the purposes of fences is to facilitate cross-device and
50 * cross-application synchronization, there's multiple ways to use one:
51 *
52 * - Individual fences can be exposed as a &sync_file, accessed as a file
53 * descriptor from userspace, created by calling sync_file_create(). This is
54 * called explicit fencing, since userspace passes around explicit
55 * synchronization points.
56 *
57 * - Some subsystems also have their own explicit fencing primitives, like
58 * &drm_syncobj. Compared to &sync_file, a &drm_syncobj allows the underlying
59 * fence to be updated.
60 *
61 * - Then there's also implicit fencing, where the synchronization points are
62 * implicitly passed around as part of shared &dma_buf instances. Such
Christian König52791ee2019-08-11 10:06:32 +020063 * implicit fences are stored in &struct dma_resv through the
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +020064 * &dma_buf.resv pointer.
65 */
66
Christian König078dec332018-12-03 13:36:14 +010067static const char *dma_fence_stub_get_name(struct dma_fence *fence)
68{
69 return "stub";
70}
71
72static const struct dma_fence_ops dma_fence_stub_ops = {
73 .get_driver_name = dma_fence_stub_get_name,
74 .get_timeline_name = dma_fence_stub_get_name,
75};
76
77/**
78 * dma_fence_get_stub - return a signaled fence
79 *
80 * Return a stub fence which is already signaled.
81 */
82struct dma_fence *dma_fence_get_stub(void)
83{
84 spin_lock(&dma_fence_stub_lock);
85 if (!dma_fence_stub.ops) {
86 dma_fence_init(&dma_fence_stub,
87 &dma_fence_stub_ops,
88 &dma_fence_stub_lock,
89 0, 0);
90 dma_fence_signal_locked(&dma_fence_stub);
91 }
92 spin_unlock(&dma_fence_stub_lock);
93
94 return dma_fence_get(&dma_fence_stub);
95}
96EXPORT_SYMBOL(dma_fence_get_stub);
97
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +020098/**
99 * dma_fence_context_alloc - allocate an array of fence contexts
100 * @num: amount of contexts to allocate
101 *
102 * This function will return the first index of the number of fence contexts
103 * allocated. The fence context is used for setting &dma_fence.context to a
104 * unique number by passing the context to dma_fence_init().
Maarten Lankhorste9417592014-07-01 12:57:14 +0200105 */
Chris Wilsonf54d1862016-10-25 13:00:45 +0100106u64 dma_fence_context_alloc(unsigned num)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200107{
Daniel Vetter6ce31262017-07-20 14:51:07 +0200108 WARN_ON(!num);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100109 return atomic64_add_return(num, &dma_fence_context_counter) - num;
Maarten Lankhorste9417592014-07-01 12:57:14 +0200110}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100111EXPORT_SYMBOL(dma_fence_context_alloc);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200112
113/**
Chris Wilsonf54d1862016-10-25 13:00:45 +0100114 * dma_fence_signal_locked - signal completion of a fence
Maarten Lankhorste9417592014-07-01 12:57:14 +0200115 * @fence: the fence to signal
116 *
117 * Signal completion for software callbacks on a fence, this will unblock
Chris Wilsonf54d1862016-10-25 13:00:45 +0100118 * dma_fence_wait() calls and run all the callbacks added with
119 * dma_fence_add_callback(). Can be called multiple times, but since a fence
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200120 * can only go from the unsignaled to the signaled state and not back, it will
121 * only be effective the first time.
Maarten Lankhorste9417592014-07-01 12:57:14 +0200122 *
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200123 * Unlike dma_fence_signal(), this function must be called with &dma_fence.lock
124 * held.
125 *
126 * Returns 0 on success and a negative error value when @fence has been
127 * signalled already.
Maarten Lankhorste9417592014-07-01 12:57:14 +0200128 */
Chris Wilsonf54d1862016-10-25 13:00:45 +0100129int dma_fence_signal_locked(struct dma_fence *fence)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200130{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100131 struct dma_fence_cb *cur, *tmp;
Maarten Lankhorste9417592014-07-01 12:57:14 +0200132 int ret = 0;
133
Rob Clark78010cd2016-10-24 15:57:10 -0400134 lockdep_assert_held(fence->lock);
135
Maarten Lankhorste9417592014-07-01 12:57:14 +0200136 if (WARN_ON(!fence))
137 return -EINVAL;
138
Chris Wilsonf54d1862016-10-25 13:00:45 +0100139 if (test_and_set_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags)) {
Maarten Lankhorste9417592014-07-01 12:57:14 +0200140 ret = -EINVAL;
141
142 /*
Chris Wilsonf54d1862016-10-25 13:00:45 +0100143 * we might have raced with the unlocked dma_fence_signal,
Maarten Lankhorste9417592014-07-01 12:57:14 +0200144 * still run through all callbacks
145 */
Chris Wilson76250f22017-02-14 12:40:01 +0000146 } else {
147 fence->timestamp = ktime_get();
148 set_bit(DMA_FENCE_FLAG_TIMESTAMP_BIT, &fence->flags);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100149 trace_dma_fence_signaled(fence);
Chris Wilson76250f22017-02-14 12:40:01 +0000150 }
Maarten Lankhorste9417592014-07-01 12:57:14 +0200151
152 list_for_each_entry_safe(cur, tmp, &fence->cb_list, node) {
153 list_del_init(&cur->node);
154 cur->func(fence, cur);
155 }
156 return ret;
157}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100158EXPORT_SYMBOL(dma_fence_signal_locked);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200159
160/**
Chris Wilsonf54d1862016-10-25 13:00:45 +0100161 * dma_fence_signal - signal completion of a fence
Maarten Lankhorste9417592014-07-01 12:57:14 +0200162 * @fence: the fence to signal
163 *
164 * Signal completion for software callbacks on a fence, this will unblock
Chris Wilsonf54d1862016-10-25 13:00:45 +0100165 * dma_fence_wait() calls and run all the callbacks added with
166 * dma_fence_add_callback(). Can be called multiple times, but since a fence
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200167 * can only go from the unsignaled to the signaled state and not back, it will
168 * only be effective the first time.
169 *
170 * Returns 0 on success and a negative error value when @fence has been
171 * signalled already.
Maarten Lankhorste9417592014-07-01 12:57:14 +0200172 */
Chris Wilsonf54d1862016-10-25 13:00:45 +0100173int dma_fence_signal(struct dma_fence *fence)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200174{
175 unsigned long flags;
176
177 if (!fence)
178 return -EINVAL;
179
Chris Wilsonf54d1862016-10-25 13:00:45 +0100180 if (test_and_set_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
Maarten Lankhorste9417592014-07-01 12:57:14 +0200181 return -EINVAL;
182
Chris Wilson76250f22017-02-14 12:40:01 +0000183 fence->timestamp = ktime_get();
184 set_bit(DMA_FENCE_FLAG_TIMESTAMP_BIT, &fence->flags);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100185 trace_dma_fence_signaled(fence);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200186
Chris Wilsonf54d1862016-10-25 13:00:45 +0100187 if (test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT, &fence->flags)) {
188 struct dma_fence_cb *cur, *tmp;
Maarten Lankhorste9417592014-07-01 12:57:14 +0200189
190 spin_lock_irqsave(fence->lock, flags);
191 list_for_each_entry_safe(cur, tmp, &fence->cb_list, node) {
192 list_del_init(&cur->node);
193 cur->func(fence, cur);
194 }
195 spin_unlock_irqrestore(fence->lock, flags);
196 }
197 return 0;
198}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100199EXPORT_SYMBOL(dma_fence_signal);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200200
201/**
Chris Wilsonf54d1862016-10-25 13:00:45 +0100202 * dma_fence_wait_timeout - sleep until the fence gets signaled
Maarten Lankhorste9417592014-07-01 12:57:14 +0200203 * or until timeout elapses
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200204 * @fence: the fence to wait on
205 * @intr: if true, do an interruptible wait
206 * @timeout: timeout value in jiffies, or MAX_SCHEDULE_TIMEOUT
Maarten Lankhorste9417592014-07-01 12:57:14 +0200207 *
208 * Returns -ERESTARTSYS if interrupted, 0 if the wait timed out, or the
209 * remaining timeout in jiffies on success. Other error values may be
210 * returned on custom implementations.
211 *
212 * Performs a synchronous wait on this fence. It is assumed the caller
213 * directly or indirectly (buf-mgr between reservation and committing)
214 * holds a reference to the fence, otherwise the fence might be
215 * freed before return, resulting in undefined behavior.
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200216 *
217 * See also dma_fence_wait() and dma_fence_wait_any_timeout().
Maarten Lankhorste9417592014-07-01 12:57:14 +0200218 */
219signed long
Chris Wilsonf54d1862016-10-25 13:00:45 +0100220dma_fence_wait_timeout(struct dma_fence *fence, bool intr, signed long timeout)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200221{
222 signed long ret;
223
224 if (WARN_ON(timeout < 0))
225 return -EINVAL;
226
Chris Wilsonf54d1862016-10-25 13:00:45 +0100227 trace_dma_fence_wait_start(fence);
Daniel Vetter418cc6c2018-05-03 16:25:52 +0200228 if (fence->ops->wait)
229 ret = fence->ops->wait(fence, intr, timeout);
230 else
231 ret = dma_fence_default_wait(fence, intr, timeout);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100232 trace_dma_fence_wait_end(fence);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200233 return ret;
234}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100235EXPORT_SYMBOL(dma_fence_wait_timeout);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200236
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200237/**
238 * dma_fence_release - default relese function for fences
239 * @kref: &dma_fence.recfount
240 *
241 * This is the default release functions for &dma_fence. Drivers shouldn't call
242 * this directly, but instead call dma_fence_put().
243 */
Chris Wilsonf54d1862016-10-25 13:00:45 +0100244void dma_fence_release(struct kref *kref)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200245{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100246 struct dma_fence *fence =
247 container_of(kref, struct dma_fence, refcount);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200248
Chris Wilsonf54d1862016-10-25 13:00:45 +0100249 trace_dma_fence_destroy(fence);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200250
Chris Wilson427231b2019-06-09 12:00:02 +0100251 if (WARN(!list_empty(&fence->cb_list),
252 "Fence %s:%s:%llx:%llx released with pending signals!\n",
253 fence->ops->get_driver_name(fence),
254 fence->ops->get_timeline_name(fence),
255 fence->context, fence->seqno)) {
256 unsigned long flags;
257
258 /*
259 * Failed to signal before release, likely a refcounting issue.
260 *
261 * This should never happen, but if it does make sure that we
262 * don't leave chains dangling. We set the error flag first
263 * so that the callbacks know this signal is due to an error.
264 */
265 spin_lock_irqsave(fence->lock, flags);
266 fence->error = -EDEADLK;
267 dma_fence_signal_locked(fence);
268 spin_unlock_irqrestore(fence->lock, flags);
269 }
Maarten Lankhorste9417592014-07-01 12:57:14 +0200270
271 if (fence->ops->release)
272 fence->ops->release(fence);
273 else
Chris Wilsonf54d1862016-10-25 13:00:45 +0100274 dma_fence_free(fence);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200275}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100276EXPORT_SYMBOL(dma_fence_release);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200277
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200278/**
279 * dma_fence_free - default release function for &dma_fence.
280 * @fence: fence to release
281 *
282 * This is the default implementation for &dma_fence_ops.release. It calls
283 * kfree_rcu() on @fence.
284 */
Chris Wilsonf54d1862016-10-25 13:00:45 +0100285void dma_fence_free(struct dma_fence *fence)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200286{
Maarten Lankhorst3c3b1772014-07-01 12:58:00 +0200287 kfree_rcu(fence, rcu);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200288}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100289EXPORT_SYMBOL(dma_fence_free);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200290
291/**
Chris Wilsonf54d1862016-10-25 13:00:45 +0100292 * dma_fence_enable_sw_signaling - enable signaling on fence
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200293 * @fence: the fence to enable
Maarten Lankhorste9417592014-07-01 12:57:14 +0200294 *
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200295 * This will request for sw signaling to be enabled, to make the fence
296 * complete as soon as possible. This calls &dma_fence_ops.enable_signaling
297 * internally.
Maarten Lankhorste9417592014-07-01 12:57:14 +0200298 */
Chris Wilsonf54d1862016-10-25 13:00:45 +0100299void dma_fence_enable_sw_signaling(struct dma_fence *fence)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200300{
301 unsigned long flags;
302
Chris Wilsonf54d1862016-10-25 13:00:45 +0100303 if (!test_and_set_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT,
304 &fence->flags) &&
Daniel Vetterc7013172018-05-04 16:10:34 +0200305 !test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags) &&
306 fence->ops->enable_signaling) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100307 trace_dma_fence_enable_signal(fence);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200308
309 spin_lock_irqsave(fence->lock, flags);
310
311 if (!fence->ops->enable_signaling(fence))
Chris Wilsonf54d1862016-10-25 13:00:45 +0100312 dma_fence_signal_locked(fence);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200313
314 spin_unlock_irqrestore(fence->lock, flags);
315 }
316}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100317EXPORT_SYMBOL(dma_fence_enable_sw_signaling);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200318
319/**
Chris Wilsonf54d1862016-10-25 13:00:45 +0100320 * dma_fence_add_callback - add a callback to be called when the fence
Maarten Lankhorste9417592014-07-01 12:57:14 +0200321 * is signaled
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200322 * @fence: the fence to wait on
323 * @cb: the callback to register
324 * @func: the function to call
Maarten Lankhorste9417592014-07-01 12:57:14 +0200325 *
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200326 * @cb will be initialized by dma_fence_add_callback(), no initialization
Maarten Lankhorste9417592014-07-01 12:57:14 +0200327 * by the caller is required. Any number of callbacks can be registered
328 * to a fence, but a callback can only be registered to one fence at a time.
329 *
330 * Note that the callback can be called from an atomic context. If
331 * fence is already signaled, this function will return -ENOENT (and
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200332 * *not* call the callback).
Maarten Lankhorste9417592014-07-01 12:57:14 +0200333 *
334 * Add a software callback to the fence. Same restrictions apply to
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200335 * refcount as it does to dma_fence_wait(), however the caller doesn't need to
336 * keep a refcount to fence afterward dma_fence_add_callback() has returned:
337 * when software access is enabled, the creator of the fence is required to keep
338 * the fence alive until after it signals with dma_fence_signal(). The callback
339 * itself can be called from irq context.
Maarten Lankhorste9417592014-07-01 12:57:14 +0200340 *
Gustavo Padovanf642de12017-02-15 15:57:25 -0200341 * Returns 0 in case of success, -ENOENT if the fence is already signaled
342 * and -EINVAL in case of error.
Maarten Lankhorste9417592014-07-01 12:57:14 +0200343 */
Chris Wilsonf54d1862016-10-25 13:00:45 +0100344int dma_fence_add_callback(struct dma_fence *fence, struct dma_fence_cb *cb,
345 dma_fence_func_t func)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200346{
347 unsigned long flags;
348 int ret = 0;
349 bool was_set;
350
351 if (WARN_ON(!fence || !func))
352 return -EINVAL;
353
Chris Wilsonf54d1862016-10-25 13:00:45 +0100354 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags)) {
Maarten Lankhorste9417592014-07-01 12:57:14 +0200355 INIT_LIST_HEAD(&cb->node);
356 return -ENOENT;
357 }
358
359 spin_lock_irqsave(fence->lock, flags);
360
Chris Wilsonf54d1862016-10-25 13:00:45 +0100361 was_set = test_and_set_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT,
362 &fence->flags);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200363
Chris Wilsonf54d1862016-10-25 13:00:45 +0100364 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
Maarten Lankhorste9417592014-07-01 12:57:14 +0200365 ret = -ENOENT;
Daniel Vetterc7013172018-05-04 16:10:34 +0200366 else if (!was_set && fence->ops->enable_signaling) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100367 trace_dma_fence_enable_signal(fence);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200368
369 if (!fence->ops->enable_signaling(fence)) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100370 dma_fence_signal_locked(fence);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200371 ret = -ENOENT;
372 }
373 }
374
375 if (!ret) {
376 cb->func = func;
377 list_add_tail(&cb->node, &fence->cb_list);
378 } else
379 INIT_LIST_HEAD(&cb->node);
380 spin_unlock_irqrestore(fence->lock, flags);
381
382 return ret;
383}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100384EXPORT_SYMBOL(dma_fence_add_callback);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200385
386/**
Chris Wilsond6c99f42017-01-04 14:12:21 +0000387 * dma_fence_get_status - returns the status upon completion
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200388 * @fence: the dma_fence to query
Chris Wilsond6c99f42017-01-04 14:12:21 +0000389 *
390 * This wraps dma_fence_get_status_locked() to return the error status
391 * condition on a signaled fence. See dma_fence_get_status_locked() for more
392 * details.
393 *
394 * Returns 0 if the fence has not yet been signaled, 1 if the fence has
395 * been signaled without an error condition, or a negative error code
396 * if the fence has been completed in err.
397 */
398int dma_fence_get_status(struct dma_fence *fence)
399{
400 unsigned long flags;
401 int status;
402
403 spin_lock_irqsave(fence->lock, flags);
404 status = dma_fence_get_status_locked(fence);
405 spin_unlock_irqrestore(fence->lock, flags);
406
407 return status;
408}
409EXPORT_SYMBOL(dma_fence_get_status);
410
411/**
Chris Wilsonf54d1862016-10-25 13:00:45 +0100412 * dma_fence_remove_callback - remove a callback from the signaling list
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200413 * @fence: the fence to wait on
414 * @cb: the callback to remove
Maarten Lankhorste9417592014-07-01 12:57:14 +0200415 *
416 * Remove a previously queued callback from the fence. This function returns
Masanari Iidaf353d712014-10-22 00:00:14 +0900417 * true if the callback is successfully removed, or false if the fence has
Maarten Lankhorste9417592014-07-01 12:57:14 +0200418 * already been signaled.
419 *
420 * *WARNING*:
421 * Cancelling a callback should only be done if you really know what you're
422 * doing, since deadlocks and race conditions could occur all too easily. For
423 * this reason, it should only ever be done on hardware lockup recovery,
424 * with a reference held to the fence.
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200425 *
426 * Behaviour is undefined if @cb has not been added to @fence using
427 * dma_fence_add_callback() beforehand.
Maarten Lankhorste9417592014-07-01 12:57:14 +0200428 */
429bool
Chris Wilsonf54d1862016-10-25 13:00:45 +0100430dma_fence_remove_callback(struct dma_fence *fence, struct dma_fence_cb *cb)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200431{
432 unsigned long flags;
433 bool ret;
434
435 spin_lock_irqsave(fence->lock, flags);
436
437 ret = !list_empty(&cb->node);
438 if (ret)
439 list_del_init(&cb->node);
440
441 spin_unlock_irqrestore(fence->lock, flags);
442
443 return ret;
444}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100445EXPORT_SYMBOL(dma_fence_remove_callback);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200446
447struct default_wait_cb {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100448 struct dma_fence_cb base;
Maarten Lankhorste9417592014-07-01 12:57:14 +0200449 struct task_struct *task;
450};
451
452static void
Chris Wilsonf54d1862016-10-25 13:00:45 +0100453dma_fence_default_wait_cb(struct dma_fence *fence, struct dma_fence_cb *cb)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200454{
455 struct default_wait_cb *wait =
456 container_of(cb, struct default_wait_cb, base);
457
458 wake_up_state(wait->task, TASK_NORMAL);
459}
460
461/**
Chris Wilsonf54d1862016-10-25 13:00:45 +0100462 * dma_fence_default_wait - default sleep until the fence gets signaled
Maarten Lankhorste9417592014-07-01 12:57:14 +0200463 * or until timeout elapses
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200464 * @fence: the fence to wait on
465 * @intr: if true, do an interruptible wait
466 * @timeout: timeout value in jiffies, or MAX_SCHEDULE_TIMEOUT
Maarten Lankhorste9417592014-07-01 12:57:14 +0200467 *
468 * Returns -ERESTARTSYS if interrupted, 0 if the wait timed out, or the
Alex Deucherbcc004b2016-11-07 16:16:13 -0500469 * remaining timeout in jiffies on success. If timeout is zero the value one is
470 * returned if the fence is already signaled for consistency with other
471 * functions taking a jiffies timeout.
Maarten Lankhorste9417592014-07-01 12:57:14 +0200472 */
473signed long
Chris Wilsonf54d1862016-10-25 13:00:45 +0100474dma_fence_default_wait(struct dma_fence *fence, bool intr, signed long timeout)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200475{
476 struct default_wait_cb cb;
477 unsigned long flags;
Alex Deucherbcc004b2016-11-07 16:16:13 -0500478 signed long ret = timeout ? timeout : 1;
Maarten Lankhorste9417592014-07-01 12:57:14 +0200479 bool was_set;
480
Chris Wilsonf54d1862016-10-25 13:00:45 +0100481 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
Alex Deucherbcc004b2016-11-07 16:16:13 -0500482 return ret;
Maarten Lankhorste9417592014-07-01 12:57:14 +0200483
484 spin_lock_irqsave(fence->lock, flags);
485
486 if (intr && signal_pending(current)) {
487 ret = -ERESTARTSYS;
488 goto out;
489 }
490
Chris Wilsonf54d1862016-10-25 13:00:45 +0100491 was_set = test_and_set_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT,
492 &fence->flags);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200493
Chris Wilsonf54d1862016-10-25 13:00:45 +0100494 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
Maarten Lankhorste9417592014-07-01 12:57:14 +0200495 goto out;
496
Daniel Vetterc7013172018-05-04 16:10:34 +0200497 if (!was_set && fence->ops->enable_signaling) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100498 trace_dma_fence_enable_signal(fence);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200499
500 if (!fence->ops->enable_signaling(fence)) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100501 dma_fence_signal_locked(fence);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200502 goto out;
503 }
504 }
505
Andres Rodriguez03c0c5f2017-04-26 10:46:20 -0400506 if (!timeout) {
507 ret = 0;
508 goto out;
509 }
510
Chris Wilsonf54d1862016-10-25 13:00:45 +0100511 cb.base.func = dma_fence_default_wait_cb;
Maarten Lankhorste9417592014-07-01 12:57:14 +0200512 cb.task = current;
513 list_add(&cb.base.node, &fence->cb_list);
514
Chris Wilsonf54d1862016-10-25 13:00:45 +0100515 while (!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags) && ret > 0) {
Maarten Lankhorste9417592014-07-01 12:57:14 +0200516 if (intr)
517 __set_current_state(TASK_INTERRUPTIBLE);
518 else
519 __set_current_state(TASK_UNINTERRUPTIBLE);
520 spin_unlock_irqrestore(fence->lock, flags);
521
522 ret = schedule_timeout(ret);
523
524 spin_lock_irqsave(fence->lock, flags);
525 if (ret > 0 && intr && signal_pending(current))
526 ret = -ERESTARTSYS;
527 }
528
529 if (!list_empty(&cb.base.node))
530 list_del(&cb.base.node);
531 __set_current_state(TASK_RUNNING);
532
533out:
534 spin_unlock_irqrestore(fence->lock, flags);
535 return ret;
536}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100537EXPORT_SYMBOL(dma_fence_default_wait);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200538
Christian Königa5194352015-10-20 16:34:16 +0200539static bool
monk.liu7392b4b2016-11-04 16:16:09 -0400540dma_fence_test_signaled_any(struct dma_fence **fences, uint32_t count,
541 uint32_t *idx)
Christian Königa5194352015-10-20 16:34:16 +0200542{
543 int i;
544
545 for (i = 0; i < count; ++i) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100546 struct dma_fence *fence = fences[i];
monk.liu7392b4b2016-11-04 16:16:09 -0400547 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags)) {
548 if (idx)
549 *idx = i;
Christian Königa5194352015-10-20 16:34:16 +0200550 return true;
monk.liu7392b4b2016-11-04 16:16:09 -0400551 }
Christian Königa5194352015-10-20 16:34:16 +0200552 }
553 return false;
554}
555
556/**
Chris Wilsonf54d1862016-10-25 13:00:45 +0100557 * dma_fence_wait_any_timeout - sleep until any fence gets signaled
Christian Königa5194352015-10-20 16:34:16 +0200558 * or until timeout elapses
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200559 * @fences: array of fences to wait on
560 * @count: number of fences to wait on
561 * @intr: if true, do an interruptible wait
562 * @timeout: timeout value in jiffies, or MAX_SCHEDULE_TIMEOUT
563 * @idx: used to store the first signaled fence index, meaningful only on
564 * positive return
Christian Königa5194352015-10-20 16:34:16 +0200565 *
566 * Returns -EINVAL on custom fence wait implementation, -ERESTARTSYS if
567 * interrupted, 0 if the wait timed out, or the remaining timeout in jiffies
568 * on success.
569 *
570 * Synchronous waits for the first fence in the array to be signaled. The
571 * caller needs to hold a reference to all fences in the array, otherwise a
572 * fence might be freed before return, resulting in undefined behavior.
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200573 *
574 * See also dma_fence_wait() and dma_fence_wait_timeout().
Christian Königa5194352015-10-20 16:34:16 +0200575 */
576signed long
Chris Wilsonf54d1862016-10-25 13:00:45 +0100577dma_fence_wait_any_timeout(struct dma_fence **fences, uint32_t count,
monk.liu7392b4b2016-11-04 16:16:09 -0400578 bool intr, signed long timeout, uint32_t *idx)
Christian Königa5194352015-10-20 16:34:16 +0200579{
580 struct default_wait_cb *cb;
581 signed long ret = timeout;
582 unsigned i;
583
584 if (WARN_ON(!fences || !count || timeout < 0))
585 return -EINVAL;
586
587 if (timeout == 0) {
588 for (i = 0; i < count; ++i)
monk.liu7392b4b2016-11-04 16:16:09 -0400589 if (dma_fence_is_signaled(fences[i])) {
590 if (idx)
591 *idx = i;
Christian Königa5194352015-10-20 16:34:16 +0200592 return 1;
monk.liu7392b4b2016-11-04 16:16:09 -0400593 }
Christian Königa5194352015-10-20 16:34:16 +0200594
595 return 0;
596 }
597
598 cb = kcalloc(count, sizeof(struct default_wait_cb), GFP_KERNEL);
599 if (cb == NULL) {
600 ret = -ENOMEM;
601 goto err_free_cb;
602 }
603
604 for (i = 0; i < count; ++i) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100605 struct dma_fence *fence = fences[i];
Christian Königa5194352015-10-20 16:34:16 +0200606
Christian Königa5194352015-10-20 16:34:16 +0200607 cb[i].task = current;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100608 if (dma_fence_add_callback(fence, &cb[i].base,
609 dma_fence_default_wait_cb)) {
Christian Königa5194352015-10-20 16:34:16 +0200610 /* This fence is already signaled */
monk.liu7392b4b2016-11-04 16:16:09 -0400611 if (idx)
612 *idx = i;
Christian Königa5194352015-10-20 16:34:16 +0200613 goto fence_rm_cb;
614 }
615 }
616
617 while (ret > 0) {
618 if (intr)
619 set_current_state(TASK_INTERRUPTIBLE);
620 else
621 set_current_state(TASK_UNINTERRUPTIBLE);
622
monk.liu7392b4b2016-11-04 16:16:09 -0400623 if (dma_fence_test_signaled_any(fences, count, idx))
Christian Königa5194352015-10-20 16:34:16 +0200624 break;
625
626 ret = schedule_timeout(ret);
627
628 if (ret > 0 && intr && signal_pending(current))
629 ret = -ERESTARTSYS;
630 }
631
632 __set_current_state(TASK_RUNNING);
633
634fence_rm_cb:
635 while (i-- > 0)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100636 dma_fence_remove_callback(fences[i], &cb[i].base);
Christian Königa5194352015-10-20 16:34:16 +0200637
638err_free_cb:
639 kfree(cb);
640
641 return ret;
642}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100643EXPORT_SYMBOL(dma_fence_wait_any_timeout);
Christian Königa5194352015-10-20 16:34:16 +0200644
Maarten Lankhorste9417592014-07-01 12:57:14 +0200645/**
Chris Wilsonf54d1862016-10-25 13:00:45 +0100646 * dma_fence_init - Initialize a custom fence.
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200647 * @fence: the fence to initialize
648 * @ops: the dma_fence_ops for operations on this fence
649 * @lock: the irqsafe spinlock to use for locking this fence
650 * @context: the execution context this fence is run on
651 * @seqno: a linear increasing sequence number for this context
Maarten Lankhorste9417592014-07-01 12:57:14 +0200652 *
653 * Initializes an allocated fence, the caller doesn't have to keep its
654 * refcount after committing with this fence, but it will need to hold a
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200655 * refcount again if &dma_fence_ops.enable_signaling gets called.
Maarten Lankhorste9417592014-07-01 12:57:14 +0200656 *
657 * context and seqno are used for easy comparison between fences, allowing
Daniel Vetter4dd3cdb2018-07-04 11:29:09 +0200658 * to check which fence is later by simply using dma_fence_later().
Maarten Lankhorste9417592014-07-01 12:57:14 +0200659 */
660void
Chris Wilsonf54d1862016-10-25 13:00:45 +0100661dma_fence_init(struct dma_fence *fence, const struct dma_fence_ops *ops,
Christian Königb312d8c2018-11-14 16:11:06 +0100662 spinlock_t *lock, u64 context, u64 seqno)
Maarten Lankhorste9417592014-07-01 12:57:14 +0200663{
664 BUG_ON(!lock);
Daniel Vetter418cc6c2018-05-03 16:25:52 +0200665 BUG_ON(!ops || !ops->get_driver_name || !ops->get_timeline_name);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200666
667 kref_init(&fence->refcount);
668 fence->ops = ops;
669 INIT_LIST_HEAD(&fence->cb_list);
670 fence->lock = lock;
671 fence->context = context;
672 fence->seqno = seqno;
673 fence->flags = 0UL;
Chris Wilsona009e972017-01-04 14:12:22 +0000674 fence->error = 0;
Maarten Lankhorste9417592014-07-01 12:57:14 +0200675
Chris Wilsonf54d1862016-10-25 13:00:45 +0100676 trace_dma_fence_init(fence);
Maarten Lankhorste9417592014-07-01 12:57:14 +0200677}
Chris Wilsonf54d1862016-10-25 13:00:45 +0100678EXPORT_SYMBOL(dma_fence_init);