summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/fence_gk20a.h
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-03-29 18:00:24 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-04-11 13:56:06 -0400
commit19fdb429c2b04d13faecad8b2e5466e9f3c7b8c7 (patch)
treee92f6d93ae2593286546f983b9a1fff8638aa9a6 /drivers/gpu/nvgpu/gk20a/fence_gk20a.h
parent1a4647272f4fe50137c79583b698c1ef6f5def12 (diff)
gpu: nvgpu: Wrappers for checking platform type
Add nvgpu_* wrappers for determining if we're running in simulation or silicon, and if we're running in hypervisor. The new wrappers require struct gk20a pointer, and gk20a_fence_wait() did not have access to one. Add struct gk20a pointer as the first parameter. JIRA NVGPU-16 Change-Id: I73b2b8f091ca29fb1827054abd2adaf583710331 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1331565 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/fence_gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/fence_gk20a.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/fence_gk20a.h b/drivers/gpu/nvgpu/gk20a/fence_gk20a.h
index 426556cc..77dae9a7 100644
--- a/drivers/gpu/nvgpu/gk20a/fence_gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/fence_gk20a.h
@@ -25,6 +25,7 @@ struct sync_timeline;
25struct sync_fence; 25struct sync_fence;
26struct nvgpu_semaphore; 26struct nvgpu_semaphore;
27struct channel_gk20a; 27struct channel_gk20a;
28struct gk20a;
28 29
29struct gk20a_fence_ops; 30struct gk20a_fence_ops;
30 31
@@ -83,7 +84,7 @@ void gk20a_init_fence(struct gk20a_fence *f,
83/* Fence operations */ 84/* Fence operations */
84void gk20a_fence_put(struct gk20a_fence *f); 85void gk20a_fence_put(struct gk20a_fence *f);
85struct gk20a_fence *gk20a_fence_get(struct gk20a_fence *f); 86struct gk20a_fence *gk20a_fence_get(struct gk20a_fence *f);
86int gk20a_fence_wait(struct gk20a_fence *f, int timeout); 87int gk20a_fence_wait(struct gk20a *g, struct gk20a_fence *f, int timeout);
87bool gk20a_fence_is_expired(struct gk20a_fence *f); 88bool gk20a_fence_is_expired(struct gk20a_fence *f);
88int gk20a_fence_install_fd(struct gk20a_fence *f); 89int gk20a_fence_install_fd(struct gk20a_fence *f);
89 90