summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/fifo_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/fifo_gm20b.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c b/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
index 7e580136..86d049cf 100644
--- a/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
@@ -102,5 +102,14 @@ static void gm20b_fifo_trigger_mmu_fault(struct gk20a *g,
102void gm20b_init_fifo(struct gpu_ops *gops) 102void gm20b_init_fifo(struct gpu_ops *gops)
103{ 103{
104 gops->fifo.bind_channel = channel_gm20b_bind; 104 gops->fifo.bind_channel = channel_gm20b_bind;
105 gops->fifo.unbind_channel = channel_gk20a_unbind;
106 gops->fifo.disable_channel = channel_gk20a_disable;
107 gops->fifo.alloc_inst = channel_gk20a_alloc_inst;
108 gops->fifo.free_inst = channel_gk20a_free_inst;
109 gops->fifo.setup_ramfc = channel_gk20a_setup_ramfc;
110
111 gops->fifo.preempt_channel = gk20a_fifo_preempt_channel;
112 gops->fifo.update_runlist = gk20a_fifo_update_runlist;
105 gops->fifo.trigger_mmu_fault = gm20b_fifo_trigger_mmu_fault; 113 gops->fifo.trigger_mmu_fault = gm20b_fifo_trigger_mmu_fault;
114 gops->fifo.wait_engine_idle = gk20a_fifo_wait_engine_idle;
106} 115}