summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
diff options
context:
space:
mode:
authorSeema Khowala <seemaj@nvidia.com>2017-03-09 01:18:36 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2017-04-12 18:33:44 -0400
commit3867db86bce819901e566ac46ea5cd1ead3dad11 (patch)
tree0ed3711ceabc0f9a5971507151ac446545ccfc90 /drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
parent4c5feb1f72bb078c9002b91f15dd5474bb774b58 (diff)
gpu: nvgpu: fifo ops for handling sched error and ctxsw timeout
For t19x, ctxsw timeout is not handled as part of fifo sched error interrupt. A new fifo interrupt, ctxsw_timeout is added. Bug 1856152 JIRA GPUT19X-74 Change-Id: I5a2ed15d967e5b14fbbb51b074080f1562bca84c Signed-off-by: Seema Khowala <seemaj@nvidia.com> Reviewed-on: http://git-master/r/1317599 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/fifo_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/fifo_gm20b.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c b/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
index 22ff3629..2f705004 100644
--- a/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
@@ -228,4 +228,5 @@ void gm20b_init_fifo(struct gpu_ops *gops)
228 gops->fifo.init_pbdma_intr_descs = gm20b_fifo_init_pbdma_intr_descs; 228 gops->fifo.init_pbdma_intr_descs = gm20b_fifo_init_pbdma_intr_descs;
229 gops->fifo.reset_enable_hw = gk20a_init_fifo_reset_enable_hw; 229 gops->fifo.reset_enable_hw = gk20a_init_fifo_reset_enable_hw;
230 gops->fifo.teardown_ch_tsg = gk20a_fifo_teardown_ch_tsg; 230 gops->fifo.teardown_ch_tsg = gk20a_fifo_teardown_ch_tsg;
231 gops->fifo.handle_sched_error = gk20a_fifo_handle_sched_error;
231} 232}