summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp106/hal_gp106.c
diff options
context:
space:
mode:
authorDeepak Nibade <dnibade@nvidia.com>2018-04-23 07:18:33 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-05-16 06:10:37 -0400
commit0301cc01f6cbfb752290bc63a2ed4eb19129c7c1 (patch)
treefafe6562b8251c88f130f6368b9a41eb622669b9 /drivers/gpu/nvgpu/gp106/hal_gp106.c
parent4ff87c7d35f34e01e138cbedb143a37ff32a8926 (diff)
gpu: nvgpu: add HAL to insert semaphore commands
Add below new HALs gops.fifo.add_sema_cmd() to insert HOST semaphore acquire/release methods gops.fifo.get_sema_wait_cmd_size() to get size of acquire command buffer gops.fifo.get_sema_incr_cmd_size() to get size of release command buffer Separate out new API gk20a_fifo_add_sema_cmd() to implement semaphore acquire/ release sequence and set it to gops.fifo.add_sema_cmd() Add gk20a_fifo_get_sema_wait_cmd_size() and gk20a_fifo_get_sema_incr_cmd_size() to return respective command buffer sizes Jira NVGPUT-16 Change-Id: Ia81a50921a6a56ebc237f2f90b137268aaa2d749 Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1704490 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gp106/hal_gp106.c')
-rw-r--r--drivers/gpu/nvgpu/gp106/hal_gp106.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gp106/hal_gp106.c b/drivers/gpu/nvgpu/gp106/hal_gp106.c
index 6d3154e3..4111ac7d 100644
--- a/drivers/gpu/nvgpu/gp106/hal_gp106.c
+++ b/drivers/gpu/nvgpu/gp106/hal_gp106.c
@@ -531,6 +531,9 @@ static const struct gpu_ops gp106_ops = {
531 .device_info_fault_id = top_device_info_data_fault_id_enum_v, 531 .device_info_fault_id = top_device_info_data_fault_id_enum_v,
532 .runlist_hw_submit = gk20a_fifo_runlist_hw_submit, 532 .runlist_hw_submit = gk20a_fifo_runlist_hw_submit,
533 .runlist_wait_pending = gk20a_fifo_runlist_wait_pending, 533 .runlist_wait_pending = gk20a_fifo_runlist_wait_pending,
534 .get_sema_wait_cmd_size = gk20a_fifo_get_sema_wait_cmd_size,
535 .get_sema_incr_cmd_size = gk20a_fifo_get_sema_incr_cmd_size,
536 .add_sema_cmd = gk20a_fifo_add_sema_cmd,
534 }, 537 },
535 .gr_ctx = { 538 .gr_ctx = {
536 .get_netlist_name = gr_gp106_get_netlist_name, 539 .get_netlist_name = gr_gp106_get_netlist_name,