v->UrgBurstFactorLumaPre,
                                        v->UrgBurstFactorChromaPre,
                                        v->UrgBurstFactorCursorPre,
+                                       v->PrefetchBandwidth,
+                                       v->VRatio,
+                                       v->MaxVRatioPre,
 
                                        /* output */
                                        &MaxTotalRDBandwidth,
                                        v->dummy_vars.DISPCLKDPPCLKDCFCLKDeepSleepPrefetchParametersWatermarksAndPerformanceCalculation.dummy_unit_vector,
                                        v->dummy_vars.DISPCLKDPPCLKDCFCLKDeepSleepPrefetchParametersWatermarksAndPerformanceCalculation.dummy_unit_vector,
                                        v->dummy_vars.DISPCLKDPPCLKDCFCLKDeepSleepPrefetchParametersWatermarksAndPerformanceCalculation.dummy_unit_vector,
+                                       v->PrefetchBandwidth,
+                                       v->VRatio,
+                                       v->MaxVRatioPre,
 
                                        /* output */
                                        &v->dummy_vars.DISPCLKDPPCLKDCFCLKDeepSleepPrefetchParametersWatermarksAndPerformanceCalculation.dummy_single[0],
                                                        mode_lib->vba.UrgentBurstFactorLumaPre,
                                                        mode_lib->vba.UrgentBurstFactorChromaPre,
                                                        mode_lib->vba.UrgentBurstFactorCursorPre,
+                                                       v->PrefetchBW,
+                                                       v->VRatio,
+                                                       v->MaxVRatioPre,
 
                                                        /* output */
                                                        &v->dummy_vars.dml32_ModeSupportAndSystemConfigurationFull.dummy_single[0],   // Single  *PrefetchBandwidth
 
                double UrgentBurstFactorLumaPre[],
                double UrgentBurstFactorChromaPre[],
                double UrgentBurstFactorCursorPre[],
+               double PrefetchBW[],
+               double VRatio[],
+               double MaxVRatioPre,
 
                /* output */
-               double  *PrefetchBandwidth,
+               double  *MaxPrefetchBandwidth,
                double  *FractionOfUrgentBandwidth,
                bool *PrefetchBandwidthSupport)
 {
        double ActiveBandwidthPerSurface;
        bool NotEnoughUrgentLatencyHiding = false;
        double TotalActiveBandwidth = 0;
+       double TotalPrefetchBandwidth = 0;
+
        for (k = 0; k < NumberOfActiveSurfaces; ++k) {
                if (NotUrgentLatencyHiding[k]) {
                        NotEnoughUrgentLatencyHiding = true;
                }
        }
 
-       *PrefetchBandwidth = 0;
+       *MaxPrefetchBandwidth = 0;
        for (k = 0; k < NumberOfActiveSurfaces; ++k) {
                ActiveBandwidthPerSurface = ReadBandwidthLuma[k] * UrgentBurstFactorLuma[k] + ReadBandwidthChroma[k] * UrgentBurstFactorChroma[k] + cursor_bw[k] * UrgentBurstFactorCursor[k] + NumberOfDPP[k] * (meta_row_bandwidth[k] + dpte_row_bandwidth[k]);
 
                TotalActiveBandwidth += ActiveBandwidthPerSurface;
 
-               *PrefetchBandwidth = *PrefetchBandwidth + dml_max3(NumberOfDPP[k] * prefetch_vmrow_bw[k],
+               TotalPrefetchBandwidth = TotalPrefetchBandwidth + PrefetchBW[k] * VRatio[k];
+
+               *MaxPrefetchBandwidth = *MaxPrefetchBandwidth + dml_max3(NumberOfDPP[k] * prefetch_vmrow_bw[k],
                                ActiveBandwidthPerSurface,
                                NumberOfDPP[k] * (PrefetchBandwidthLuma[k] * UrgentBurstFactorLumaPre[k] + PrefetchBandwidthChroma[k] * UrgentBurstFactorChromaPre[k]) + cursor_bw_pre[k] * UrgentBurstFactorCursorPre[k]);
        }
 
-       *PrefetchBandwidthSupport = (*PrefetchBandwidth <= ReturnBW) &&  (*PrefetchBandwidth <= TotalActiveBandwidth * __DML_MAX_BW_RATIO_PRE__) && !NotEnoughUrgentLatencyHiding;
-       *FractionOfUrgentBandwidth = *PrefetchBandwidth / ReturnBW;
+       if (MaxVRatioPre == __DML_MAX_VRATIO_PRE__)
+               *PrefetchBandwidthSupport = (*MaxPrefetchBandwidth <= ReturnBW) && (TotalPrefetchBandwidth <= TotalActiveBandwidth * __DML_MAX_BW_RATIO_PRE__) && !NotEnoughUrgentLatencyHiding;
+       else
+               *PrefetchBandwidthSupport = (*MaxPrefetchBandwidth <= ReturnBW) && !NotEnoughUrgentLatencyHiding;
+
+       *FractionOfUrgentBandwidth = *MaxPrefetchBandwidth / ReturnBW;
 }
 
 double dml32_CalculateBandwidthAvailableForImmediateFlip(unsigned int NumberOfActiveSurfaces,
 
                double UrgentBurstFactorLumaPre[],
                double UrgentBurstFactorChromaPre[],
                double UrgentBurstFactorCursorPre[],
+               double PrefetchBW[],
+               double VRatio[],
+               double MaxVRatioPre,
 
                /* output */
-               double  *PrefetchBandwidth,
+               double  *MaxPrefetchBandwidth,
                double  *FractionOfUrgentBandwidth,
                bool *PrefetchBandwidthSupport);