summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/vgpu/gv11b
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/vgpu/gv11b
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/vgpu/gv11b')
-rw-r--r--drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c b/drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c
index f38585f4..b91691e2 100644
--- a/drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c
+++ b/drivers/gpu/nvgpu/vgpu/gv11b/vgpu_hal_gv11b.c
@@ -535,6 +535,7 @@ static const struct gpu_ops vgpu_gv11b_ops = {
535 .is_pmu_supported = gv11b_is_pmu_supported, 535 .is_pmu_supported = gv11b_is_pmu_supported,
536 }, 536 },
537 .regops = { 537 .regops = {
538 .exec_regops = vgpu_exec_regops,
538 .get_global_whitelist_ranges = 539 .get_global_whitelist_ranges =
539 gv11b_get_global_whitelist_ranges, 540 gv11b_get_global_whitelist_ranges,
540 .get_global_whitelist_ranges_count = 541 .get_global_whitelist_ranges_count =
@@ -584,7 +585,6 @@ static const struct gpu_ops vgpu_gv11b_ops = {
584 .post_events = gk20a_dbg_gpu_post_events, 585 .post_events = gk20a_dbg_gpu_post_events,
585 }, 586 },
586 .dbg_session_ops = { 587 .dbg_session_ops = {
587 .exec_reg_ops = vgpu_exec_regops,
588 .dbg_set_powergate = vgpu_dbg_set_powergate, 588 .dbg_set_powergate = vgpu_dbg_set_powergate,
589 .check_and_set_global_reservation = 589 .check_and_set_global_reservation =
590 vgpu_check_and_set_global_reservation, 590 vgpu_check_and_set_global_reservation,