mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 09:57:08 +03:00
Revert "nvgpu: gp10b: remove EMC floor when GPU Fmin"
This reverts commit c58da17d13.
With original patch, we request 0 emc for minimum GPU
frequency, and this causes instability on Quill-B00
Hence revert this patch
Original patch : http://git-master/r/#/c/1284572/
Bug 1864117
Bug 1863013
Change-Id: I45aadba4614286f04b29a5abb7432d03d99ed6c1
Signed-off-by: Deepak Nibade <dnibade@nvidia.com>
Reviewed-on: http://git-master/r/1291512
Reviewed-by: svccoveritychecker <svccoveritychecker@nvidia.com>
GVS: Gerrit_Virtual_Submit
Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
8613119529
commit
74948b73e3
@@ -312,14 +312,7 @@ static void gp10b_tegra_postscale(struct device *pdev,
|
||||
|
||||
gk20a_dbg_fn("");
|
||||
if (profile && !gp10b_tegra_is_railgated(pdev)) {
|
||||
unsigned long emc_scale;
|
||||
|
||||
if (freq <= gp10b_freq_table[0])
|
||||
emc_scale = 0;
|
||||
else
|
||||
emc_scale = g->emc3d_ratio;
|
||||
|
||||
emc_rate = (freq * EMC_BW_RATIO * emc_scale) / 1000;
|
||||
emc_rate = (freq * EMC_BW_RATIO * g->emc3d_ratio) / 1000;
|
||||
|
||||
if (emc_rate > tegra_bwmgr_get_max_emc_rate())
|
||||
emc_rate = tegra_bwmgr_get_max_emc_rate();
|
||||
|
||||
Reference in New Issue
Block a user