]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/staging/android/sw_sync.c
staging/android: remove .{fence, timeline}_value_str() from timeline_ops
[karo-tx-linux.git] / drivers / staging / android / sw_sync.c
1 /*
2  * drivers/base/sw_sync.c
3  *
4  * Copyright (C) 2012 Google, Inc.
5  *
6  * This software is licensed under the terms of the GNU General Public
7  * License version 2, as published by the Free Software Foundation, and
8  * may be copied, distributed, and modified under those terms.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  */
16
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/export.h>
20 #include <linux/file.h>
21 #include <linux/fs.h>
22 #include <linux/miscdevice.h>
23 #include <linux/syscalls.h>
24 #include <linux/uaccess.h>
25
26 #include "sw_sync.h"
27
28 struct fence *sw_sync_pt_create(struct sw_sync_timeline *obj, u32 value)
29 {
30         struct sw_sync_pt *pt;
31
32         pt = (struct sw_sync_pt *)
33                 sync_pt_create(&obj->obj, sizeof(struct sw_sync_pt), value);
34
35         pt->value = value;
36
37         return (struct fence *)pt;
38 }
39 EXPORT_SYMBOL(sw_sync_pt_create);
40
41 static struct sync_timeline_ops sw_sync_timeline_ops = {
42         .driver_name = "sw_sync",
43 };
44
45 struct sw_sync_timeline *sw_sync_timeline_create(const char *name)
46 {
47         struct sw_sync_timeline *obj = (struct sw_sync_timeline *)
48                 sync_timeline_create(&sw_sync_timeline_ops,
49                                      sizeof(struct sw_sync_timeline),
50                                      name);
51
52         return obj;
53 }
54 EXPORT_SYMBOL(sw_sync_timeline_create);
55
56 void sw_sync_timeline_inc(struct sw_sync_timeline *obj, u32 inc)
57 {
58         sync_timeline_signal(&obj->obj, inc);
59 }
60 EXPORT_SYMBOL(sw_sync_timeline_inc);