summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv100
diff options
context:
space:
mode:
authorDeepak Nibade <dnibade@nvidia.com>2018-08-08 05:23:08 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-08-10 11:15:46 -0400
commit84c0ab81ab28b349c5477b0512b8bbfdb24edc3d (patch)
tree5dff4816e5be641d7293e1c4dff1bb5d39653059 /drivers/gpu/nvgpu/gv100
parent542e6a0ab4fe3839633a3a86c80b394fd046ac79 (diff)
gpu: nvgpu: move exec_reg_ops() to regops HAL
We right now define HAL exec_reg_ops() under gops.dbg_session_ops operations But we have separate gops.regops operations for all the regops and this would be logically correct place for exec_reg_ops() Move exec_reg_ops() from gops.dbg_session_ops to gops.regops Also rename it to exec_regops() Jira NVGPU-620 Change-Id: If4f70639ffbc892c605f7540a83bce12ed821b52 Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1794999 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gv100')
-rw-r--r--drivers/gpu/nvgpu/gv100/hal_gv100.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gv100/hal_gv100.c b/drivers/gpu/nvgpu/gv100/hal_gv100.c
index 0f7fb370..f6c3ec67 100644
--- a/drivers/gpu/nvgpu/gv100/hal_gv100.c
+++ b/drivers/gpu/nvgpu/gv100/hal_gv100.c
@@ -763,6 +763,7 @@ static const struct gpu_ops gv100_ops = {
763 .get_current_pstate = nvgpu_clk_arb_get_current_pstate, 763 .get_current_pstate = nvgpu_clk_arb_get_current_pstate,
764 }, 764 },
765 .regops = { 765 .regops = {
766 .exec_regops = exec_regops_gk20a,
766 .get_global_whitelist_ranges = 767 .get_global_whitelist_ranges =
767 gv100_get_global_whitelist_ranges, 768 gv100_get_global_whitelist_ranges,
768 .get_global_whitelist_ranges_count = 769 .get_global_whitelist_ranges_count =
@@ -815,7 +816,6 @@ static const struct gpu_ops gv100_ops = {
815 .post_events = gk20a_dbg_gpu_post_events, 816 .post_events = gk20a_dbg_gpu_post_events,
816 }, 817 },
817 .dbg_session_ops = { 818 .dbg_session_ops = {
818 .exec_reg_ops = exec_regops_gk20a,
819 .dbg_set_powergate = dbg_set_powergate, 819 .dbg_set_powergate = dbg_set_powergate,
820 .check_and_set_global_reservation = 820 .check_and_set_global_reservation =
821 nvgpu_check_and_set_global_reservation, 821 nvgpu_check_and_set_global_reservation,