Commit 1e1d6b4c authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/fb/gddr5: modify mr8 with high bits of CL/WR

Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent e7084c66
......@@ -105,5 +105,9 @@ nouveau_gddr5_calc(struct nouveau_ram *ram, bool nuts)
ram->mr[7] |= (vr & 0x01) << 8;
ram->mr[7] |= (vh & 0x01) << 7;
ram->mr[7] |= (lf & 0x01) << 3;
ram->mr[8] &= ~0x003;
ram->mr[8] |= (WR & 0x10) >> 3;
ram->mr[8] |= (CL & 0x10) >> 4;
return 0;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment