summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv11b
diff options
context:
space:
mode:
authorVaibhav Kachore <vkachore@nvidia.com>2018-09-11 05:47:07 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-09-26 02:04:16 -0400
commit2ab564937e5e4607e1734690101d07b66e5981d2 (patch)
tree03b51736c8d6754b62e7bf23cac83068e1b31956 /drivers/gpu/nvgpu/gv11b
parent3f83528d769169fdaf25912f425226eaa07427f0 (diff)
gpu: nvgpu: enable HWPM Mode-E context switch
- This patch enables HWPM Mode-E context switch for gv11b. - Write new pm mode to context buffer header. Ucode use this mode to enable mode-e context switch. This is Mode-B context switch of PMs with Mode-E streamout on one context. If this mode is set, Ucode makes sure that Mode-E pipe (perfmons, routers, pma) is idle before it context switches PMs. - This allows us to collect counters in a secure way (i.e. on context basis) with stream out. - For Mode-E ctxsw it is required that engine_sel is set to 0xFFFFFFFF. - Default 0 is a valid signal and causes problems. Bug 2106999 Change-Id: Idc6380116a71ffd7ae348ceec68cb395b2eca5f6 Signed-off-by: Vaibhav Kachore <vkachore@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1818070 Reviewed-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-by: svc-misra-checker <svc-misra-checker@nvidia.com> Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Vijayakumar Subbu <vsubbu@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gv11b')
-rw-r--r--drivers/gpu/nvgpu/gv11b/hal_gv11b.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/hal_gv11b.c b/drivers/gpu/nvgpu/gv11b/hal_gv11b.c
index 665e2ed1..986d3b82 100644
--- a/drivers/gpu/nvgpu/gv11b/hal_gv11b.c
+++ b/drivers/gpu/nvgpu/gv11b/hal_gv11b.c
@@ -328,7 +328,12 @@ static const struct gpu_ops gv11b_ops = {
328 .enable_exceptions = gr_gv11b_enable_exceptions, 328 .enable_exceptions = gr_gv11b_enable_exceptions,
329 .get_lrf_tex_ltc_dram_override = get_ecc_override_val, 329 .get_lrf_tex_ltc_dram_override = get_ecc_override_val,
330 .update_smpc_ctxsw_mode = gr_gk20a_update_smpc_ctxsw_mode, 330 .update_smpc_ctxsw_mode = gr_gk20a_update_smpc_ctxsw_mode,
331 .get_hw_accessor_stream_out_mode =
332 gr_gv100_get_hw_accessor_stream_out_mode,
333 .get_num_hwpm_perfmon = gr_gv100_get_num_hwpm_perfmon,
334 .set_pmm_register = gr_gv100_set_pmm_register,
331 .update_hwpm_ctxsw_mode = gr_gk20a_update_hwpm_ctxsw_mode, 335 .update_hwpm_ctxsw_mode = gr_gk20a_update_hwpm_ctxsw_mode,
336 .init_hwpm_pmm_register = gr_gv100_init_hwpm_pmm_register,
332 .record_sm_error_state = gv11b_gr_record_sm_error_state, 337 .record_sm_error_state = gv11b_gr_record_sm_error_state,
333 .clear_sm_error_state = gm20b_gr_clear_sm_error_state, 338 .clear_sm_error_state = gm20b_gr_clear_sm_error_state,
334 .suspend_contexts = gr_gp10b_suspend_contexts, 339 .suspend_contexts = gr_gp10b_suspend_contexts,