summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
diff options
context:
space:
mode:
authorSeema Khowala <seemaj@nvidia.com>2017-02-16 19:53:35 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2017-04-12 18:33:50 -0400
commitc3c3a3c5715d6aa38544922b76a636135429fd22 (patch)
tree4e608ad8e817229ff088cad2f2ddb3606f39b73e /drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
parent3867db86bce819901e566ac46ea5cd1ead3dad11 (diff)
gpu: nvgpu: add fifo ops for handling pbdma intr_0
This is needed to handle bit 20 (clear_faulted_error) and bit 24 (eng_reset) of t19x pbdma_intr_0 interrupt. JIRA GPUT19X-47 Change-Id: I07c603eff96344c0104579e339e5cf7f675128ef Signed-off-by: Seema Khowala <seemaj@nvidia.com> Reviewed-on: http://git-master/r/1306556 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 2f705004..af2a8cd2 100644
--- a/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
@@ -229,4 +229,5 @@ void gm20b_init_fifo(struct gpu_ops *gops)
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 gops->fifo.handle_sched_error = gk20a_fifo_handle_sched_error;
232 gops->fifo.handle_pbdma_intr_0 = gk20a_fifo_handle_pbdma_intr_0;
232} 233}