summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv11b/gv11b.c
diff options
context:
space:
mode:
authorDeepak Nibade <dnibade@nvidia.com>2017-07-03 06:40:16 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-07-07 10:05:39 -0400
commitcca0510e477944e8781184592a95debd7742262d (patch)
tree047c2c3b6e925ed823a8c56ab13260e890de41a5 /drivers/gpu/nvgpu/gv11b/gv11b.c
parent6745200c6f5d5336bf3fbca6ed00794c2deec5ec (diff)
gpu: nvgpu: enable IO coherence support flag for gv11b
Set flag NVGPU_GPU_FLAGS_SUPPORT_IO_COHERENCE for gv11b to indicate IO coherence support is enabled Jira GPUT19X-17 Bug 1651331 Bug 200283998 Change-Id: If74db3de293e8ebd39e45d81cd1c0d1f7aa01d2d Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: https://git-master/r/1512601 GVS: Gerrit_Virtual_Submit Reviewed-by: Vijayakumar Subbu <vsubbu@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gv11b/gv11b.c')
-rw-r--r--drivers/gpu/nvgpu/gv11b/gv11b.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/gv11b.c b/drivers/gpu/nvgpu/gv11b/gv11b.c
index 69fd0cf4..d0fb41c3 100644
--- a/drivers/gpu/nvgpu/gv11b/gv11b.c
+++ b/drivers/gpu/nvgpu/gv11b/gv11b.c
@@ -24,6 +24,7 @@ int gv11b_init_gpu_characteristics(struct gk20a *g)
24{ 24{
25 gk20a_init_gpu_characteristics(g); 25 gk20a_init_gpu_characteristics(g);
26 g->gpu_characteristics.flags |= 26 g->gpu_characteristics.flags |=
27 NVGPU_GPU_FLAGS_SUPPORT_TSG_SUBCONTEXTS; 27 NVGPU_GPU_FLAGS_SUPPORT_TSG_SUBCONTEXTS |
28 NVGPU_GPU_FLAGS_SUPPORT_IO_COHERENCE;
28 return 0; 29 return 0;
29} 30}