4 * Copyright (C) 2012 Google, Inc.
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.
16 #include <linux/types.h>
17 #include <linux/kref.h>
18 #include <linux/ktime.h>
19 #include <linux/list.h>
20 #include <linux/spinlock.h>
21 #include <linux/wait.h>
22 #include <linux/fence.h>
24 #include "uapi/sync.h"
31 * struct sync_timeline_ops - sync object implementation ops
32 * @driver_name: name of the implementation
33 * @dup: duplicate a sync_pt
34 * @has_signaled: returns:
35 * 1 if pt has signaled
36 * 0 if pt has not signaled
39 * 1 if b will signal before a
40 * 0 if a and b will signal at the same time
41 * -1 if a will signal before b
42 * @free_pt: called before sync_pt is freed
43 * @release_obj: called before sync_timeline is freed
44 * @fill_driver_data: write implementation specific driver data to data.
45 * should return an error if there is not enough room
46 * as specified by size. This information is returned
47 * to userspace by SYNC_IOC_FENCE_INFO.
48 * @timeline_value_str: fill str with the value of the sync_timeline's counter
49 * @pt_value_str: fill str with the value of the sync_pt
51 struct sync_timeline_ops
{
52 const char *driver_name
;
55 struct sync_pt
* (*dup
)(struct sync_pt
*pt
);
58 int (*has_signaled
)(struct sync_pt
*pt
);
61 int (*compare
)(struct sync_pt
*a
, struct sync_pt
*b
);
64 void (*free_pt
)(struct sync_pt
*sync_pt
);
67 void (*release_obj
)(struct sync_timeline
*sync_timeline
);
70 int (*fill_driver_data
)(struct sync_pt
*syncpt
, void *data
, int size
);
73 void (*timeline_value_str
)(struct sync_timeline
*timeline
, char *str
,
77 void (*pt_value_str
)(struct sync_pt
*pt
, char *str
, int size
);
81 * struct sync_timeline - sync object
82 * @kref: reference count on fence.
83 * @ops: ops that define the implementation of the sync_timeline
84 * @name: name of the sync_timeline. Useful for debugging
85 * @destroyed: set when sync_timeline is destroyed
86 * @child_list_head: list of children sync_pts for this sync_timeline
87 * @child_list_lock: lock protecting @child_list_head, destroyed, and
89 * @active_list_head: list of active (unsignaled/errored) sync_pts
90 * @sync_timeline_list: membership in global sync_timeline_list
92 struct sync_timeline
{
94 const struct sync_timeline_ops
*ops
;
97 /* protected by child_list_lock */
101 struct list_head child_list_head
;
102 spinlock_t child_list_lock
;
104 struct list_head active_list_head
;
106 #ifdef CONFIG_DEBUG_FS
107 struct list_head sync_timeline_list
;
112 * struct sync_pt - sync point
113 * @fence: base fence class
114 * @child_list: membership in sync_timeline.child_list_head
115 * @active_list: membership in sync_timeline.active_list_head
116 * @signaled_list: membership in temporary signaled_list on stack
117 * @fence: sync_fence to which the sync_pt belongs
118 * @pt_list: membership in sync_fence.pt_list_head
119 * @status: 1: signaled, 0:active, <0: error
120 * @timestamp: time which sync_pt status transitioned from active to
126 struct list_head child_list
;
127 struct list_head active_list
;
130 static inline struct sync_timeline
*sync_pt_parent(struct sync_pt
*pt
)
132 return container_of(pt
->base
.lock
, struct sync_timeline
,
136 struct sync_fence_cb
{
138 struct fence
*sync_pt
;
139 struct sync_fence
*fence
;
143 * struct sync_fence - sync fence
144 * @file: file representing this fence
145 * @kref: reference count on fence.
146 * @name: name of sync_fence. Useful for debugging
147 * @pt_list_head: list of sync_pts in the fence. immutable once fence
149 * @status: 0: signaled, >0:active, <0: error
151 * @wq: wait queue for fence signaling
152 * @sync_fence_list: membership in global fence list
158 #ifdef CONFIG_DEBUG_FS
159 struct list_head sync_fence_list
;
163 wait_queue_head_t wq
;
166 struct sync_fence_cb cbs
[];
169 struct sync_fence_waiter
;
170 typedef void (*sync_callback_t
)(struct sync_fence
*fence
,
171 struct sync_fence_waiter
*waiter
);
174 * struct sync_fence_waiter - metadata for asynchronous waiter on a fence
175 * @waiter_list: membership in sync_fence.waiter_list_head
176 * @callback: function pointer to call when fence signals
177 * @callback_data: pointer to pass to @callback
179 struct sync_fence_waiter
{
181 sync_callback_t callback
;
184 static inline void sync_fence_waiter_init(struct sync_fence_waiter
*waiter
,
185 sync_callback_t callback
)
187 INIT_LIST_HEAD(&waiter
->work
.task_list
);
188 waiter
->callback
= callback
;
192 * API for sync_timeline implementers
196 * sync_timeline_create() - creates a sync object
197 * @ops: specifies the implementation ops for the object
198 * @size: size to allocate for this obj
199 * @name: sync_timeline name
201 * Creates a new sync_timeline which will use the implementation specified by
202 * @ops. @size bytes will be allocated allowing for implementation specific
203 * data to be kept after the generic sync_timeline struct.
205 struct sync_timeline
*sync_timeline_create(const struct sync_timeline_ops
*ops
,
206 int size
, const char *name
);
209 * sync_timeline_destroy() - destroys a sync object
210 * @obj: sync_timeline to destroy
212 * A sync implementation should call this when the @obj is going away
213 * (i.e. module unload.) @obj won't actually be freed until all its children
214 * sync_pts are freed.
216 void sync_timeline_destroy(struct sync_timeline
*obj
);
219 * sync_timeline_signal() - signal a status change on a sync_timeline
220 * @obj: sync_timeline to signal
222 * A sync implementation should call this any time one of it's sync_pts
223 * has signaled or has an error condition.
225 void sync_timeline_signal(struct sync_timeline
*obj
);
228 * sync_pt_create() - creates a sync pt
229 * @parent: sync_pt's parent sync_timeline
230 * @size: size to allocate for this pt
232 * Creates a new sync_pt as a child of @parent. @size bytes will be
233 * allocated allowing for implementation specific data to be kept after
234 * the generic sync_timeline struct.
236 struct sync_pt
*sync_pt_create(struct sync_timeline
*parent
, int size
);
239 * sync_pt_free() - frees a sync pt
240 * @pt: sync_pt to free
242 * This should only be called on sync_pts which have been created but
243 * not added to a fence.
245 void sync_pt_free(struct sync_pt
*pt
);
248 * sync_fence_create() - creates a sync fence
249 * @name: name of fence to create
250 * @pt: sync_pt to add to the fence
252 * Creates a fence containg @pt. Once this is called, the fence takes
255 struct sync_fence
*sync_fence_create(const char *name
, struct sync_pt
*pt
);
258 * API for sync_fence consumers
262 * sync_fence_merge() - merge two fences
263 * @name: name of new fence
267 * Creates a new fence which contains copies of all the sync_pts in both
268 * @a and @b. @a and @b remain valid, independent fences.
270 struct sync_fence
*sync_fence_merge(const char *name
,
271 struct sync_fence
*a
, struct sync_fence
*b
);
274 * sync_fence_fdget() - get a fence from an fd
275 * @fd: fd referencing a fence
277 * Ensures @fd references a valid fence, increments the refcount of the backing
278 * file, and returns the fence.
280 struct sync_fence
*sync_fence_fdget(int fd
);
283 * sync_fence_put() - puts a reference of a sync fence
284 * @fence: fence to put
286 * Puts a reference on @fence. If this is the last reference, the fence and
287 * all it's sync_pts will be freed
289 void sync_fence_put(struct sync_fence
*fence
);
292 * sync_fence_install() - installs a fence into a file descriptor
293 * @fence: fence to install
294 * @fd: file descriptor in which to install the fence
296 * Installs @fence into @fd. @fd's should be acquired through
297 * get_unused_fd_flags(O_CLOEXEC).
299 void sync_fence_install(struct sync_fence
*fence
, int fd
);
302 * sync_fence_wait_async() - registers and async wait on the fence
303 * @fence: fence to wait on
304 * @waiter: waiter callback struck
306 * Returns 1 if @fence has already signaled.
308 * Registers a callback to be called when @fence signals or has an error.
309 * @waiter should be initialized with sync_fence_waiter_init().
311 int sync_fence_wait_async(struct sync_fence
*fence
,
312 struct sync_fence_waiter
*waiter
);
315 * sync_fence_cancel_async() - cancels an async wait
316 * @fence: fence to wait on
317 * @waiter: waiter callback struck
319 * returns 0 if waiter was removed from fence's async waiter list.
320 * returns -ENOENT if waiter was not found on fence's async waiter list.
322 * Cancels a previously registered async wait. Will fail gracefully if
323 * @waiter was never registered or if @fence has already signaled @waiter.
325 int sync_fence_cancel_async(struct sync_fence
*fence
,
326 struct sync_fence_waiter
*waiter
);
329 * sync_fence_wait() - wait on fence
330 * @fence: fence to wait on
331 * @tiemout: timeout in ms
333 * Wait for @fence to be signaled or have an error. Waits indefinitely
336 int sync_fence_wait(struct sync_fence
*fence
, long timeout
);
338 #ifdef CONFIG_DEBUG_FS
340 void sync_timeline_debug_add(struct sync_timeline
*obj
);
341 void sync_timeline_debug_remove(struct sync_timeline
*obj
);
342 void sync_fence_debug_add(struct sync_fence
*fence
);
343 void sync_fence_debug_remove(struct sync_fence
*fence
);
344 void sync_dump(void);
347 # define sync_timeline_debug_add(obj)
348 # define sync_timeline_debug_remove(obj)
349 # define sync_fence_debug_add(fence)
350 # define sync_fence_debug_remove(fence)
353 int sync_fence_wake_up_wq(wait_queue_t
*curr
, unsigned mode
,
354 int wake_flags
, void *key
);
356 #endif /* _LINUX_SYNC_H */