提交 bfb61f43 编写于 作者: B Ben Skeggs

drm/nva3/pm: allow use of divisor 16

Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
上级 047d2df5
......@@ -128,7 +128,7 @@ nva3_pm_clock_pre(struct drm_device *dev, struct nouveau_pm_level *perflvl,
/* If target clock is within [-2, 3) MHz of a divisor, we'll
* use that instead of calculating MNP values
*/
pll->new_div = ((limits.refclk * 2) / (khz - 2999)) & 0x0f;
pll->new_div = min((limits.refclk * 2) / (khz - 2999), 16);
if (pll->new_div) {
diff = khz - ((limits.refclk * 2) / pll->new_div);
if (diff < -2000 || diff >= 3000)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册