summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv100/hal_gv100.c
diff options
context:
space:
mode:
authorSeema Khowala <seemaj@nvidia.com>2018-05-18 13:33:04 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-05-18 22:55:14 -0400
commitc8b659496d973d8ee01aea4fe018a58691ab5eaf (patch)
tree31629b62d18c04bbe7092dd8c9c6cde560214bb4 /drivers/gpu/nvgpu/gv100/hal_gv100.c
parent25e727d997bf21835e3cc396a407b95f1ec0acb2 (diff)
gpu: nvgpu: gv100: do not init idle filters
gv100 cannot use idle filter values defined for gp106 since values are different. Also gv100 cannot use gv11b idle filter values since prod values are different between gv100 and gv11b. Finally since PROD values match with POR INIT values, there is no need to init idle filters for gv100. Bug 2115080 Change-Id: I9e7cfbde364d993ae04d80af14650739f32345cc Signed-off-by: Seema Khowala <seemaj@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1724060 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gv100/hal_gv100.c')
-rw-r--r--drivers/gpu/nvgpu/gv100/hal_gv100.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gv100/hal_gv100.c b/drivers/gpu/nvgpu/gv100/hal_gv100.c
index 595dbdaf..28bad8d6 100644
--- a/drivers/gpu/nvgpu/gv100/hal_gv100.c
+++ b/drivers/gpu/nvgpu/gv100/hal_gv100.c
@@ -664,7 +664,8 @@ static const struct gpu_ops gv100_ops = {
664#ifdef CONFIG_DEBUG_FS 664#ifdef CONFIG_DEBUG_FS
665 .therm_debugfs_init = gp106_therm_debugfs_init, 665 .therm_debugfs_init = gp106_therm_debugfs_init,
666#endif /* CONFIG_DEBUG_FS */ 666#endif /* CONFIG_DEBUG_FS */
667 .elcg_init_idle_filters = gp106_elcg_init_idle_filters, 667 /* PROD values match with H/W INIT values */
668 .elcg_init_idle_filters = NULL,
668 .get_internal_sensor_curr_temp = 669 .get_internal_sensor_curr_temp =
669 gp106_get_internal_sensor_curr_temp, 670 gp106_get_internal_sensor_curr_temp,
670 }, 671 },