summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/vgpu/vgpu.c
diff options
context:
space:
mode:
authorRichard Zhao <rizhao@nvidia.com>2018-05-31 19:08:05 -0400
committerTejal Kudav <tkudav@nvidia.com>2018-06-14 09:44:06 -0400
commitc5cf398b2aac7c725492033d02b1d9e778acd592 (patch)
tree7d17b9b07e02eba6ab205914738056065bd3bfb8 /drivers/gpu/nvgpu/vgpu/vgpu.c
parent2318e66a59e4e25240513fe7d267fc63b7353a15 (diff)
gpu: nvgpu: vgpu: clean up nonstall isrs
It has moved to use TEGRA_VGPU_EVENT_SEMAPHORE_WAKEUP, removing legacy isrs. Jira EVLR-2696 Change-Id: Ie977bba59c0af8589989d872150c3f9b2080854a Signed-off-by: Richard Zhao <rizhao@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1736399 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Thomas Fleury <tfleury@nvidia.com> Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/vgpu/vgpu.c')
-rw-r--r--drivers/gpu/nvgpu/vgpu/vgpu.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/vgpu.c b/drivers/gpu/nvgpu/vgpu/vgpu.c
index 17e80cd7..2bdef427 100644
--- a/drivers/gpu/nvgpu/vgpu/vgpu.c
+++ b/drivers/gpu/nvgpu/vgpu/vgpu.c
@@ -164,17 +164,8 @@ int vgpu_intr_thread(void *dev_id)
164 case TEGRA_VGPU_EVENT_INTR: 164 case TEGRA_VGPU_EVENT_INTR:
165 if (msg->unit == TEGRA_VGPU_INTR_GR) 165 if (msg->unit == TEGRA_VGPU_INTR_GR)
166 vgpu_gr_isr(g, &msg->info.gr_intr); 166 vgpu_gr_isr(g, &msg->info.gr_intr);
167 else if (msg->unit == TEGRA_VGPU_NONSTALL_INTR_GR)
168 vgpu_gr_nonstall_isr(g,
169 &msg->info.gr_nonstall_intr);
170 else if (msg->unit == TEGRA_VGPU_INTR_FIFO) 167 else if (msg->unit == TEGRA_VGPU_INTR_FIFO)
171 vgpu_fifo_isr(g, &msg->info.fifo_intr); 168 vgpu_fifo_isr(g, &msg->info.fifo_intr);
172 else if (msg->unit == TEGRA_VGPU_NONSTALL_INTR_FIFO)
173 vgpu_fifo_nonstall_isr(g,
174 &msg->info.fifo_nonstall_intr);
175 else if (msg->unit == TEGRA_VGPU_NONSTALL_INTR_CE2)
176 vgpu_ce2_nonstall_isr(g,
177 &msg->info.ce2_nonstall_intr);
178 break; 169 break;
179#ifdef CONFIG_GK20A_CTXSW_TRACE 170#ifdef CONFIG_GK20A_CTXSW_TRACE
180 case TEGRA_VGPU_EVENT_FECS_TRACE: 171 case TEGRA_VGPU_EVENT_FECS_TRACE: