summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/vgpu/gr_vgpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/vgpu/gr_vgpu.c')
-rw-r--r--drivers/gpu/nvgpu/vgpu/gr_vgpu.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/gr_vgpu.c b/drivers/gpu/nvgpu/vgpu/gr_vgpu.c
index c7996fd9..1c72ca76 100644
--- a/drivers/gpu/nvgpu/vgpu/gr_vgpu.c
+++ b/drivers/gpu/nvgpu/vgpu/gr_vgpu.c
@@ -1026,7 +1026,7 @@ int vgpu_gr_update_smpc_ctxsw_mode(struct gk20a *g,
1026} 1026}
1027 1027
1028int vgpu_gr_update_hwpm_ctxsw_mode(struct gk20a *g, 1028int vgpu_gr_update_hwpm_ctxsw_mode(struct gk20a *g,
1029 struct channel_gk20a *ch, bool enable) 1029 struct channel_gk20a *ch, u64 gpu_va, bool enable)
1030{ 1030{
1031 struct tsg_gk20a *tsg; 1031 struct tsg_gk20a *tsg;
1032 struct nvgpu_gr_ctx *ch_ctx; 1032 struct nvgpu_gr_ctx *ch_ctx;
@@ -1041,6 +1041,11 @@ int vgpu_gr_update_hwpm_ctxsw_mode(struct gk20a *g,
1041 if (!tsg) 1041 if (!tsg)
1042 return -EINVAL; 1042 return -EINVAL;
1043 1043
1044 if (gpu_va) {
1045 nvgpu_err(g, "gpu_va suppose to be allocated by this function.");
1046 return -EINVAL;
1047 }
1048
1044 ch_ctx = &tsg->gr_ctx; 1049 ch_ctx = &tsg->gr_ctx;
1045 pm_ctx = &ch_ctx->pm_ctx; 1050 pm_ctx = &ch_ctx->pm_ctx;
1046 1051