提交 d07a97e9 编写于 作者: K Karol Herbst 提交者: Ben Skeggs

drm/nouveau/volt/gk104: round up in gk104_volt_set

We always want a equal or higher voltage than the requested ones, otherwise
nouveau undervolts.
Signed-off-by: NKarol Herbst <nouveau@karolherbst.de>
Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
上级 e976278a
...@@ -56,7 +56,7 @@ gk104_volt_set(struct nvkm_volt *base, u32 uv) ...@@ -56,7 +56,7 @@ gk104_volt_set(struct nvkm_volt *base, u32 uv)
/* the blob uses this crystal frequency, let's use it too. */ /* the blob uses this crystal frequency, let's use it too. */
div = 27648000 / bios->pwm_freq; div = 27648000 / bios->pwm_freq;
duty = (uv - bios->base) * div / bios->pwm_range; duty = DIV_ROUND_UP((uv - bios->base) * div, bios->pwm_range);
nvkm_wr32(device, 0x20340, div); nvkm_wr32(device, 0x20340, div);
nvkm_wr32(device, 0x20344, 0x80000000 | duty); nvkm_wr32(device, 0x20344, 0x80000000 | duty);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册