summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
diff options
context:
space:
mode:
authorseshendra Gadagottu <sgadagottu@nvidia.com>2016-08-31 21:37:01 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2016-09-21 18:13:58 -0400
commitf937b42672c8752c322a946e8e1fb631acc5229a (patch)
treef19d5d827b55519cbc7233cf56c84f4756d76c1f /drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
parent7303dd33ef69f0a533ebce31caf658e9c35a7091 (diff)
gpu: nvgpu: create chip specific runlist entry
To handle chip specific runlist entry size and structure, add and implement relevant functional pointers. Bug 1735760 Change-Id: I01f3ea78fb21d9fe30c82ba51ef24d7d95ebf90a Signed-off-by: seshendra Gadagottu <sgadagottu@nvidia.com> Reviewed-on: http://git-master/r/1214473 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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c b/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
index 26306efc..b5b9c52b 100644
--- a/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/fifo_gm20b.c
@@ -156,4 +156,7 @@ void gm20b_init_fifo(struct gpu_ops *gops)
156 gops->fifo.device_info_data_parse = gm20b_device_info_data_parse; 156 gops->fifo.device_info_data_parse = gm20b_device_info_data_parse;
157 gops->fifo.eng_runlist_base_size = fifo_eng_runlist_base__size_1_v; 157 gops->fifo.eng_runlist_base_size = fifo_eng_runlist_base__size_1_v;
158 gops->fifo.init_engine_info = gk20a_fifo_init_engine_info; 158 gops->fifo.init_engine_info = gk20a_fifo_init_engine_info;
159 gops->fifo.runlist_entry_size = ram_rl_entry_size_v;
160 gops->fifo.get_tsg_runlist_entry = gk20a_get_tsg_runlist_entry;
161 gops->fifo.get_ch_runlist_entry = gk20a_get_ch_runlist_entry;
159} 162}