blob: eaf57cccf62656c5540f72f0edd82e9908057ff1 [file] [log] [blame]
Erik Gilling7ad530b2013-02-28 16:42:57 -08001/*
2 * include/linux/sync.h
3 *
4 * Copyright (C) 2012 Google, Inc.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 */
12
13#ifndef _LINUX_SYNC_H
14#define _LINUX_SYNC_H
15
16#include <linux/types.h>
Erik Gilling01544172013-02-28 16:43:10 -080017#include <linux/kref.h>
Erik Gilling97a84842013-02-28 16:42:59 -080018#include <linux/ktime.h>
Erik Gilling7ad530b2013-02-28 16:42:57 -080019#include <linux/list.h>
20#include <linux/spinlock.h>
21#include <linux/wait.h>
22
Colin Cross64907b92014-02-17 13:58:32 -080023#include "uapi/sync.h"
24
Erik Gilling7ad530b2013-02-28 16:42:57 -080025struct sync_timeline;
26struct sync_pt;
27struct sync_fence;
28
29/**
30 * struct sync_timeline_ops - sync object implementation ops
Masanari Iida4e20eff2013-10-31 14:20:25 +090031 * @driver_name: name of the implementation
Erik Gilling7ad530b2013-02-28 16:42:57 -080032 * @dup: duplicate a sync_pt
33 * @has_signaled: returns:
34 * 1 if pt has signaled
35 * 0 if pt has not signaled
36 * <0 on error
37 * @compare: returns:
38 * 1 if b will signal before a
39 * 0 if a and b will signal at the same time
Masanari Iida4e20eff2013-10-31 14:20:25 +090040 * -1 if a will signal before b
Erik Gilling7ad530b2013-02-28 16:42:57 -080041 * @free_pt: called before sync_pt is freed
42 * @release_obj: called before sync_timeline is freed
Erik Gillingdbd52392013-02-28 16:43:21 -080043 * @print_obj: deprecated
44 * @print_pt: deprecated
Masanari Iida4e20eff2013-10-31 14:20:25 +090045 * @fill_driver_data: write implementation specific driver data to data.
Erik Gilling79ba1522013-02-28 16:43:02 -080046 * should return an error if there is not enough room
47 * as specified by size. This information is returned
48 * to userspace by SYNC_IOC_FENCE_INFO.
Erik Gillingdbd52392013-02-28 16:43:21 -080049 * @timeline_value_str: fill str with the value of the sync_timeline's counter
50 * @pt_value_str: fill str with the value of the sync_pt
Erik Gilling7ad530b2013-02-28 16:42:57 -080051 */
52struct sync_timeline_ops {
53 const char *driver_name;
54
55 /* required */
Daeseok Youn393f5392014-02-10 14:36:48 +090056 struct sync_pt * (*dup)(struct sync_pt *pt);
Erik Gilling7ad530b2013-02-28 16:42:57 -080057
58 /* required */
59 int (*has_signaled)(struct sync_pt *pt);
60
61 /* required */
62 int (*compare)(struct sync_pt *a, struct sync_pt *b);
63
64 /* optional */
65 void (*free_pt)(struct sync_pt *sync_pt);
66
67 /* optional */
68 void (*release_obj)(struct sync_timeline *sync_timeline);
Erik Gillingaf7582f2013-02-28 16:43:00 -080069
Erik Gillingdbd52392013-02-28 16:43:21 -080070 /* deprecated */
Erik Gillingaf7582f2013-02-28 16:43:00 -080071 void (*print_obj)(struct seq_file *s,
72 struct sync_timeline *sync_timeline);
73
Erik Gillingdbd52392013-02-28 16:43:21 -080074 /* deprecated */
Erik Gillingaf7582f2013-02-28 16:43:00 -080075 void (*print_pt)(struct seq_file *s, struct sync_pt *sync_pt);
Erik Gilling79ba1522013-02-28 16:43:02 -080076
77 /* optional */
78 int (*fill_driver_data)(struct sync_pt *syncpt, void *data, int size);
Erik Gillingdbd52392013-02-28 16:43:21 -080079
80 /* optional */
81 void (*timeline_value_str)(struct sync_timeline *timeline, char *str,
82 int size);
83
84 /* optional */
85 void (*pt_value_str)(struct sync_pt *pt, char *str, int size);
Erik Gilling7ad530b2013-02-28 16:42:57 -080086};
87
88/**
89 * struct sync_timeline - sync object
Erik Gillingc5b86b72013-02-28 16:43:11 -080090 * @kref: reference count on fence.
Masanari Iida4e20eff2013-10-31 14:20:25 +090091 * @ops: ops that define the implementation of the sync_timeline
Erik Gilling7ad530b2013-02-28 16:42:57 -080092 * @name: name of the sync_timeline. Useful for debugging
Masanari Iida4e20eff2013-10-31 14:20:25 +090093 * @destroyed: set when sync_timeline is destroyed
Erik Gilling7ad530b2013-02-28 16:42:57 -080094 * @child_list_head: list of children sync_pts for this sync_timeline
95 * @child_list_lock: lock protecting @child_list_head, destroyed, and
96 * sync_pt.status
97 * @active_list_head: list of active (unsignaled/errored) sync_pts
Erik Gillingaf7582f2013-02-28 16:43:00 -080098 * @sync_timeline_list: membership in global sync_timeline_list
Erik Gilling7ad530b2013-02-28 16:42:57 -080099 */
100struct sync_timeline {
Erik Gillingc5b86b72013-02-28 16:43:11 -0800101 struct kref kref;
Erik Gilling7ad530b2013-02-28 16:42:57 -0800102 const struct sync_timeline_ops *ops;
103 char name[32];
104
105 /* protected by child_list_lock */
106 bool destroyed;
107
108 struct list_head child_list_head;
109 spinlock_t child_list_lock;
110
111 struct list_head active_list_head;
112 spinlock_t active_list_lock;
Erik Gillingaf7582f2013-02-28 16:43:00 -0800113
114 struct list_head sync_timeline_list;
Erik Gilling7ad530b2013-02-28 16:42:57 -0800115};
116
117/**
118 * struct sync_pt - sync point
119 * @parent: sync_timeline to which this sync_pt belongs
120 * @child_list: membership in sync_timeline.child_list_head
121 * @active_list: membership in sync_timeline.active_list_head
Masanari Iida4e20eff2013-10-31 14:20:25 +0900122 * @signaled_list: membership in temporary signaled_list on stack
Erik Gilling7ad530b2013-02-28 16:42:57 -0800123 * @fence: sync_fence to which the sync_pt belongs
124 * @pt_list: membership in sync_fence.pt_list_head
125 * @status: 1: signaled, 0:active, <0: error
Erik Gilling97a84842013-02-28 16:42:59 -0800126 * @timestamp: time which sync_pt status transitioned from active to
Masanari Iida4e20eff2013-10-31 14:20:25 +0900127 * signaled or error.
Erik Gilling7ad530b2013-02-28 16:42:57 -0800128 */
129struct sync_pt {
130 struct sync_timeline *parent;
131 struct list_head child_list;
132
133 struct list_head active_list;
Erik Gilling01544172013-02-28 16:43:10 -0800134 struct list_head signaled_list;
Erik Gilling7ad530b2013-02-28 16:42:57 -0800135
136 struct sync_fence *fence;
137 struct list_head pt_list;
138
139 /* protected by parent->active_list_lock */
140 int status;
Erik Gilling97a84842013-02-28 16:42:59 -0800141
142 ktime_t timestamp;
Erik Gilling7ad530b2013-02-28 16:42:57 -0800143};
144
145/**
146 * struct sync_fence - sync fence
147 * @file: file representing this fence
Masanari Iida4e20eff2013-10-31 14:20:25 +0900148 * @kref: reference count on fence.
Erik Gilling7ad530b2013-02-28 16:42:57 -0800149 * @name: name of sync_fence. Useful for debugging
Masanari Iida4e20eff2013-10-31 14:20:25 +0900150 * @pt_list_head: list of sync_pts in the fence. immutable once fence
Erik Gilling7ad530b2013-02-28 16:42:57 -0800151 * is created
152 * @waiter_list_head: list of asynchronous waiters on this fence
153 * @waiter_list_lock: lock protecting @waiter_list_head and @status
154 * @status: 1: signaled, 0:active, <0: error
155 *
156 * @wq: wait queue for fence signaling
Erik Gillingaf7582f2013-02-28 16:43:00 -0800157 * @sync_fence_list: membership in global fence list
Erik Gilling7ad530b2013-02-28 16:42:57 -0800158 */
159struct sync_fence {
160 struct file *file;
Erik Gilling01544172013-02-28 16:43:10 -0800161 struct kref kref;
Erik Gilling7ad530b2013-02-28 16:42:57 -0800162 char name[32];
163
164 /* this list is immutable once the fence is created */
165 struct list_head pt_list_head;
166
167 struct list_head waiter_list_head;
168 spinlock_t waiter_list_lock; /* also protects status */
169 int status;
170
171 wait_queue_head_t wq;
Erik Gillingaf7582f2013-02-28 16:43:00 -0800172
173 struct list_head sync_fence_list;
Erik Gilling7ad530b2013-02-28 16:42:57 -0800174};
175
Erik Gillingc0f61a42013-02-28 16:43:05 -0800176struct sync_fence_waiter;
177typedef void (*sync_callback_t)(struct sync_fence *fence,
178 struct sync_fence_waiter *waiter);
179
Erik Gilling7ad530b2013-02-28 16:42:57 -0800180/**
181 * struct sync_fence_waiter - metadata for asynchronous waiter on a fence
182 * @waiter_list: membership in sync_fence.waiter_list_head
183 * @callback: function pointer to call when fence signals
184 * @callback_data: pointer to pass to @callback
185 */
186struct sync_fence_waiter {
187 struct list_head waiter_list;
188
Erik Gillingc0f61a42013-02-28 16:43:05 -0800189 sync_callback_t callback;
Erik Gilling7ad530b2013-02-28 16:42:57 -0800190};
191
Erik Gillingc0f61a42013-02-28 16:43:05 -0800192static inline void sync_fence_waiter_init(struct sync_fence_waiter *waiter,
193 sync_callback_t callback)
194{
195 waiter->callback = callback;
196}
197
Erik Gilling7ad530b2013-02-28 16:42:57 -0800198/*
199 * API for sync_timeline implementers
200 */
201
202/**
203 * sync_timeline_create() - creates a sync object
Masanari Iida4e20eff2013-10-31 14:20:25 +0900204 * @ops: specifies the implementation ops for the object
Erik Gilling7ad530b2013-02-28 16:42:57 -0800205 * @size: size to allocate for this obj
206 * @name: sync_timeline name
207 *
Masanari Iida4e20eff2013-10-31 14:20:25 +0900208 * Creates a new sync_timeline which will use the implementation specified by
209 * @ops. @size bytes will be allocated allowing for implementation specific
210 * data to be kept after the generic sync_timeline struct.
Erik Gilling7ad530b2013-02-28 16:42:57 -0800211 */
212struct sync_timeline *sync_timeline_create(const struct sync_timeline_ops *ops,
213 int size, const char *name);
214
215/**
Masanari Iida4e20eff2013-10-31 14:20:25 +0900216 * sync_timeline_destroy() - destroys a sync object
Erik Gilling7ad530b2013-02-28 16:42:57 -0800217 * @obj: sync_timeline to destroy
218 *
Masanari Iida4e20eff2013-10-31 14:20:25 +0900219 * A sync implementation should call this when the @obj is going away
220 * (i.e. module unload.) @obj won't actually be freed until all its children
Erik Gilling7ad530b2013-02-28 16:42:57 -0800221 * sync_pts are freed.
222 */
223void sync_timeline_destroy(struct sync_timeline *obj);
224
225/**
226 * sync_timeline_signal() - signal a status change on a sync_timeline
227 * @obj: sync_timeline to signal
228 *
Masanari Iida4e20eff2013-10-31 14:20:25 +0900229 * A sync implementation should call this any time one of it's sync_pts
Erik Gilling7ad530b2013-02-28 16:42:57 -0800230 * has signaled or has an error condition.
231 */
232void sync_timeline_signal(struct sync_timeline *obj);
233
234/**
235 * sync_pt_create() - creates a sync pt
236 * @parent: sync_pt's parent sync_timeline
237 * @size: size to allocate for this pt
238 *
Masanari Iida4e20eff2013-10-31 14:20:25 +0900239 * Creates a new sync_pt as a child of @parent. @size bytes will be
240 * allocated allowing for implementation specific data to be kept after
Erik Gilling7ad530b2013-02-28 16:42:57 -0800241 * the generic sync_timeline struct.
242 */
243struct sync_pt *sync_pt_create(struct sync_timeline *parent, int size);
244
245/**
246 * sync_pt_free() - frees a sync pt
247 * @pt: sync_pt to free
248 *
249 * This should only be called on sync_pts which have been created but
250 * not added to a fence.
251 */
252void sync_pt_free(struct sync_pt *pt);
253
254/**
255 * sync_fence_create() - creates a sync fence
256 * @name: name of fence to create
257 * @pt: sync_pt to add to the fence
258 *
259 * Creates a fence containg @pt. Once this is called, the fence takes
260 * ownership of @pt.
261 */
262struct sync_fence *sync_fence_create(const char *name, struct sync_pt *pt);
263
264/*
265 * API for sync_fence consumers
266 */
267
268/**
269 * sync_fence_merge() - merge two fences
270 * @name: name of new fence
271 * @a: fence a
272 * @b: fence b
273 *
274 * Creates a new fence which contains copies of all the sync_pts in both
275 * @a and @b. @a and @b remain valid, independent fences.
276 */
277struct sync_fence *sync_fence_merge(const char *name,
278 struct sync_fence *a, struct sync_fence *b);
279
280/**
281 * sync_fence_fdget() - get a fence from an fd
282 * @fd: fd referencing a fence
283 *
284 * Ensures @fd references a valid fence, increments the refcount of the backing
285 * file, and returns the fence.
286 */
287struct sync_fence *sync_fence_fdget(int fd);
288
289/**
Masanari Iida4e20eff2013-10-31 14:20:25 +0900290 * sync_fence_put() - puts a reference of a sync fence
Erik Gilling7ad530b2013-02-28 16:42:57 -0800291 * @fence: fence to put
292 *
293 * Puts a reference on @fence. If this is the last reference, the fence and
294 * all it's sync_pts will be freed
295 */
296void sync_fence_put(struct sync_fence *fence);
297
298/**
299 * sync_fence_install() - installs a fence into a file descriptor
Masanari Iida4e20eff2013-10-31 14:20:25 +0900300 * @fence: fence to install
Erik Gilling7ad530b2013-02-28 16:42:57 -0800301 * @fd: file descriptor in which to install the fence
302 *
303 * Installs @fence into @fd. @fd's should be acquired through get_unused_fd().
304 */
305void sync_fence_install(struct sync_fence *fence, int fd);
306
307/**
308 * sync_fence_wait_async() - registers and async wait on the fence
309 * @fence: fence to wait on
Erik Gillingc0f61a42013-02-28 16:43:05 -0800310 * @waiter: waiter callback struck
Erik Gilling7ad530b2013-02-28 16:42:57 -0800311 *
312 * Returns 1 if @fence has already signaled.
313 *
Erik Gillingc0f61a42013-02-28 16:43:05 -0800314 * Registers a callback to be called when @fence signals or has an error.
315 * @waiter should be initialized with sync_fence_waiter_init().
Erik Gilling7ad530b2013-02-28 16:42:57 -0800316 */
317int sync_fence_wait_async(struct sync_fence *fence,
Erik Gillingc0f61a42013-02-28 16:43:05 -0800318 struct sync_fence_waiter *waiter);
319
320/**
321 * sync_fence_cancel_async() - cancels an async wait
322 * @fence: fence to wait on
323 * @waiter: waiter callback struck
324 *
325 * returns 0 if waiter was removed from fence's async waiter list.
326 * returns -ENOENT if waiter was not found on fence's async waiter list.
327 *
328 * Cancels a previously registered async wait. Will fail gracefully if
329 * @waiter was never registered or if @fence has already signaled @waiter.
330 */
331int sync_fence_cancel_async(struct sync_fence *fence,
332 struct sync_fence_waiter *waiter);
Erik Gilling7ad530b2013-02-28 16:42:57 -0800333
334/**
335 * sync_fence_wait() - wait on fence
336 * @fence: fence to wait on
337 * @tiemout: timeout in ms
338 *
Erik Gilling3b640f52013-02-28 16:43:14 -0800339 * Wait for @fence to be signaled or have an error. Waits indefinitely
340 * if @timeout < 0
Erik Gilling7ad530b2013-02-28 16:42:57 -0800341 */
342int sync_fence_wait(struct sync_fence *fence, long timeout);
343
Erik Gilling7ad530b2013-02-28 16:42:57 -0800344#endif /* _LINUX_SYNC_H */