blob: c691c3781804764cd49d294cbbdd66e69d221dcf [file] [log] [blame]
Erik Gilling010accf2012-03-13 15:34:34 -07001/*
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>
17#ifdef __KERNEL__
18
Ajay Dudanic4af2662012-07-23 16:43:05 -070019#include <linux/kref.h>
Erik Gillingad433ba2012-03-15 14:59:33 -070020#include <linux/ktime.h>
Erik Gilling010accf2012-03-13 15:34:34 -070021#include <linux/list.h>
22#include <linux/spinlock.h>
23#include <linux/wait.h>
24
25struct sync_timeline;
26struct sync_pt;
27struct sync_fence;
Jeff Boodyb7142872012-08-14 13:47:00 -060028struct seq_file;
Erik Gilling010accf2012-03-13 15:34:34 -070029
30/**
31 * struct sync_timeline_ops - sync object implementation ops
32 * @driver_name: name of the implentation
33 * @dup: duplicate a sync_pt
34 * @has_signaled: returns:
35 * 1 if pt has signaled
36 * 0 if pt has not signaled
37 * <0 on error
38 * @compare: returns:
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 signabl before b
42 * @free_pt: called before sync_pt is freed
43 * @release_obj: called before sync_timeline is freed
Erik Gilling981c8a92012-03-14 19:49:15 -070044 * @print_obj: print aditional debug information about sync_timeline.
45 * should not print a newline
46 * @print_pt: print aditional debug information about sync_pt.
47 * should not print a newline
Erik Gilling3913bff2012-03-15 17:45:50 -070048 * @fill_driver_data: write implmentation specific driver data to data.
49 * should return an error if there is not enough room
50 * as specified by size. This information is returned
51 * to userspace by SYNC_IOC_FENCE_INFO.
Erik Gilling010accf2012-03-13 15:34:34 -070052 */
53struct sync_timeline_ops {
54 const char *driver_name;
55
56 /* required */
57 struct sync_pt *(*dup)(struct sync_pt *pt);
58
59 /* required */
60 int (*has_signaled)(struct sync_pt *pt);
61
62 /* required */
63 int (*compare)(struct sync_pt *a, struct sync_pt *b);
64
65 /* optional */
66 void (*free_pt)(struct sync_pt *sync_pt);
67
68 /* optional */
69 void (*release_obj)(struct sync_timeline *sync_timeline);
Erik Gilling981c8a92012-03-14 19:49:15 -070070
71 /* optional */
72 void (*print_obj)(struct seq_file *s,
73 struct sync_timeline *sync_timeline);
74
75 /* optional */
76 void (*print_pt)(struct seq_file *s, struct sync_pt *sync_pt);
Erik Gilling3913bff2012-03-15 17:45:50 -070077
78 /* optional */
79 int (*fill_driver_data)(struct sync_pt *syncpt, void *data, int size);
Erik Gilling010accf2012-03-13 15:34:34 -070080};
81
82/**
83 * struct sync_timeline - sync object
Ajay Dudani741cdde2012-08-02 17:26:45 -070084 * @kref: reference count on fence.
Erik Gilling010accf2012-03-13 15:34:34 -070085 * @ops: ops that define the implementaiton of the sync_timeline
86 * @name: name of the sync_timeline. Useful for debugging
87 * @destoryed: set when sync_timeline is destroyed
88 * @child_list_head: list of children sync_pts for this sync_timeline
89 * @child_list_lock: lock protecting @child_list_head, destroyed, and
90 * sync_pt.status
91 * @active_list_head: list of active (unsignaled/errored) sync_pts
Erik Gilling981c8a92012-03-14 19:49:15 -070092 * @sync_timeline_list: membership in global sync_timeline_list
Erik Gilling010accf2012-03-13 15:34:34 -070093 */
94struct sync_timeline {
Ajay Dudani741cdde2012-08-02 17:26:45 -070095 struct kref kref;
Erik Gilling010accf2012-03-13 15:34:34 -070096 const struct sync_timeline_ops *ops;
97 char name[32];
98
99 /* protected by child_list_lock */
100 bool destroyed;
101
102 struct list_head child_list_head;
103 spinlock_t child_list_lock;
104
105 struct list_head active_list_head;
106 spinlock_t active_list_lock;
Erik Gilling981c8a92012-03-14 19:49:15 -0700107
108 struct list_head sync_timeline_list;
Erik Gilling010accf2012-03-13 15:34:34 -0700109};
110
111/**
112 * struct sync_pt - sync point
113 * @parent: sync_timeline to which this sync_pt belongs
114 * @child_list: membership in sync_timeline.child_list_head
115 * @active_list: membership in sync_timeline.active_list_head
Ajay Dudanic4af2662012-07-23 16:43:05 -0700116 * @signaled_list: membership in temorary signaled_list on stack
Erik Gilling010accf2012-03-13 15:34:34 -0700117 * @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
Erik Gillingad433ba2012-03-15 14:59:33 -0700120 * @timestamp: time which sync_pt status transitioned from active to
121 * singaled or error.
Erik Gilling010accf2012-03-13 15:34:34 -0700122 */
123struct sync_pt {
124 struct sync_timeline *parent;
125 struct list_head child_list;
126
127 struct list_head active_list;
Ajay Dudanic4af2662012-07-23 16:43:05 -0700128 struct list_head signaled_list;
Erik Gilling010accf2012-03-13 15:34:34 -0700129
130 struct sync_fence *fence;
131 struct list_head pt_list;
132
133 /* protected by parent->active_list_lock */
134 int status;
Erik Gillingad433ba2012-03-15 14:59:33 -0700135
136 ktime_t timestamp;
Erik Gilling010accf2012-03-13 15:34:34 -0700137};
138
139/**
140 * struct sync_fence - sync fence
141 * @file: file representing this fence
Ajay Dudanic4af2662012-07-23 16:43:05 -0700142 * @kref: referenace count on fence.
Erik Gilling010accf2012-03-13 15:34:34 -0700143 * @name: name of sync_fence. Useful for debugging
144 * @pt_list_head: list of sync_pts in ths fence. immutable once fence
145 * is created
146 * @waiter_list_head: list of asynchronous waiters on this fence
147 * @waiter_list_lock: lock protecting @waiter_list_head and @status
148 * @status: 1: signaled, 0:active, <0: error
149 *
150 * @wq: wait queue for fence signaling
Erik Gilling981c8a92012-03-14 19:49:15 -0700151 * @sync_fence_list: membership in global fence list
Erik Gilling010accf2012-03-13 15:34:34 -0700152 */
153struct sync_fence {
154 struct file *file;
Ajay Dudanic4af2662012-07-23 16:43:05 -0700155 struct kref kref;
Erik Gilling010accf2012-03-13 15:34:34 -0700156 char name[32];
157
158 /* this list is immutable once the fence is created */
159 struct list_head pt_list_head;
160
161 struct list_head waiter_list_head;
162 spinlock_t waiter_list_lock; /* also protects status */
163 int status;
164
165 wait_queue_head_t wq;
Erik Gilling981c8a92012-03-14 19:49:15 -0700166
167 struct list_head sync_fence_list;
Erik Gilling010accf2012-03-13 15:34:34 -0700168};
169
Erik Gillingc80114f2012-05-15 16:23:26 -0700170struct sync_fence_waiter;
171typedef void (*sync_callback_t)(struct sync_fence *fence,
172 struct sync_fence_waiter *waiter);
173
Erik Gilling010accf2012-03-13 15:34:34 -0700174/**
175 * struct sync_fence_waiter - metadata for asynchronous waiter on a fence
176 * @waiter_list: membership in sync_fence.waiter_list_head
177 * @callback: function pointer to call when fence signals
178 * @callback_data: pointer to pass to @callback
179 */
180struct sync_fence_waiter {
181 struct list_head waiter_list;
182
Erik Gillingc80114f2012-05-15 16:23:26 -0700183 sync_callback_t callback;
Erik Gilling010accf2012-03-13 15:34:34 -0700184};
185
Erik Gillingc80114f2012-05-15 16:23:26 -0700186static inline void sync_fence_waiter_init(struct sync_fence_waiter *waiter,
187 sync_callback_t callback)
188{
189 waiter->callback = callback;
190}
191
Erik Gilling010accf2012-03-13 15:34:34 -0700192/*
193 * API for sync_timeline implementers
194 */
195
196/**
197 * sync_timeline_create() - creates a sync object
198 * @ops: specifies the implemention ops for the object
199 * @size: size to allocate for this obj
200 * @name: sync_timeline name
201 *
202 * Creates a new sync_timeline which will use the implemetation specified by
203 * @ops. @size bytes will be allocated allowing for implemntation specific
204 * data to be kept after the generic sync_timeline stuct.
205 */
206struct sync_timeline *sync_timeline_create(const struct sync_timeline_ops *ops,
207 int size, const char *name);
208
209/**
210 * sync_timeline_destory() - destorys a sync object
211 * @obj: sync_timeline to destroy
212 *
213 * A sync implemntation should call this when the @obj is going away
214 * (i.e. module unload.) @obj won't actually be freed until all its childern
215 * sync_pts are freed.
216 */
217void sync_timeline_destroy(struct sync_timeline *obj);
218
219/**
220 * sync_timeline_signal() - signal a status change on a sync_timeline
221 * @obj: sync_timeline to signal
222 *
223 * A sync implemntation should call this any time one of it's sync_pts
224 * has signaled or has an error condition.
225 */
226void sync_timeline_signal(struct sync_timeline *obj);
227
228/**
229 * sync_pt_create() - creates a sync pt
230 * @parent: sync_pt's parent sync_timeline
231 * @size: size to allocate for this pt
232 *
233 * Creates a new sync_pt as a chiled of @parent. @size bytes will be
234 * allocated allowing for implemntation specific data to be kept after
235 * the generic sync_timeline struct.
236 */
237struct sync_pt *sync_pt_create(struct sync_timeline *parent, int size);
238
239/**
240 * sync_pt_free() - frees a sync pt
241 * @pt: sync_pt to free
242 *
243 * This should only be called on sync_pts which have been created but
244 * not added to a fence.
245 */
246void sync_pt_free(struct sync_pt *pt);
247
248/**
249 * sync_fence_create() - creates a sync fence
250 * @name: name of fence to create
251 * @pt: sync_pt to add to the fence
252 *
253 * Creates a fence containg @pt. Once this is called, the fence takes
254 * ownership of @pt.
255 */
256struct sync_fence *sync_fence_create(const char *name, struct sync_pt *pt);
257
258/*
259 * API for sync_fence consumers
260 */
261
262/**
263 * sync_fence_merge() - merge two fences
264 * @name: name of new fence
265 * @a: fence a
266 * @b: fence b
267 *
268 * Creates a new fence which contains copies of all the sync_pts in both
269 * @a and @b. @a and @b remain valid, independent fences.
270 */
271struct sync_fence *sync_fence_merge(const char *name,
272 struct sync_fence *a, struct sync_fence *b);
273
274/**
275 * sync_fence_fdget() - get a fence from an fd
276 * @fd: fd referencing a fence
277 *
278 * Ensures @fd references a valid fence, increments the refcount of the backing
279 * file, and returns the fence.
280 */
281struct sync_fence *sync_fence_fdget(int fd);
282
283/**
284 * sync_fence_put() - puts a refernnce of a sync fence
285 * @fence: fence to put
286 *
287 * Puts a reference on @fence. If this is the last reference, the fence and
288 * all it's sync_pts will be freed
289 */
290void sync_fence_put(struct sync_fence *fence);
291
292/**
293 * sync_fence_install() - installs a fence into a file descriptor
294 * @fence: fence to instal
295 * @fd: file descriptor in which to install the fence
296 *
297 * Installs @fence into @fd. @fd's should be acquired through get_unused_fd().
298 */
299void sync_fence_install(struct sync_fence *fence, int fd);
300
301/**
302 * sync_fence_wait_async() - registers and async wait on the fence
303 * @fence: fence to wait on
Erik Gillingc80114f2012-05-15 16:23:26 -0700304 * @waiter: waiter callback struck
Erik Gilling010accf2012-03-13 15:34:34 -0700305 *
306 * Returns 1 if @fence has already signaled.
307 *
Erik Gillingc80114f2012-05-15 16:23:26 -0700308 * Registers a callback to be called when @fence signals or has an error.
309 * @waiter should be initialized with sync_fence_waiter_init().
Erik Gilling010accf2012-03-13 15:34:34 -0700310 */
311int sync_fence_wait_async(struct sync_fence *fence,
Erik Gillingc80114f2012-05-15 16:23:26 -0700312 struct sync_fence_waiter *waiter);
313
314/**
315 * sync_fence_cancel_async() - cancels an async wait
316 * @fence: fence to wait on
317 * @waiter: waiter callback struck
318 *
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.
321 *
322 * Cancels a previously registered async wait. Will fail gracefully if
323 * @waiter was never registered or if @fence has already signaled @waiter.
324 */
325int sync_fence_cancel_async(struct sync_fence *fence,
326 struct sync_fence_waiter *waiter);
Erik Gilling010accf2012-03-13 15:34:34 -0700327
328/**
329 * sync_fence_wait() - wait on fence
330 * @fence: fence to wait on
331 * @tiemout: timeout in ms
332 *
Ajay Dudanidf53a2ca2012-08-21 17:57:19 -0700333 * Wait for @fence to be signaled or have an error. Waits indefinitely
334 * if @timeout < 0
Erik Gilling010accf2012-03-13 15:34:34 -0700335 */
336int sync_fence_wait(struct sync_fence *fence, long timeout);
337
Erik Gilling010accf2012-03-13 15:34:34 -0700338#endif /* __KERNEL__ */
339
340/**
341 * struct sync_merge_data - data passed to merge ioctl
342 * @fd2: file descriptor of second fence
343 * @name: name of new fence
344 * @fence: returns the fd of the new fence to userspace
345 */
346struct sync_merge_data {
347 __s32 fd2; /* fd of second fence */
348 char name[32]; /* name of new fence */
349 __s32 fence; /* fd on newly created fence */
350};
351
Erik Gilling3913bff2012-03-15 17:45:50 -0700352/**
353 * struct sync_pt_info - detailed sync_pt information
354 * @len: length of sync_pt_info including any driver_data
355 * @obj_name: name of parent sync_timeline
356 * @driver_name: name of driver implmenting the parent
357 * @status: status of the sync_pt 0:active 1:signaled <0:error
358 * @timestamp_ns: timestamp of status change in nanoseconds
359 * @driver_data: any driver dependant data
360 */
361struct sync_pt_info {
362 __u32 len;
363 char obj_name[32];
364 char driver_name[32];
365 __s32 status;
366 __u64 timestamp_ns;
367
368 __u8 driver_data[0];
369};
370
371/**
372 * struct sync_fence_info_data - data returned from fence info ioctl
373 * @len: ioctl caller writes the size of the buffer its passing in.
374 * ioctl returns length of sync_fence_data reutnred to userspace
375 * including pt_info.
376 * @name: name of fence
377 * @status: status of fence. 1: signaled 0:active <0:error
378 * @pt_info: a sync_pt_info struct for every sync_pt in the fence
379 */
380struct sync_fence_info_data {
381 __u32 len;
382 char name[32];
383 __s32 status;
384
385 __u8 pt_info[0];
386};
387
Erik Gilling010accf2012-03-13 15:34:34 -0700388#define SYNC_IOC_MAGIC '>'
389
390/**
391 * DOC: SYNC_IOC_WAIT - wait for a fence to signal
392 *
Ajay Dudanidf53a2ca2012-08-21 17:57:19 -0700393 * pass timeout in milliseconds. Waits indefinitely timeout < 0.
Erik Gilling010accf2012-03-13 15:34:34 -0700394 */
Ajay Dudanidf53a2ca2012-08-21 17:57:19 -0700395#define SYNC_IOC_WAIT _IOW(SYNC_IOC_MAGIC, 0, __s32)
Erik Gilling010accf2012-03-13 15:34:34 -0700396
397/**
398 * DOC: SYNC_IOC_MERGE - merge two fences
399 *
400 * Takes a struct sync_merge_data. Creates a new fence containing copies of
401 * the sync_pts in both the calling fd and sync_merge_data.fd2. Returns the
402 * new fence's fd in sync_merge_data.fence
403 */
404#define SYNC_IOC_MERGE _IOWR(SYNC_IOC_MAGIC, 1, struct sync_merge_data)
405
Erik Gilling3913bff2012-03-15 17:45:50 -0700406/**
407 * DOC: SYNC_IOC_FENCE_INFO - get detailed information on a fence
408 *
409 * Takes a struct sync_fence_info_data with extra space allocated for pt_info.
410 * Caller should write the size of the buffer into len. On return, len is
411 * updated to reflect the total size of the sync_fence_info_data including
412 * pt_info.
413 *
414 * pt_info is a buffer containing sync_pt_infos for every sync_pt in the fence.
415 * To itterate over the sync_pt_infos, use the sync_pt_info.len field.
416 */
417#define SYNC_IOC_FENCE_INFO _IOWR(SYNC_IOC_MAGIC, 2,\
418 struct sync_fence_info_data)
419
Erik Gilling010accf2012-03-13 15:34:34 -0700420#endif /* _LINUX_SYNC_H */