summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/include
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/include')
-rw-r--r--drivers/gpu/nvgpu/include/nvgpu/linux/os_fence_android.h2
-rw-r--r--drivers/gpu/nvgpu/include/nvgpu/os_fence.h6
2 files changed, 8 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/include/nvgpu/linux/os_fence_android.h b/drivers/gpu/nvgpu/include/nvgpu/linux/os_fence_android.h
index 39d08339..201b5306 100644
--- a/drivers/gpu/nvgpu/include/nvgpu/linux/os_fence_android.h
+++ b/drivers/gpu/nvgpu/include/nvgpu/linux/os_fence_android.h
@@ -39,6 +39,8 @@ void nvgpu_os_fence_init(struct nvgpu_os_fence *fence_out,
39 struct gk20a *g, const struct nvgpu_os_fence_ops *fops, 39 struct gk20a *g, const struct nvgpu_os_fence_ops *fops,
40 struct sync_fence *fence); 40 struct sync_fence *fence);
41 41
42void nvgpu_os_fence_android_install_fd(struct nvgpu_os_fence *s, int fd);
43
42int nvgpu_os_fence_syncpt_fdget( 44int nvgpu_os_fence_syncpt_fdget(
43 struct nvgpu_os_fence *fence_out, 45 struct nvgpu_os_fence *fence_out,
44 struct channel_gk20a *c, int fd); 46 struct channel_gk20a *c, int fd);
diff --git a/drivers/gpu/nvgpu/include/nvgpu/os_fence.h b/drivers/gpu/nvgpu/include/nvgpu/os_fence.h
index a22140da..4713ed3e 100644
--- a/drivers/gpu/nvgpu/include/nvgpu/os_fence.h
+++ b/drivers/gpu/nvgpu/include/nvgpu/os_fence.h
@@ -60,6 +60,12 @@ struct nvgpu_os_fence_ops {
60 * for the underlying sync_fence. 60 * for the underlying sync_fence.
61 */ 61 */
62 void (*drop_ref)(struct nvgpu_os_fence *s); 62 void (*drop_ref)(struct nvgpu_os_fence *s);
63
64 /*
65 * Used to install the fd in the corresponding OS. The underlying
66 * implementation varies from OS to OS.
67 */
68 void (*install_fence)(struct nvgpu_os_fence *s, int fd);
63}; 69};
64 70
65/* 71/*